1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCheckBox class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CHECKBOX_H_
13 #define _WX_CHECKBOX_H_
15 // Checkbox item (single checkbox)
16 class WXDLLEXPORT wxCheckBox
: public wxCheckBoxBase
20 wxCheckBox(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
21 const wxPoint
& pos
= wxDefaultPosition
,
22 const wxSize
& size
= wxDefaultSize
, long style
= 0,
23 const wxValidator
& validator
= wxDefaultValidator
,
24 const wxString
& name
= wxCheckBoxNameStr
)
26 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
29 bool Create(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
30 const wxPoint
& pos
= wxDefaultPosition
,
31 const wxSize
& size
= wxDefaultSize
, long style
= 0,
32 const wxValidator
& validator
= wxDefaultValidator
,
33 const wxString
& name
= wxCheckBoxNameStr
);
34 virtual void SetValue(bool);
35 virtual bool GetValue() const;
37 virtual wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
38 virtual void Command(wxCommandEvent
& event
);
41 void DoSet3StateValue(wxCheckBoxState val
);
42 virtual wxCheckBoxState
DoGet3StateValue() const;
44 DECLARE_DYNAMIC_CLASS(wxCheckBox
)
47 class WXDLLIMPEXP_FWD_CORE wxBitmap
;
48 class WXDLLEXPORT wxBitmapCheckBox
: public wxCheckBox
55 : checkWidth(-1), checkHeight(-1)
58 wxBitmapCheckBox(wxWindow
*parent
, wxWindowID id
, const wxBitmap
*label
,
59 const wxPoint
& pos
= wxDefaultPosition
,
60 const wxSize
& size
= wxDefaultSize
, long style
= 0,
61 const wxValidator
& validator
= wxDefaultValidator
,
62 const wxString
& name
= wxCheckBoxNameStr
)
64 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
67 bool Create(wxWindow
*parent
, wxWindowID id
, const wxBitmap
*bitmap
,
68 const wxPoint
& pos
= wxDefaultPosition
,
69 const wxSize
& size
= wxDefaultSize
, long style
= 0,
70 const wxValidator
& validator
= wxDefaultValidator
,
71 const wxString
& name
= wxCheckBoxNameStr
);
72 virtual void SetValue(bool);
73 virtual bool GetValue() const;
74 virtual void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
75 virtual void SetLabel(const wxBitmap
*bitmap
);
76 virtual void SetLabel( const wxString
& WXUNUSED(name
) ) {}
78 DECLARE_DYNAMIC_CLASS(wxBitmapCheckBox
)