]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/msw/bmpbuttn.h | |
3 | // Purpose: wxBitmapButton class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_BMPBUTTN_H_ | |
13 | #define _WX_BMPBUTTN_H_ | |
14 | ||
15 | #include "wx/button.h" | |
16 | #include "wx/bitmap.h" | |
17 | #include "wx/brush.h" | |
18 | ||
19 | class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase | |
20 | { | |
21 | public: | |
22 | wxBitmapButton() { Init(); } | |
23 | ||
24 | wxBitmapButton(wxWindow *parent, | |
25 | wxWindowID id, | |
26 | const wxBitmap& bitmap, | |
27 | const wxPoint& pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, | |
29 | long style = wxBU_AUTODRAW, | |
30 | const wxValidator& validator = wxDefaultValidator, | |
31 | const wxString& name = wxButtonNameStr) | |
32 | { | |
33 | Init(); | |
34 | ||
35 | Create(parent, id, bitmap, pos, size, style, validator, name); | |
36 | } | |
37 | ||
38 | bool Create(wxWindow *parent, | |
39 | wxWindowID id, | |
40 | const wxBitmap& bitmap, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = wxBU_AUTODRAW, | |
44 | const wxValidator& validator = wxDefaultValidator, | |
45 | const wxString& name = wxButtonNameStr); | |
46 | ||
47 | protected: | |
48 | // common part of all ctors | |
49 | void Init() | |
50 | { | |
51 | m_disabledSetByUser = | |
52 | m_hoverSetByUser = false; | |
53 | } | |
54 | ||
55 | // reimplement some base class virtuals | |
56 | virtual void DoSetBitmap(const wxBitmap& bitmap, State which); | |
57 | ||
58 | // true if disabled bitmap was set by user, false if we created it | |
59 | // ourselves from the normal one | |
60 | bool m_disabledSetByUser; | |
61 | ||
62 | // true if hover bitmap was set by user, false if it was set from focused | |
63 | // one | |
64 | bool m_hoverSetByUser; | |
65 | ||
66 | ||
67 | DECLARE_EVENT_TABLE() | |
68 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapButton) | |
69 | }; | |
70 | ||
71 | #endif // _WX_BMPBUTTN_H_ |