]>
Commit | Line | Data |
---|---|---|
6762286d | 1 | ///////////////////////////////////////////////////////////////////////////// |
526954c5 | 2 | // Name: wx/osx/tglbtn.h |
6762286d SC |
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 | |
526954c5 | 10 | // Licence: wxWindows licence |
6762286d SC |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_TOGGLEBUTTON_H_ | |
14 | #define _WX_TOGGLEBUTTON_H_ | |
15 | ||
b4354db1 | 16 | class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase |
6762286d SC |
17 | { |
18 | public: | |
b4354db1 VZ |
19 | wxToggleButton() {} |
20 | wxToggleButton(wxWindow *parent, | |
6762286d | 21 | wxWindowID id, |
b4354db1 | 22 | const wxString& label, |
6762286d SC |
23 | const wxPoint& pos = wxDefaultPosition, |
24 | const wxSize& size = wxDefaultSize, | |
25 | long style = 0, | |
26 | const wxValidator& validator = wxDefaultValidator, | |
27 | const wxString& name = wxCheckBoxNameStr) | |
28 | { | |
29 | Create(parent, id, label, pos, size, style, validator, name); | |
30 | } | |
31 | ||
32 | bool Create(wxWindow *parent, | |
33 | wxWindowID id, | |
b4354db1 | 34 | const wxString& label, |
6762286d SC |
35 | const wxPoint& pos = wxDefaultPosition, |
36 | const wxSize& size = wxDefaultSize, | |
37 | long style = 0, | |
38 | const wxValidator& validator = wxDefaultValidator, | |
39 | const wxString& name = wxCheckBoxNameStr); | |
40 | ||
41 | virtual void SetValue(bool value); | |
42 | virtual bool GetValue() const ; | |
43 | ||
12b5f4b4 | 44 | virtual bool OSXHandleClicked( double timestampsec ); |
6762286d SC |
45 | |
46 | virtual void Command(wxCommandEvent& event); | |
47 | ||
6762286d SC |
48 | protected: |
49 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } | |
6762286d SC |
50 | |
51 | private: | |
b4354db1 | 52 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton) |
6762286d SC |
53 | }; |
54 | ||
55 | ||
b4354db1 | 56 | class WXDLLIMPEXP_CORE wxBitmapToggleButton : public wxToggleButton |
6762286d SC |
57 | { |
58 | public: | |
b4354db1 VZ |
59 | wxBitmapToggleButton() {} |
60 | wxBitmapToggleButton(wxWindow *parent, | |
6762286d | 61 | wxWindowID id, |
b4354db1 | 62 | const wxBitmap& label, |
6762286d SC |
63 | const wxPoint& pos = wxDefaultPosition, |
64 | const wxSize& size = wxDefaultSize, | |
65 | long style = 0, | |
66 | const wxValidator& validator = wxDefaultValidator, | |
67 | const wxString& name = wxCheckBoxNameStr) | |
68 | { | |
69 | Create(parent, id, label, pos, size, style, validator, name); | |
70 | } | |
71 | ||
72 | bool Create(wxWindow *parent, | |
73 | wxWindowID id, | |
b4354db1 | 74 | const wxBitmap& label, |
6762286d SC |
75 | const wxPoint& pos = wxDefaultPosition, |
76 | const wxSize& size = wxDefaultSize, | |
77 | long style = 0, | |
78 | const wxValidator& validator = wxDefaultValidator, | |
79 | const wxString& name = wxCheckBoxNameStr); | |
80 | ||
6762286d | 81 | private: |
b4354db1 | 82 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton) |
6762286d SC |
83 | }; |
84 | ||
85 | #endif // _WX_TOGGLEBUTTON_H_ | |
86 |