1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWindows Widgets Sample
4 // Purpose: Part of the widgets sample showing wxCheckBox
5 // Author: Dimitri Schoolwerth
6 // Created: 27 Sep 2003
8 // Copyright: (c) 2003 wxWindows team
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers
32 #include "wx/button.h"
33 #include "wx/checkbox.h"
41 #include "icons/checkbox.xpm"
43 // ----------------------------------------------------------------------------
44 // CheckBoxWidgetsPage
45 // ----------------------------------------------------------------------------
47 class CheckBoxWidgetsPage
: public WidgetsPage
50 CheckBoxWidgetsPage(wxNotebook
*notebook
, wxImageList
*imaglist
);
51 virtual ~CheckBoxWidgetsPage();
55 void OnCheckBox(wxCommandEvent
& event
);
57 void OnButton(wxCommandEvent
& event
);
62 wxCheckBox
*m_chk2States
,
64 *m_chk3StatesAllows3rdStateForUser
;
70 DECLARE_WIDGETS_PAGE(CheckBoxWidgetsPage
)
73 // ----------------------------------------------------------------------------
75 // ----------------------------------------------------------------------------
77 BEGIN_EVENT_TABLE(CheckBoxWidgetsPage
, WidgetsPage
)
78 EVT_CHECKBOX(wxID_ANY
, CheckBoxWidgetsPage::OnCheckBox
)
79 EVT_BUTTON(wxID_ANY
, CheckBoxWidgetsPage::OnButton
)
82 // ============================================================================
84 // ============================================================================
86 IMPLEMENT_WIDGETS_PAGE(CheckBoxWidgetsPage
, wxT("CheckBox"));
88 CheckBoxWidgetsPage::CheckBoxWidgetsPage(wxNotebook
*notebook
,
89 wxImageList
*imaglist
)
90 : WidgetsPage(notebook
)
92 imaglist
->Add(wxBitmap(checkbox_xpm
));
94 m_chk2States
= new wxCheckBox( this, wxID_ANY
,
95 wxT("I'm a standard 2-state checkbox") );
96 m_chk3States
= new wxCheckBox( this, wxID_ANY
,
97 wxT("I'm a 3-state checkbox that disallows setting the undetermined")
98 wxT(" state by the user" ),
99 wxDefaultPosition
, wxDefaultSize
, wxCHK_3STATE
);
100 m_button
= new wxButton( this, wxID_ANY
, wxT("&Programmatically set this")
101 wxT(" checkbox to undetermined state") );
103 m_chk3StatesAllows3rdStateForUser
= new wxCheckBox(this, wxID_ANY
,
104 wxT("I'm a 3-state checkbox that allows setting the 3rd state by the user"),
105 wxDefaultPosition
, wxDefaultSize
, wxCHK_3STATE
106 | wxCHK_ALLOW_3RD_STATE_FOR_USER
);
108 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
110 sizerTop
->Add(0, 0, 1, wxEXPAND
);
111 sizerTop
->Add(m_chk2States
, 0, wxEXPAND
);
112 sizerTop
->Add(0, 0, 1, wxEXPAND
);
113 wxSizer
*sizerCheckBoxAndButton
= new wxBoxSizer(wxHORIZONTAL
);
115 wxSizer
*szr
= sizerCheckBoxAndButton
;
116 szr
->Add(m_chk3States
, 0, wxEXPAND
);
117 szr
->Add(0, 0, 1, wxEXPAND
);
118 szr
->Add(m_button
, 0, wxEXPAND
);
120 sizerTop
->Add(szr
, 0, wxEXPAND
);
123 sizerTop
->Add(0, 0, 1, wxEXPAND
);
124 sizerTop
->Add(m_chk3StatesAllows3rdStateForUser
, 0, wxEXPAND
);
125 sizerTop
->Add(0, 0, 1, wxEXPAND
);
132 CheckBoxWidgetsPage::~CheckBoxWidgetsPage()
136 // ----------------------------------------------------------------------------
138 // ----------------------------------------------------------------------------
140 void CheckBoxWidgetsPage::OnCheckBox(wxCommandEvent
& event
)
142 static const wxString stateNames
[] =
146 wxT("undetermined/mixed"),
148 wxCheckBoxState state
= (wxCheckBoxState
) event
.GetInt();
150 wxCHECK_RET( (state
>= 0) && (state
< WXSIZEOF(stateNames
)),
151 "event.GetInt() returned an invalid wxCheckBoxState" );
153 wxLogMessage(wxT("Checkbox now set to state: %s"),
154 stateNames
[state
].c_str());
157 void CheckBoxWidgetsPage::OnButton(wxCommandEvent
& WXUNUSED(event
))
159 m_chk3States
->Set3StateValue(wxCHK_UNDETERMINED
);