]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/msw/checkbox.h |
2bda0e17 KB |
3 | // Purpose: wxCheckBox class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_CHECKBOX_H_ |
13 | #define _WX_CHECKBOX_H_ | |
2bda0e17 | 14 | |
2bda0e17 | 15 | // Checkbox item (single checkbox) |
1e6feb95 | 16 | class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase |
2bda0e17 | 17 | { |
bfc6fde4 VZ |
18 | public: |
19 | wxCheckBox() { } | |
2b5f62a0 VZ |
20 | wxCheckBox(wxWindow *parent, |
21 | wxWindowID id, | |
22 | const wxString& 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) | |
bfc6fde4 VZ |
28 | { |
29 | Create(parent, id, label, pos, size, style, validator, name); | |
30 | } | |
31 | ||
2b5f62a0 VZ |
32 | bool Create(wxWindow *parent, |
33 | wxWindowID id, | |
34 | const wxString& 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); | |
bfc6fde4 | 40 | |
0da52ad1 | 41 | virtual void SetValue(bool value); |
2b5f62a0 | 42 | virtual bool GetValue() const; |
bfc6fde4 | 43 | |
2f259810 | 44 | // override some base class virtuals |
2b5f62a0 | 45 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 | 46 | virtual void Command(wxCommandEvent& event); |
2f259810 | 47 | virtual bool SetForegroundColour(const wxColour& colour); |
6f02a879 | 48 | virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item); |
bfc6fde4 VZ |
49 | |
50 | protected: | |
f68586e5 | 51 | virtual wxSize DoGetBestSize() const; |
1e6feb95 | 52 | |
8941fa88 | 53 | virtual void DoSet3StateValue(wxCheckBoxState value); |
8941fa88 VZ |
54 | virtual wxCheckBoxState DoGet3StateValue() const; |
55 | ||
2f259810 VZ |
56 | // make the checkbox owner drawn or reset it to normal style |
57 | void MakeOwnerDrawn(bool ownerDrawn); | |
58 | ||
59 | // return true if this checkbox is owner drawn | |
60 | bool IsOwnerDrawn() const; | |
61 | ||
1e6feb95 | 62 | private: |
2f259810 VZ |
63 | // common part of all ctors |
64 | void Init(); | |
65 | ||
66 | // event handlers used by owner-drawn checkbox | |
67 | void OnMouseEnterOrLeave(wxMouseEvent& event); | |
68 | void OnMouseLeft(wxMouseEvent& event); | |
69 | void OnFocus(wxFocusEvent& event); | |
70 | ||
71 | ||
72 | // current state of the checkbox | |
73 | wxCheckBoxState m_state; | |
74 | ||
75 | // true if the checkbox is currently pressed | |
76 | bool m_isPressed; | |
77 | ||
78 | // true if mouse is currently over the control | |
79 | bool m_isHot; | |
80 | ||
81 | ||
fc7a2a60 | 82 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckBox) |
2bda0e17 KB |
83 | }; |
84 | ||
2bda0e17 | 85 | #endif |
bbcdf8bc | 86 | // _WX_CHECKBOX_H_ |