]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mac/tglbtn.h | |
3 | // Purpose: Declaration of the wxToggleButton class, which implements a | |
4 | // toggle button under wxMac. | |
5 | // Author: Stefan Csomor | |
6 | // Modified by: | |
7 | // Created: 08.02.01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2004 Stefan Csomor | |
65571936 | 10 | // License: wxWindows licence |
8cf73271 SC |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_TOGGLEBUTTON_H_ | |
14 | #define _WX_TOGGLEBUTTON_H_ | |
15 | ||
53a2db12 | 16 | WXDLLIMPEXP_DATA_CORE(extern const char) wxCheckBoxNameStr[]; |
8cf73271 | 17 | |
f8b13b58 | 18 | |
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxBitmapToggleButton : public wxToggleButtonBase |
f8b13b58 RR |
20 | { |
21 | public: | |
77325c70 RR |
22 | wxBitmapToggleButton() {} |
23 | wxBitmapToggleButton(wxWindow *parent, | |
f8b13b58 RR |
24 | wxWindowID id, |
25 | const wxBitmap& label, | |
26 | const wxPoint& pos = wxDefaultPosition, | |
27 | const wxSize& size = wxDefaultSize, | |
28 | long style = 0, | |
29 | const wxValidator& validator = wxDefaultValidator, | |
30 | const wxString& name = wxCheckBoxNameStr) | |
31 | { | |
32 | Create(parent, id, label, pos, size, style, validator, name); | |
33 | } | |
34 | ||
35 | bool Create(wxWindow *parent, | |
36 | wxWindowID id, | |
37 | const wxBitmap& label, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = 0, | |
41 | const wxValidator& validator = wxDefaultValidator, | |
42 | const wxString& name = wxCheckBoxNameStr); | |
43 | ||
44 | virtual void SetValue(bool value); | |
45 | virtual bool GetValue() const ; | |
46 | ||
47 | virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ; | |
48 | ||
49 | virtual void Command(wxCommandEvent& event); | |
50 | ||
51 | private: | |
52 | wxBitmap m_bitmap; | |
53 | ||
54 | protected: | |
55 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } | |
56 | virtual wxSize DoGetBestSize() const; | |
57 | ||
58 | private: | |
77325c70 | 59 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton) |
f8b13b58 RR |
60 | }; |
61 | ||
62 | ||
53a2db12 | 63 | class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase |
8cf73271 SC |
64 | { |
65 | public: | |
66 | wxToggleButton() {} | |
67 | wxToggleButton(wxWindow *parent, | |
68 | wxWindowID id, | |
69 | const wxString& label, | |
70 | const wxPoint& pos = wxDefaultPosition, | |
71 | const wxSize& size = wxDefaultSize, | |
72 | long style = 0, | |
73 | const wxValidator& validator = wxDefaultValidator, | |
74 | const wxString& name = wxCheckBoxNameStr) | |
75 | { | |
76 | Create(parent, id, label, pos, size, style, validator, name); | |
77 | } | |
78 | ||
79 | bool Create(wxWindow *parent, | |
80 | wxWindowID id, | |
81 | const wxString& label, | |
82 | const wxPoint& pos = wxDefaultPosition, | |
83 | const wxSize& size = wxDefaultSize, | |
84 | long style = 0, | |
85 | const wxValidator& validator = wxDefaultValidator, | |
86 | const wxString& name = wxCheckBoxNameStr); | |
87 | ||
88 | virtual void SetValue(bool value); | |
89 | virtual bool GetValue() const ; | |
90 | ||
336a6aba | 91 | virtual wxInt32 MacControlHit( WXEVENTHANDLERREF handler , WXEVENTREF event ) ; |
8cf73271 SC |
92 | |
93 | virtual void Command(wxCommandEvent& event); | |
94 | ||
95 | protected: | |
dc797d8e | 96 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } |
8cf73271 SC |
97 | virtual wxSize DoGetBestSize() const; |
98 | ||
99 | private: | |
100 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton) | |
101 | }; | |
102 | ||
103 | #endif // _WX_TOGGLEBUTTON_H_ | |
104 |