]>
Commit | Line | Data |
---|---|---|
1e6feb95 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/bmpbuttn.h |
1e6feb95 VZ |
3 | // Purpose: wxBitmapButton class interface |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 25.08.00 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2000 Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
1e6feb95 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_BMPBUTTON_H_BASE_ |
13 | #define _WX_BMPBUTTON_H_BASE_ | |
c801d85f | 14 | |
997176a3 VZ |
15 | #include "wx/defs.h" |
16 | ||
1e6feb95 VZ |
17 | #if wxUSE_BMPBUTTON |
18 | ||
1e6feb95 VZ |
19 | #include "wx/button.h" |
20 | ||
b38dc31f | 21 | // FIXME: right now only wxMSW, wxGTK and wxOSX implement bitmap support in wxButton |
a6fd73d3 VZ |
22 | // itself, this shouldn't be used for the other platforms neither |
23 | // when all of them do it | |
b38dc31f | 24 | #if (defined(__WXMSW__) || defined(__WXGTK20__) || defined(__WXOSX__)) && !defined(__WXUNIVERSAL__) |
a6fd73d3 VZ |
25 | #define wxHAS_BUTTON_BITMAP |
26 | #endif | |
1e6feb95 VZ |
27 | |
28 | // ---------------------------------------------------------------------------- | |
29 | // wxBitmapButton: a button which shows bitmaps instead of the usual string. | |
30 | // It has different bitmaps for different states (focused/disabled/pressed) | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
53a2db12 | 33 | class WXDLLIMPEXP_CORE wxBitmapButtonBase : public wxButton |
1e6feb95 VZ |
34 | { |
35 | public: | |
6463b9f5 | 36 | wxBitmapButtonBase() |
6b5a2b6f | 37 | { |
a6fd73d3 | 38 | #ifndef wxHAS_BUTTON_BITMAP |
6b5a2b6f VZ |
39 | m_marginX = |
40 | m_marginY = 0; | |
a6fd73d3 | 41 | #endif // wxHAS_BUTTON_BITMAP |
6b5a2b6f | 42 | } |
1e6feb95 | 43 | |
8e4c2912 VZ |
44 | bool Create(wxWindow *parent, |
45 | wxWindowID winid, | |
8e4c2912 VZ |
46 | const wxPoint& pos, |
47 | const wxSize& size, | |
48 | long style, | |
49 | const wxValidator& validator, | |
50 | const wxString& name) | |
51 | { | |
52 | // We use wxBU_NOTEXT to let the base class Create() know that we are | |
53 | // not going to show the label: this is a hack needed for wxGTK where | |
54 | // we can show both label and bitmap only with GTK 2.6+ but we always | |
55 | // can show just one of them and this style allows us to choose which | |
56 | // one we need. | |
57 | // | |
58 | // And we also use wxBU_EXACTFIT to avoid being resized up to the | |
59 | // standard button size as this doesn't make sense for bitmap buttons | |
60 | // which are not standard anyhow and should fit their bitmap size. | |
78eecde0 VZ |
61 | return wxButton::Create(parent, winid, "", |
62 | pos, size, | |
8e4c2912 VZ |
63 | style | wxBU_NOTEXT | wxBU_EXACTFIT, |
64 | validator, name); | |
65 | } | |
66 | ||
1e6feb95 | 67 | // set/get the margins around the button |
a6fd73d3 VZ |
68 | virtual void SetMargins(int x, int y) |
69 | { | |
70 | DoSetBitmapMargins(x, y); | |
71 | } | |
72 | ||
73 | int GetMarginX() const { return DoGetBitmapMargins().x; } | |
74 | int GetMarginY() const { return DoGetBitmapMargins().y; } | |
1e6feb95 | 75 | |
6b5a2b6f VZ |
76 | // deprecated synonym for SetBitmapLabel() |
77 | #if WXWIN_COMPATIBILITY_2_6 | |
eebe696e VZ |
78 | wxDEPRECATED_INLINE( void SetLabel(const wxBitmap& bitmap), |
79 | SetBitmapLabel(bitmap); ) | |
6b5a2b6f VZ |
80 | |
81 | // prevent virtual function hiding | |
82 | virtual void SetLabel(const wxString& label) | |
faa49bfd | 83 | { wxWindow::SetLabel(label); } |
6b5a2b6f VZ |
84 | #endif // WXWIN_COMPATIBILITY_2_6 |
85 | ||
1e6feb95 | 86 | protected: |
a6fd73d3 | 87 | #ifndef wxHAS_BUTTON_BITMAP |
1e6feb95 | 88 | // function called when any of the bitmaps changes |
c46b98da | 89 | virtual void OnSetBitmap() { InvalidateBestSize(); Refresh(); } |
1e6feb95 | 90 | |
2352862a VZ |
91 | virtual wxBitmap DoGetBitmap(State which) const { return m_bitmaps[which]; } |
92 | virtual void DoSetBitmap(const wxBitmap& bitmap, State which) | |
93 | { m_bitmaps[which] = bitmap; OnSetBitmap(); } | |
94 | ||
a6fd73d3 VZ |
95 | virtual wxSize DoGetBitmapMargins() const |
96 | { | |
97 | return wxSize(m_marginX, m_marginY); | |
98 | } | |
99 | ||
100 | virtual void DoSetBitmapMargins(int x, int y) | |
101 | { | |
102 | m_marginX = x; | |
103 | m_marginY = y; | |
104 | } | |
105 | ||
1e6feb95 | 106 | // the bitmaps for various states |
2352862a | 107 | wxBitmap m_bitmaps[State_Max]; |
1e6feb95 VZ |
108 | |
109 | // the margins around the bitmap | |
110 | int m_marginX, | |
111 | m_marginY; | |
a6fd73d3 | 112 | #endif // !wxHAS_BUTTON_BITMAP |
fc7a2a60 | 113 | |
c0c133e1 | 114 | wxDECLARE_NO_COPY_CLASS(wxBitmapButtonBase); |
1e6feb95 VZ |
115 | }; |
116 | ||
117 | #if defined(__WXUNIVERSAL__) | |
118 | #include "wx/univ/bmpbuttn.h" | |
119 | #elif defined(__WXMSW__) | |
120 | #include "wx/msw/bmpbuttn.h" | |
2049ba38 | 121 | #elif defined(__WXMOTIF__) |
1e6feb95 | 122 | #include "wx/motif/bmpbuttn.h" |
1be7a35c | 123 | #elif defined(__WXGTK20__) |
1e6feb95 | 124 | #include "wx/gtk/bmpbuttn.h" |
1be7a35c MR |
125 | #elif defined(__WXGTK__) |
126 | #include "wx/gtk1/bmpbuttn.h" | |
34138703 | 127 | #elif defined(__WXMAC__) |
ef0e9220 | 128 | #include "wx/osx/bmpbuttn.h" |
e64df9bc DE |
129 | #elif defined(__WXCOCOA__) |
130 | #include "wx/cocoa/bmpbuttn.h" | |
1777b9bb | 131 | #elif defined(__WXPM__) |
1e6feb95 | 132 | #include "wx/os2/bmpbuttn.h" |
c801d85f KB |
133 | #endif |
134 | ||
1e6feb95 VZ |
135 | #endif // wxUSE_BMPBUTTON |
136 | ||
137 | #endif // _WX_BMPBUTTON_H_BASE_ |