]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/statbmp.cpp
added missing includes after wxUniv merge
[wxWidgets.git] / src / mac / carbon / statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statbmp.cpp
3 // Purpose: wxStaticBitmap
4 // Author: AUTHOR
5 // Modified by:
6 // Created: ??/??/98
7 // RCS-ID: $Id$
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "statbmp.h"
14 #endif
15
16 #include "wx/defs.h"
17
18 #include "wx/statbmp.h"
19 #include "wx/dcclient.h"
20
21 #if !USE_SHARED_LIBRARY
22 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
23 #endif
24
25 /*
26 * wxStaticBitmap
27 */
28
29 BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
30 EVT_PAINT(wxStaticBitmap::OnPaint)
31 END_EVENT_TABLE()
32
33 bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id,
34 const wxBitmap& bitmap,
35 const wxPoint& pos,
36 const wxSize& s,
37 long style,
38 const wxString& name)
39 {
40 SetName(name);
41 wxSize size = s ;
42
43 m_backgroundColour = parent->GetBackgroundColour() ;
44 m_foregroundColour = parent->GetForegroundColour() ;
45
46 m_messageBitmap = bitmap;
47 if ( id == -1 )
48 m_windowId = (int)NewControlId();
49 else
50 m_windowId = id;
51
52 m_windowStyle = style;
53
54 bool ret = wxControl::Create( parent, id, pos, size, style , wxDefaultValidator , name );
55 SetSizeOrDefault( size ) ;
56
57 return ret;
58 }
59
60 void wxStaticBitmap::SetSize(int x, int y, int width, int height, int sizeFlags)
61 {
62 wxControl::SetSize( x , y , width , height , sizeFlags ) ;
63 }
64
65 void wxStaticBitmap::SetBitmap(const wxBitmap& bitmap)
66 {
67 m_messageBitmap = bitmap;
68 Refresh() ;
69 SetSizeOrDefault();
70 }
71
72 void wxStaticBitmap::OnPaint( wxPaintEvent &event )
73 {
74 wxPaintDC dc(this);
75 PrepareDC(dc);
76
77 dc.DrawBitmap( m_messageBitmap , 0 , 0 , TRUE ) ;
78 }
79
80 wxSize wxStaticBitmap::DoGetBestSize() const
81 {
82 if ( m_messageBitmap.Ok() )
83 return wxSize(m_messageBitmap.GetWidth(), m_messageBitmap.GetHeight());
84 else
85 return wxSize(16, 16); // completely arbitrary
86 }
87