]>
Commit | Line | Data |
---|---|---|
1db8dc4a VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/tglbtn.h | |
3 | // Purpose: Declaration of the wxToggleButton class, which implements a | |
4 | // toggle button under wxMSW. | |
5 | // Author: John Norris, minor changes by Axel Schlueter | |
6 | // Modified by: | |
7 | // Created: 08.02.01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2000 Johnny C. Norris II | |
706fb893 | 10 | // License: wxWindows licence |
1db8dc4a VZ |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_TOGGLEBUTTON_H_ | |
14 | #define _WX_TOGGLEBUTTON_H_ | |
15 | ||
53a2db12 | 16 | extern WXDLLIMPEXP_DATA_CORE(const char) wxCheckBoxNameStr[]; |
1db8dc4a VZ |
17 | |
18 | // Checkbox item (single checkbox) | |
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase |
1db8dc4a VZ |
20 | { |
21 | public: | |
22 | wxToggleButton() {} | |
23 | wxToggleButton(wxWindow *parent, | |
24 | wxWindowID id, | |
25 | const wxString& 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 wxString& 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 | ||
9016f3ad VZ |
47 | virtual void SetLabel(const wxString& label); |
48 | ||
1db8dc4a | 49 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
1db8dc4a VZ |
50 | virtual void Command(wxCommandEvent& event); |
51 | ||
a047aff2 JS |
52 | // returns true if the platform should explicitly apply a theme border |
53 | virtual bool CanApplyThemeBorder() const { return false; } | |
54 | ||
1db8dc4a | 55 | protected: |
dc797d8e | 56 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } |
1db8dc4a VZ |
57 | virtual wxSize DoGetBestSize() const; |
58 | ||
9016f3ad VZ |
59 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const; |
60 | ||
1db8dc4a | 61 | private: |
2eb10e2a | 62 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton) |
1db8dc4a VZ |
63 | }; |
64 | ||
65 | #endif // _WX_TOGGLEBUTTON_H_ | |
66 |