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/bitmap.h"
20 #include "wx/button.h"
22 extern WXDLLEXPORT_DATA(const char) wxButtonNameStr
[];
24 // ----------------------------------------------------------------------------
25 // wxBitmapButton: a button which shows bitmaps instead of the usual string.
26 // It has different bitmaps for different states (focused/disabled/pressed)
27 // ----------------------------------------------------------------------------
29 class WXDLLEXPORT wxBitmapButtonBase
: public wxButton
39 virtual void SetBitmapLabel(const wxBitmap
& bitmap
)
40 { m_bmpNormal
= bitmap
; OnSetBitmap(); }
41 virtual void SetBitmapSelected(const wxBitmap
& sel
)
42 { m_bmpSelected
= sel
; OnSetBitmap(); }
43 virtual void SetBitmapFocus(const wxBitmap
& focus
)
44 { m_bmpFocus
= focus
; OnSetBitmap(); }
45 virtual void SetBitmapDisabled(const wxBitmap
& disabled
)
46 { m_bmpDisabled
= disabled
; OnSetBitmap(); }
47 virtual void SetBitmapHover(const wxBitmap
& hover
)
48 { m_bmpHover
= hover
; OnSetBitmap(); }
50 // retrieve the bitmaps
51 const wxBitmap
& GetBitmapLabel() const { return m_bmpNormal
; }
52 const wxBitmap
& GetBitmapSelected() const { return m_bmpSelected
; }
53 const wxBitmap
& GetBitmapFocus() const { return m_bmpFocus
; }
54 const wxBitmap
& GetBitmapDisabled() const { return m_bmpDisabled
; }
55 const wxBitmap
& GetBitmapHover() const { return m_bmpHover
; }
56 wxBitmap
& GetBitmapLabel() { return m_bmpNormal
; }
57 wxBitmap
& GetBitmapSelected() { return m_bmpSelected
; }
58 wxBitmap
& GetBitmapFocus() { return m_bmpFocus
; }
59 wxBitmap
& GetBitmapDisabled() { return m_bmpDisabled
; }
60 wxBitmap
& GetBitmapHover() { return m_bmpHover
; }
62 // set/get the margins around the button
63 virtual void SetMargins(int x
, int y
) { m_marginX
= x
; m_marginY
= y
; }
64 int GetMarginX() const { return m_marginX
; }
65 int GetMarginY() const { return m_marginY
; }
67 // deprecated synonym for SetBitmapLabel()
68 #if WXWIN_COMPATIBILITY_2_6
69 wxDEPRECATED( void SetLabel(const wxBitmap
& bitmap
) );
71 // prevent virtual function hiding
72 virtual void SetLabel(const wxString
& label
)
73 { wxWindow::SetLabel(label
); }
74 #endif // WXWIN_COMPATIBILITY_2_6
77 // function called when any of the bitmaps changes
78 virtual void OnSetBitmap() { InvalidateBestSize(); Refresh(); }
80 // the bitmaps for various states
87 // the margins around the bitmap
92 DECLARE_NO_COPY_CLASS(wxBitmapButtonBase
)
95 #if WXWIN_COMPATIBILITY_2_6
96 inline void wxBitmapButtonBase::SetLabel(const wxBitmap
& bitmap
)
98 SetBitmapLabel(bitmap
);
100 #endif // WXWIN_COMPATIBILITY_2_6
102 #if defined(__WXUNIVERSAL__)
103 #include "wx/univ/bmpbuttn.h"
104 #elif defined(__WXMSW__)
105 #include "wx/msw/bmpbuttn.h"
106 #elif defined(__WXMOTIF__)
107 #include "wx/motif/bmpbuttn.h"
108 #elif defined(__WXGTK20__)
109 #include "wx/gtk/bmpbuttn.h"
110 #elif defined(__WXGTK__)
111 #include "wx/gtk1/bmpbuttn.h"
112 #elif defined(__WXMAC__)
113 #include "wx/mac/bmpbuttn.h"
114 #elif defined(__WXCOCOA__)
115 #include "wx/cocoa/bmpbuttn.h"
116 #elif defined(__WXPM__)
117 #include "wx/os2/bmpbuttn.h"
118 #elif defined(__WXPALMOS__)
119 #include "wx/palmos/bmpbuttn.h"
122 #endif // wxUSE_BMPBUTTON
124 #endif // _WX_BMPBUTTON_H_BASE_