]>
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 | ||
6762286d SC |
16 | class WXDLLIMPEXP_CORE wxBitmapToggleButton : public wxToggleButtonBase |
17 | { | |
18 | public: | |
19 | wxBitmapToggleButton() {} | |
20 | wxBitmapToggleButton(wxWindow *parent, | |
21 | wxWindowID id, | |
22 | const wxBitmap& label, | |
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, | |
34 | const wxBitmap& label, | |
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 | ||
48 | private: | |
49 | wxBitmap m_bitmap; | |
50 | ||
51 | int m_marginX, | |
52 | m_marginY; | |
03647350 | 53 | |
6762286d SC |
54 | protected: |
55 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } | |
56 | virtual wxSize DoGetBestSize() const; | |
57 | ||
58 | private: | |
59 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton) | |
60 | }; | |
61 | ||
62 | ||
63 | class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase | |
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 | ||
12b5f4b4 | 91 | virtual bool OSXHandleClicked( double timestampsec ); |
6762286d SC |
92 | |
93 | virtual void Command(wxCommandEvent& event); | |
94 | ||
95 | protected: | |
96 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } | |
97 | virtual wxSize DoGetBestSize() const; | |
98 | ||
99 | private: | |
100 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton) | |
101 | }; | |
102 | ||
103 | #endif // _WX_TOGGLEBUTTON_H_ | |
104 |