1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/bmpbutton.h
3 // Purpose: wxBitmapButton class interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_BMPBUTTON_H_BASE_
13 #define _WX_BMPBUTTON_H_BASE_
19 #include "wx/button.h"
21 // FIXME: right now only wxMSW, wxGTK and wxOSX implement bitmap support in wxButton
22 // itself, this shouldn't be used for the other platforms neither
23 // when all of them do it
24 #if (defined(__WXMSW__) || defined(__WXGTK20__) || defined(__WXOSX__)) && !defined(__WXUNIVERSAL__)
25 #define wxHAS_BUTTON_BITMAP
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 // ----------------------------------------------------------------------------
33 class WXDLLIMPEXP_CORE wxBitmapButtonBase
: public wxButton
38 #ifndef wxHAS_BUTTON_BITMAP
41 #endif // wxHAS_BUTTON_BITMAP
44 bool Create(wxWindow
*parent
,
49 const wxValidator
& validator
,
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
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.
61 return wxButton::Create(parent
, winid
, "",
63 style
| wxBU_NOTEXT
| wxBU_EXACTFIT
,
67 // set/get the margins around the button
68 virtual void SetMargins(int x
, int y
)
70 DoSetBitmapMargins(x
, y
);
73 int GetMarginX() const { return DoGetBitmapMargins().x
; }
74 int GetMarginY() const { return DoGetBitmapMargins().y
; }
76 // deprecated synonym for SetBitmapLabel()
77 #if WXWIN_COMPATIBILITY_2_6
78 wxDEPRECATED_INLINE( void SetLabel(const wxBitmap
& bitmap
),
79 SetBitmapLabel(bitmap
); )
81 // prevent virtual function hiding
82 virtual void SetLabel(const wxString
& label
)
83 { wxWindow::SetLabel(label
); }
84 #endif // WXWIN_COMPATIBILITY_2_6
87 #ifndef wxHAS_BUTTON_BITMAP
88 // function called when any of the bitmaps changes
89 virtual void OnSetBitmap() { InvalidateBestSize(); Refresh(); }
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(); }
95 virtual wxSize
DoGetBitmapMargins() const
97 return wxSize(m_marginX
, m_marginY
);
100 virtual void DoSetBitmapMargins(int x
, int y
)
106 // the bitmaps for various states
107 wxBitmap m_bitmaps
[State_Max
];
109 // the margins around the bitmap
112 #endif // !wxHAS_BUTTON_BITMAP
114 wxDECLARE_NO_COPY_CLASS(wxBitmapButtonBase
);
117 #if defined(__WXUNIVERSAL__)
118 #include "wx/univ/bmpbuttn.h"
119 #elif defined(__WXMSW__)
120 #include "wx/msw/bmpbuttn.h"
121 #elif defined(__WXMOTIF__)
122 #include "wx/motif/bmpbuttn.h"
123 #elif defined(__WXGTK20__)
124 #include "wx/gtk/bmpbuttn.h"
125 #elif defined(__WXGTK__)
126 #include "wx/gtk1/bmpbuttn.h"
127 #elif defined(__WXMAC__)
128 #include "wx/osx/bmpbuttn.h"
129 #elif defined(__WXCOCOA__)
130 #include "wx/cocoa/bmpbuttn.h"
131 #elif defined(__WXPM__)
132 #include "wx/os2/bmpbuttn.h"
133 #elif defined(__WXPALMOS__)
134 #include "wx/palmos/bmpbuttn.h"
137 #endif // wxUSE_BMPBUTTON
139 #endif // _WX_BMPBUTTON_H_BASE_