]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/statbmp.cpp
removed USE_SHARED_LIBRARIES
[wxWidgets.git] / src / mac / carbon / statbmp.cpp
CommitLineData
e9576ca5
SC
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/statbmp.h"
17
18#if !USE_SHARED_LIBRARY
19IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
20#endif
21
22/*
23 * wxStaticBitmap
24 */
25
519cb848
SC
26BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
27 EVT_PAINT(wxStaticBitmap::OnPaint)
28END_EVENT_TABLE()
29
e9576ca5
SC
30bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID id,
31 const wxBitmap& bitmap,
32 const wxPoint& pos,
33 const wxSize& size,
34 long style,
35 const wxString& name)
36{
e9576ca5 37 SetName(name);
7c551d95
SC
38
39 m_backgroundColour = parent->GetBackgroundColour() ;
40 m_foregroundColour = parent->GetForegroundColour() ;
41
42 m_messageBitmap = bitmap;
e9576ca5
SC
43
44 if ( id == -1 )
45 m_windowId = (int)NewControlId();
46 else
47 m_windowId = id;
48
49 m_windowStyle = style;
50
519cb848 51 bool ret = wxControl::Create( parent, id, pos, size, style , name );
7c551d95
SC
52
53 SetSizeOrDefault() ;
54
519cb848 55 return ret;
e9576ca5
SC
56}
57
58void wxStaticBitmap::SetSize(int x, int y, int width, int height, int sizeFlags)
59{
519cb848 60 wxControl::SetSize( x , y , width , height , sizeFlags ) ;
e9576ca5
SC
61}
62
63void wxStaticBitmap::SetBitmap(const wxBitmap& bitmap)
64{
65 m_messageBitmap = bitmap;
7c551d95 66 SetSizeOrDefault();
519cb848
SC
67}
68void wxStaticBitmap::OnPaint( wxPaintEvent &event )
69{
70 wxPaintDC dc(this);
71 PrepareDC(dc);
7c551d95
SC
72 dc.SetPalette( *m_messageBitmap.GetPalette() ) ;
73 dc.DrawBitmap( m_messageBitmap , 0 , 0 ) ;
74}
75
76wxSize wxStaticBitmap::DoGetBestSize() const
77{
78 if ( m_messageBitmap.Ok() )
79 return wxSize(m_messageBitmap.GetWidth(), m_messageBitmap.GetHeight());
80 else
81 return wxSize(16, 16); // completely arbitrary
e9576ca5
SC
82}
83