]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBitmap
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "statbmp.h"
16 #include "wx/statbmp.h"
17 #include "wx/dcclient.h"
19 #if !USE_SHARED_LIBRARY
20 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap
, wxControl
)
27 BEGIN_EVENT_TABLE(wxStaticBitmap
, wxControl
)
28 EVT_PAINT(wxStaticBitmap::OnPaint
)
31 bool wxStaticBitmap::Create(wxWindow
*parent
, wxWindowID id
,
32 const wxBitmap
& bitmap
,
41 m_backgroundColour
= parent
->GetBackgroundColour() ;
42 m_foregroundColour
= parent
->GetForegroundColour() ;
44 m_messageBitmap
= bitmap
;
46 m_windowId
= (int)NewControlId();
50 m_windowStyle
= style
;
52 bool ret
= wxControl::Create( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
);
53 SetSizeOrDefault( size
) ;
58 void wxStaticBitmap::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
60 wxControl::SetSize( x
, y
, width
, height
, sizeFlags
) ;
63 void wxStaticBitmap::SetBitmap(const wxBitmap
& bitmap
)
65 m_messageBitmap
= bitmap
;
70 void wxStaticBitmap::OnPaint( wxPaintEvent
&event
)
75 dc
.DrawBitmap( m_messageBitmap
, 0 , 0 , TRUE
) ;
78 wxSize
wxStaticBitmap::DoGetBestSize() const
80 if ( m_messageBitmap
.Ok() )
81 return wxSize(m_messageBitmap
.GetWidth(), m_messageBitmap
.GetHeight());
83 return wxSize(16, 16); // completely arbitrary