]>
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 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
2bda0e17 KB |
16 | #pragma interface "checkbox.h" |
17 | #endif | |
18 | ||
2bda0e17 | 19 | // Checkbox item (single checkbox) |
1e6feb95 | 20 | class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase |
2bda0e17 | 21 | { |
bfc6fde4 VZ |
22 | public: |
23 | wxCheckBox() { } | |
2b5f62a0 VZ |
24 | wxCheckBox(wxWindow *parent, |
25 | wxWindowID id, | |
26 | const wxString& label, | |
27 | const wxPoint& pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, | |
29 | long style = 0, | |
30 | const wxValidator& validator = wxDefaultValidator, | |
31 | const wxString& name = wxCheckBoxNameStr) | |
bfc6fde4 VZ |
32 | { |
33 | Create(parent, id, label, pos, size, style, validator, name); | |
34 | } | |
35 | ||
2b5f62a0 VZ |
36 | bool Create(wxWindow *parent, |
37 | wxWindowID id, | |
38 | const wxString& label, | |
39 | const wxPoint& pos = wxDefaultPosition, | |
40 | const wxSize& size = wxDefaultSize, | |
41 | long style = 0, | |
42 | const wxValidator& validator = wxDefaultValidator, | |
43 | const wxString& name = wxCheckBoxNameStr); | |
bfc6fde4 | 44 | |
0da52ad1 | 45 | virtual void SetValue(bool value); |
2b5f62a0 | 46 | virtual bool GetValue() const; |
bfc6fde4 | 47 | |
2f259810 | 48 | // override some base class virtuals |
2b5f62a0 | 49 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
bfc6fde4 | 50 | virtual void Command(wxCommandEvent& event); |
2f259810 | 51 | virtual bool SetForegroundColour(const wxColour& colour); |
bfc6fde4 VZ |
52 | |
53 | protected: | |
f68586e5 | 54 | virtual wxSize DoGetBestSize() const; |
2f259810 | 55 | virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item); |
1e6feb95 | 56 | |
8941fa88 | 57 | virtual void DoSet3StateValue(wxCheckBoxState value); |
8941fa88 VZ |
58 | virtual wxCheckBoxState DoGet3StateValue() const; |
59 | ||
2f259810 VZ |
60 | // make the checkbox owner drawn or reset it to normal style |
61 | void MakeOwnerDrawn(bool ownerDrawn); | |
62 | ||
63 | // return true if this checkbox is owner drawn | |
64 | bool IsOwnerDrawn() const; | |
65 | ||
1e6feb95 | 66 | private: |
2f259810 VZ |
67 | // common part of all ctors |
68 | void Init(); | |
69 | ||
70 | // event handlers used by owner-drawn checkbox | |
71 | void OnMouseEnterOrLeave(wxMouseEvent& event); | |
72 | void OnMouseLeft(wxMouseEvent& event); | |
73 | void OnFocus(wxFocusEvent& event); | |
74 | ||
75 | ||
76 | // current state of the checkbox | |
77 | wxCheckBoxState m_state; | |
78 | ||
79 | // true if the checkbox is currently pressed | |
80 | bool m_isPressed; | |
81 | ||
82 | // true if mouse is currently over the control | |
83 | bool m_isHot; | |
84 | ||
85 | ||
fc7a2a60 | 86 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckBox) |
2bda0e17 KB |
87 | }; |
88 | ||
2bda0e17 | 89 | #endif |
bbcdf8bc | 90 | // _WX_CHECKBOX_H_ |