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