X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9576ca53db96b462ed4c0b4bdf47d64c40203e4..15678bec37c6e3cb8a67a8b041579af595d4ccf3:/src/mac/statbmp.cpp diff --git a/src/mac/statbmp.cpp b/src/mac/statbmp.cpp index a67c558465..35e918d469 100644 --- a/src/mac/statbmp.cpp +++ b/src/mac/statbmp.cpp @@ -10,10 +10,13 @@ ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ -#pragma implementation "statbmp.h" + #pragma implementation "statbmp.h" #endif +#include "wx/defs.h" + #include "wx/statbmp.h" +#include "wx/dcclient.h" #if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl) @@ -23,17 +26,24 @@ IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl) * wxStaticBitmap */ +BEGIN_EVENT_TABLE(wxStaticBitmap, wxStaticBitmapBase) + EVT_PAINT(wxStaticBitmap::OnPaint) +END_EVENT_TABLE() + bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap, const wxPoint& pos, - const wxSize& size, + const wxSize& s, long style, const wxString& name) { - m_messageBitmap = bitmap; SetName(name); - if (parent) parent->AddChild(this); + wxSize size = s ; + + m_backgroundColour = parent->GetBackgroundColour() ; + m_foregroundColour = parent->GetForegroundColour() ; + m_bitmap = bitmap; if ( id == -1 ) m_windowId = (int)NewControlId(); else @@ -41,19 +51,37 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id, m_windowStyle = style; - // TODO: create static bitmap control - return FALSE; + bool ret = wxControl::Create( parent, id, pos, size, style , wxDefaultValidator , name ); + SetBestSize( size ) ; + + return ret; } void wxStaticBitmap::SetSize(int x, int y, int width, int height, int sizeFlags) { - // TODO + wxControl::SetSize( x , y , width , height , sizeFlags ) ; } void wxStaticBitmap::SetBitmap(const wxBitmap& bitmap) { - m_messageBitmap = bitmap; + m_bitmap = bitmap; + Refresh() ; + SetBestSize(wxSize(bitmap.GetWidth(), bitmap.GetHeight())); +} - // TODO: redraw bitmap +void wxStaticBitmap::OnPaint( wxPaintEvent &event ) +{ + wxPaintDC dc(this); + PrepareDC(dc); + + dc.DrawBitmap( m_bitmap , 0 , 0 , TRUE ) ; +} + +wxSize wxStaticBitmap::DoGetBestSize() const +{ + if ( m_bitmap.Ok() ) + return wxSize(m_bitmap.GetWidth(), m_bitmap.GetHeight()); + else + return wxSize(16, 16); // completely arbitrary }