]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: checkbox.h | |
3 | // Purpose: wxCheckBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_CHECKBOX_H_ | |
13 | #define _WX_CHECKBOX_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(__APPLE__) | |
16 | #pragma interface "checkbox.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | // Checkbox item (single checkbox) | |
22 | class WXDLLEXPORT wxCheckBox: public wxCheckBoxBase | |
23 | { | |
24 | DECLARE_DYNAMIC_CLASS(wxCheckBox) | |
25 | ||
26 | public: | |
27 | inline wxCheckBox() { Init(); } | |
28 | inline wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label, | |
29 | const wxPoint& pos = wxDefaultPosition, | |
30 | const wxSize& size = wxDefaultSize, long style = 0, | |
31 | const wxValidator& validator = wxDefaultValidator, | |
32 | const wxString& name = wxCheckBoxNameStr) | |
33 | { | |
34 | Init(); | |
35 | ||
36 | Create(parent, id, label, pos, size, style, validator, name); | |
37 | } | |
38 | ||
39 | bool Create(wxWindow *parent, wxWindowID id, const wxString& label, | |
40 | const wxPoint& pos = wxDefaultPosition, | |
41 | const wxSize& size = wxDefaultSize, long style = 0, | |
42 | const wxValidator& validator = wxDefaultValidator, | |
43 | const wxString& name = wxCheckBoxNameStr); | |
44 | virtual void SetValue(bool); | |
45 | virtual bool GetValue() const ; | |
46 | virtual void Command(wxCommandEvent& event); | |
47 | ||
48 | // Implementation | |
49 | virtual void ChangeBackgroundColour(); | |
50 | private: | |
51 | // common part of all constructors | |
52 | void Init() | |
53 | { | |
54 | m_evtType = wxEVT_COMMAND_CHECKBOX_CLICKED; | |
55 | } | |
56 | ||
57 | // public for the callback | |
58 | public: | |
59 | // either exEVT_COMMAND_CHECKBOX_CLICKED or ..._TOGGLEBUTTON_CLICKED | |
60 | wxEventType m_evtType; | |
61 | }; | |
62 | ||
63 | #endif | |
64 | // _WX_CHECKBOX_H_ |