]>
git.saurik.com Git - wxWidgets.git/blob - src/qt/checkbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "checkbox.h"
16 #include "wx/checkbox.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 IMPLEMENT_DYNAMIC_CLASS(wxCheckBox
,wxControl
)
24 wxCheckBox::wxCheckBox(void)
28 wxCheckBox::wxCheckBox( wxWindow
*parent
, wxWindowID id
, const wxString
&label
,
29 const wxPoint
&pos
, const wxSize
&size
,
30 long style
, const wxString
&name
)
32 Create( parent
, id
, label
, pos
, size
, style
, name
);
35 bool wxCheckBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&label
,
36 const wxPoint
&pos
, const wxSize
&size
,
37 long style
, const wxString
&name
)
42 void wxCheckBox::SetValue( bool WXUNUSED(state
) )
46 bool wxCheckBox::GetValue(void) const