]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
be5a51fb | 2 | // Program: wxWidgets Widgets Sample |
2ddb4d13 | 3 | // Name: samples/widgets/widgets.cpp |
be5a51fb | 4 | // Purpose: Sample showing most of the simple wxWidgets widgets |
32b8ec41 VZ |
5 | // Author: Vadim Zeitlin |
6 | // Created: 27.03.01 | |
7 | // Id: $Id$ | |
8 | // Copyright: (c) 2001 Vadim Zeitlin | |
9 | // License: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx/wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | // for all others, include the necessary headers | |
28 | #ifndef WX_PRECOMP | |
29 | #include "wx/app.h" | |
30 | #include "wx/log.h" | |
32b8ec41 | 31 | #include "wx/frame.h" |
e6f3cbd2 | 32 | #include "wx/menu.h" |
e273c962 | 33 | #include "wx/image.h" |
e6f3cbd2 | 34 | |
32b8ec41 VZ |
35 | #include "wx/button.h" |
36 | #include "wx/checkbox.h" | |
37 | #include "wx/listbox.h" | |
38 | #include "wx/statbox.h" | |
39 | #include "wx/stattext.h" | |
40 | #include "wx/textctrl.h" | |
bd018e7e | 41 | #include "wx/msgdlg.h" |
32b8ec41 VZ |
42 | #endif |
43 | ||
25057aba | 44 | #include "wx/sysopt.h" |
61c083e7 | 45 | #include "wx/bookctrl.h" |
f2fdc4d5 | 46 | #include "wx/treebook.h" |
32b8ec41 | 47 | #include "wx/sizer.h" |
195df7a7 | 48 | #include "wx/colordlg.h" |
822b9009 | 49 | #include "wx/fontdlg.h" |
1bdd1007 | 50 | #include "wx/textdlg.h" |
261357eb | 51 | #include "wx/imaglist.h" |
453535a7 | 52 | #include "wx/wupdlock.h" |
32b8ec41 VZ |
53 | |
54 | #include "widgets.h" | |
55 | ||
f2fdc4d5 WS |
56 | #include "../sample.xpm" |
57 | ||
32b8ec41 VZ |
58 | // ---------------------------------------------------------------------------- |
59 | // constants | |
60 | // ---------------------------------------------------------------------------- | |
61 | ||
62 | // control ids | |
63 | enum | |
64 | { | |
65 | Widgets_ClearLog = 100, | |
195df7a7 | 66 | Widgets_Quit, |
1301e228 | 67 | |
3700e21b VZ |
68 | Widgets_BookCtrl, |
69 | ||
1c01dd16 VZ |
70 | #if wxUSE_TOOLTIPS |
71 | Widgets_SetTooltip, | |
72 | #endif // wxUSE_TOOLTIPS | |
195df7a7 | 73 | Widgets_SetFgColour, |
822b9009 | 74 | Widgets_SetBgColour, |
a17c1df4 | 75 | Widgets_SetFont, |
1301e228 VZ |
76 | Widgets_Enable, |
77 | ||
78 | Widgets_BorderNone, | |
79 | Widgets_BorderStatic, | |
80 | Widgets_BorderSimple, | |
81 | Widgets_BorderRaised, | |
82 | Widgets_BorderSunken, | |
83 | Widgets_BorderDouble, | |
3700e21b VZ |
84 | Widgets_BorderDefault, |
85 | ||
e32bcef6 VZ |
86 | Widgets_GlobalBusyCursor, |
87 | Widgets_BusyCursor, | |
88 | ||
3700e21b VZ |
89 | Widgets_GoToPage, |
90 | Widgets_GoToPageLast = Widgets_GoToPage + 100 | |
32b8ec41 VZ |
91 | }; |
92 | ||
f2fdc4d5 | 93 | const wxChar *WidgetsCategories[MAX_PAGES] = { |
d8d07a79 WS |
94 | #if defined(__WXUNIVERSAL__) |
95 | wxT("Universal"), | |
96 | #else | |
f2fdc4d5 | 97 | wxT("Native"), |
d8d07a79 | 98 | #endif |
f2fdc4d5 WS |
99 | wxT("Generic"), |
100 | wxT("Pickers"), | |
101 | wxT("Comboboxes"), | |
102 | wxT("With items"), | |
103 | wxT("Editable"), | |
104 | wxT("Books"), | |
105 | wxT("All controls") | |
106 | }; | |
107 | ||
32b8ec41 VZ |
108 | // ---------------------------------------------------------------------------- |
109 | // our classes | |
110 | // ---------------------------------------------------------------------------- | |
111 | ||
112 | // Define a new application type, each program should derive a class from wxApp | |
113 | class WidgetsApp : public wxApp | |
114 | { | |
115 | public: | |
116 | // override base class virtuals | |
117 | // ---------------------------- | |
118 | ||
119 | // this one is called on application startup and is a good place for the app | |
120 | // initialization (doing it here and not in the ctor allows to have an error | |
121 | // return: if OnInit() returns false, the application terminates) | |
122 | virtual bool OnInit(); | |
123 | }; | |
124 | ||
125 | // Define a new frame type: this is going to be our main frame | |
126 | class WidgetsFrame : public wxFrame | |
127 | { | |
128 | public: | |
129 | // ctor(s) and dtor | |
130 | WidgetsFrame(const wxString& title); | |
131 | virtual ~WidgetsFrame(); | |
132 | ||
133 | protected: | |
134 | // event handlers | |
49abcb2f | 135 | #if USE_LOG |
32b8ec41 | 136 | void OnButtonClearLog(wxCommandEvent& event); |
49abcb2f | 137 | #endif // USE_LOG |
195df7a7 | 138 | void OnExit(wxCommandEvent& event); |
a17c1df4 | 139 | |
195df7a7 | 140 | #if wxUSE_MENUS |
3e859739 | 141 | void OnPageChanging(WidgetsBookCtrlEvent& event); |
f2fdc4d5 | 142 | void OnPageChanged(WidgetsBookCtrlEvent& event); |
3700e21b VZ |
143 | void OnGoToPage(wxCommandEvent& event); |
144 | ||
1c01dd16 VZ |
145 | #if wxUSE_TOOLTIPS |
146 | void OnSetTooltip(wxCommandEvent& event); | |
147 | #endif // wxUSE_TOOLTIPS | |
195df7a7 VZ |
148 | void OnSetFgCol(wxCommandEvent& event); |
149 | void OnSetBgCol(wxCommandEvent& event); | |
822b9009 | 150 | void OnSetFont(wxCommandEvent& event); |
a17c1df4 | 151 | void OnEnable(wxCommandEvent& event); |
1301e228 | 152 | void OnSetBorder(wxCommandEvent& event); |
e32bcef6 VZ |
153 | |
154 | void OnToggleGlobalBusyCursor(wxCommandEvent& event); | |
155 | void OnToggleBusyCursor(wxCommandEvent& event); | |
195df7a7 | 156 | #endif // wxUSE_MENUS |
32b8ec41 | 157 | |
61c083e7 WS |
158 | // initialize the book: add all pages to it |
159 | void InitBook(); | |
32b8ec41 | 160 | |
3e859739 | 161 | // return the currently selected page (never NULL) |
f2fdc4d5 WS |
162 | WidgetsPage *CurrentPage(); |
163 | ||
32b8ec41 VZ |
164 | private: |
165 | // the panel containing everything | |
166 | wxPanel *m_panel; | |
167 | ||
49abcb2f | 168 | #if USE_LOG |
32b8ec41 VZ |
169 | // the listbox for logging messages |
170 | wxListBox *m_lboxLog; | |
171 | ||
172 | // the log target we use to redirect messages to the listbox | |
173 | wxLog *m_logTarget; | |
49abcb2f | 174 | #endif // USE_LOG |
32b8ec41 | 175 | |
61c083e7 | 176 | // the book containing the test pages |
f2fdc4d5 | 177 | WidgetsBookCtrl *m_book; |
32b8ec41 | 178 | |
195df7a7 | 179 | #if wxUSE_MENUS |
822b9009 | 180 | // last chosen fg/bg colours and font |
195df7a7 VZ |
181 | wxColour m_colFg, |
182 | m_colBg; | |
822b9009 | 183 | wxFont m_font; |
195df7a7 VZ |
184 | #endif // wxUSE_MENUS |
185 | ||
be5a51fb | 186 | // any class wishing to process wxWidgets events must use this macro |
32b8ec41 VZ |
187 | DECLARE_EVENT_TABLE() |
188 | }; | |
189 | ||
49abcb2f | 190 | #if USE_LOG |
32b8ec41 VZ |
191 | // A log target which just redirects the messages to a listbox |
192 | class LboxLogger : public wxLog | |
193 | { | |
194 | public: | |
195 | LboxLogger(wxListBox *lbox, wxLog *logOld) | |
196 | { | |
197 | m_lbox = lbox; | |
198 | //m_lbox->Disable(); -- looks ugly under MSW | |
199 | m_logOld = logOld; | |
200 | } | |
201 | ||
202 | virtual ~LboxLogger() | |
203 | { | |
204 | wxLog::SetActiveTarget(m_logOld); | |
205 | } | |
206 | ||
207 | private: | |
208 | // implement sink functions | |
8c714e06 | 209 | virtual void DoLog(wxLogLevel level, const wxString& str, time_t t) |
32b8ec41 VZ |
210 | { |
211 | // don't put trace messages into listbox or we can get into infinite | |
212 | // recursion | |
213 | if ( level == wxLOG_Trace ) | |
214 | { | |
215 | if ( m_logOld ) | |
216 | { | |
217 | // cast is needed to call protected method | |
8c714e06 | 218 | ((LboxLogger *)m_logOld)->DoLog(level, str, t); |
32b8ec41 VZ |
219 | } |
220 | } | |
221 | else | |
222 | { | |
8c714e06 | 223 | wxLog::DoLog(level, str, t); |
32b8ec41 VZ |
224 | } |
225 | } | |
226 | ||
8c714e06 | 227 | virtual void DoLogString(const wxString& str, time_t WXUNUSED(t)) |
32b8ec41 VZ |
228 | { |
229 | wxString msg; | |
230 | TimeStamp(&msg); | |
8c714e06 | 231 | msg += str; |
32b8ec41 VZ |
232 | |
233 | #ifdef __WXUNIVERSAL__ | |
234 | m_lbox->AppendAndEnsureVisible(msg); | |
235 | #else // other ports don't have this method yet | |
236 | m_lbox->Append(msg); | |
237 | m_lbox->SetFirstItem(m_lbox->GetCount() - 1); | |
238 | #endif | |
239 | } | |
240 | ||
241 | // the control we use | |
242 | wxListBox *m_lbox; | |
243 | ||
244 | // the old log target | |
245 | wxLog *m_logOld; | |
246 | }; | |
49abcb2f | 247 | #endif // USE_LOG |
32b8ec41 VZ |
248 | |
249 | // array of pages | |
38d6b957 | 250 | WX_DEFINE_ARRAY_PTR(WidgetsPage *, ArrayWidgetsPage); |
32b8ec41 VZ |
251 | |
252 | // ---------------------------------------------------------------------------- | |
253 | // misc macros | |
254 | // ---------------------------------------------------------------------------- | |
255 | ||
256 | IMPLEMENT_APP(WidgetsApp) | |
257 | ||
32b8ec41 VZ |
258 | // ---------------------------------------------------------------------------- |
259 | // event tables | |
260 | // ---------------------------------------------------------------------------- | |
261 | ||
262 | BEGIN_EVENT_TABLE(WidgetsFrame, wxFrame) | |
49abcb2f | 263 | #if USE_LOG |
32b8ec41 | 264 | EVT_BUTTON(Widgets_ClearLog, WidgetsFrame::OnButtonClearLog) |
49abcb2f | 265 | #endif // USE_LOG |
195df7a7 VZ |
266 | EVT_BUTTON(Widgets_Quit, WidgetsFrame::OnExit) |
267 | ||
1c01dd16 VZ |
268 | #if wxUSE_TOOLTIPS |
269 | EVT_MENU(Widgets_SetTooltip, WidgetsFrame::OnSetTooltip) | |
270 | #endif // wxUSE_TOOLTIPS | |
271 | ||
3700e21b | 272 | #if wxUSE_MENUS |
3e859739 | 273 | EVT_WIDGETS_PAGE_CHANGING(wxID_ANY, WidgetsFrame::OnPageChanging) |
3700e21b VZ |
274 | EVT_MENU_RANGE(Widgets_GoToPage, Widgets_GoToPageLast, |
275 | WidgetsFrame::OnGoToPage) | |
276 | ||
195df7a7 VZ |
277 | EVT_MENU(Widgets_SetFgColour, WidgetsFrame::OnSetFgCol) |
278 | EVT_MENU(Widgets_SetBgColour, WidgetsFrame::OnSetBgCol) | |
822b9009 | 279 | EVT_MENU(Widgets_SetFont, WidgetsFrame::OnSetFont) |
a17c1df4 | 280 | EVT_MENU(Widgets_Enable, WidgetsFrame::OnEnable) |
1c01dd16 | 281 | |
1301e228 VZ |
282 | EVT_MENU_RANGE(Widgets_BorderNone, Widgets_BorderDefault, |
283 | WidgetsFrame::OnSetBorder) | |
284 | ||
e32bcef6 VZ |
285 | EVT_MENU(Widgets_GlobalBusyCursor, WidgetsFrame::OnToggleGlobalBusyCursor) |
286 | EVT_MENU(Widgets_BusyCursor, WidgetsFrame::OnToggleBusyCursor) | |
287 | ||
1c01dd16 | 288 | EVT_MENU(wxID_EXIT, WidgetsFrame::OnExit) |
3700e21b | 289 | #endif // wxUSE_MENUS |
32b8ec41 VZ |
290 | END_EVENT_TABLE() |
291 | ||
292 | // ============================================================================ | |
293 | // implementation | |
294 | // ============================================================================ | |
295 | ||
296 | // ---------------------------------------------------------------------------- | |
297 | // app class | |
298 | // ---------------------------------------------------------------------------- | |
299 | ||
300 | bool WidgetsApp::OnInit() | |
301 | { | |
bf188f1a | 302 | if ( !wxApp::OnInit() ) |
206d3a16 | 303 | return false; |
1bdd1007 | 304 | |
32b8ec41 VZ |
305 | // the reason for having these ifdef's is that I often run two copies of |
306 | // this sample side by side and it is useful to see which one is which | |
24e78d27 | 307 | wxString title; |
32b8ec41 | 308 | #if defined(__WXUNIVERSAL__) |
085a1f3c | 309 | title = _T("wxUniv/"); |
24e78d27 VZ |
310 | #endif |
311 | ||
312 | #if defined(__WXMSW__) | |
313 | title += _T("wxMSW"); | |
32b8ec41 | 314 | #elif defined(__WXGTK__) |
24e78d27 | 315 | title += _T("wxGTK"); |
0f9390c3 GD |
316 | #elif defined(__WXMAC__) |
317 | title += _T("wxMAC"); | |
318 | #elif defined(__WXMOTIF__) | |
319 | title += _T("wxMOTIF"); | |
32b8ec41 | 320 | #else |
be5a51fb | 321 | title += _T("wxWidgets"); |
32b8ec41 | 322 | #endif |
32b8ec41 VZ |
323 | |
324 | wxFrame *frame = new WidgetsFrame(title + _T(" widgets demo")); | |
325 | frame->Show(); | |
326 | ||
327 | //wxLog::AddTraceMask(_T("listbox")); | |
328 | //wxLog::AddTraceMask(_T("scrollbar")); | |
58ec2255 | 329 | //wxLog::AddTraceMask(_T("focus")); |
32b8ec41 | 330 | |
206d3a16 | 331 | return true; |
32b8ec41 VZ |
332 | } |
333 | ||
334 | // ---------------------------------------------------------------------------- | |
335 | // WidgetsFrame construction | |
336 | // ---------------------------------------------------------------------------- | |
337 | ||
338 | WidgetsFrame::WidgetsFrame(const wxString& title) | |
1e3fc113 | 339 | : wxFrame(NULL, wxID_ANY, title) |
32b8ec41 | 340 | { |
f2fdc4d5 WS |
341 | // set the frame icon |
342 | SetIcon(wxICON(sample)); | |
343 | ||
32b8ec41 | 344 | // init everything |
49abcb2f | 345 | #if USE_LOG |
32b8ec41 VZ |
346 | m_lboxLog = (wxListBox *)NULL; |
347 | m_logTarget = (wxLog *)NULL; | |
49abcb2f | 348 | #endif // USE_LOG |
f2fdc4d5 | 349 | m_book = (WidgetsBookCtrl *)NULL; |
32b8ec41 | 350 | |
195df7a7 VZ |
351 | #if wxUSE_MENUS |
352 | // create the menubar | |
353 | wxMenuBar *mbar = new wxMenuBar; | |
354 | wxMenu *menuWidget = new wxMenu; | |
1c01dd16 VZ |
355 | #if wxUSE_TOOLTIPS |
356 | menuWidget->Append(Widgets_SetTooltip, _T("Set &tooltip...\tCtrl-T")); | |
357 | menuWidget->AppendSeparator(); | |
358 | #endif // wxUSE_TOOLTIPS | |
195df7a7 VZ |
359 | menuWidget->Append(Widgets_SetFgColour, _T("Set &foreground...\tCtrl-F")); |
360 | menuWidget->Append(Widgets_SetBgColour, _T("Set &background...\tCtrl-B")); | |
822b9009 | 361 | menuWidget->Append(Widgets_SetFont, _T("Set f&ont...\tCtrl-O")); |
a17c1df4 | 362 | menuWidget->AppendCheckItem(Widgets_Enable, _T("&Enable/disable\tCtrl-E")); |
1301e228 VZ |
363 | |
364 | wxMenu *menuBorders = new wxMenu; | |
365 | menuBorders->AppendRadioItem(Widgets_BorderDefault, _T("De&fault\tCtrl-Shift-9")); | |
366 | menuBorders->AppendRadioItem(Widgets_BorderNone, _T("&None\tCtrl-Shift-0")); | |
367 | menuBorders->AppendRadioItem(Widgets_BorderSimple, _T("&Simple\tCtrl-Shift-1")); | |
368 | menuBorders->AppendRadioItem(Widgets_BorderDouble, _T("&Double\tCtrl-Shift-2")); | |
369 | menuBorders->AppendRadioItem(Widgets_BorderStatic, _T("Stati&c\tCtrl-Shift-3")); | |
370 | menuBorders->AppendRadioItem(Widgets_BorderRaised, _T("&Raised\tCtrl-Shift-4")); | |
371 | menuBorders->AppendRadioItem(Widgets_BorderSunken, _T("S&unken\tCtrl-Shift-5")); | |
372 | menuWidget->AppendSubMenu(menuBorders, _T("Set &border")); | |
373 | ||
e32bcef6 VZ |
374 | menuWidget->AppendSeparator(); |
375 | menuWidget->AppendCheckItem(Widgets_GlobalBusyCursor, | |
376 | _T("Toggle &global busy cursor\tCtrl-Shift-U")); | |
377 | menuWidget->AppendCheckItem(Widgets_BusyCursor, | |
378 | _T("Toggle b&usy cursor\tCtrl-U")); | |
379 | ||
195df7a7 VZ |
380 | menuWidget->AppendSeparator(); |
381 | menuWidget->Append(wxID_EXIT, _T("&Quit\tCtrl-Q")); | |
382 | mbar->Append(menuWidget, _T("&Widget")); | |
383 | SetMenuBar(mbar); | |
a17c1df4 VZ |
384 | |
385 | mbar->Check(Widgets_Enable, true); | |
195df7a7 VZ |
386 | #endif // wxUSE_MENUS |
387 | ||
32b8ec41 | 388 | // create controls |
1e3fc113 | 389 | m_panel = new wxPanel(this, wxID_ANY); |
32b8ec41 VZ |
390 | |
391 | wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL); | |
392 | ||
25057aba | 393 | // we have 2 panes: book with pages demonstrating the controls in the |
32b8ec41 | 394 | // upper one and the log window with some buttons in the lower |
1bdd1007 | 395 | |
1e3fc113 | 396 | int style = wxBK_DEFAULT; |
25057aba | 397 | // Uncomment to suppress page theme (draw in solid colour) |
8c9f8f91 | 398 | //style |= wxNB_NOPAGETHEME; |
32b8ec41 | 399 | |
f2fdc4d5 | 400 | m_book = new WidgetsBookCtrl(m_panel, Widgets_BookCtrl, wxDefaultPosition, |
6bae6726 | 401 | #ifdef __WXMOTIF__ |
2ddb4d13 | 402 | wxSize(500, wxDefaultCoord), // under Motif, height is a function of the width... |
6bae6726 MB |
403 | #else |
404 | wxDefaultSize, | |
405 | #endif | |
406 | style); | |
61c083e7 | 407 | InitBook(); |
32b8ec41 | 408 | |
261357eb | 409 | #ifndef __WXHANDHELD__ |
32b8ec41 | 410 | // the lower one only has the log listbox and a button to clear it |
49abcb2f | 411 | #if USE_LOG |
206d3a16 JS |
412 | wxSizer *sizerDown = new wxStaticBoxSizer( |
413 | new wxStaticBox( m_panel, wxID_ANY, _T("&Log window") ), | |
414 | wxVERTICAL); | |
415 | ||
416 | m_lboxLog = new wxListBox(m_panel, wxID_ANY); | |
32b8ec41 | 417 | sizerDown->Add(m_lboxLog, 1, wxGROW | wxALL, 5); |
7b127900 | 418 | sizerDown->SetMinSize(100, 150); |
b29903d4 WS |
419 | #else |
420 | wxSizer *sizerDown = new wxBoxSizer(wxVERTICAL); | |
49abcb2f | 421 | #endif // USE_LOG |
88633ca7 | 422 | |
32b8ec41 | 423 | wxBoxSizer *sizerBtns = new wxBoxSizer(wxHORIZONTAL); |
b29903d4 | 424 | wxButton *btn; |
49abcb2f | 425 | #if USE_LOG |
b29903d4 | 426 | btn = new wxButton(m_panel, Widgets_ClearLog, _T("Clear &log")); |
32b8ec41 VZ |
427 | sizerBtns->Add(btn); |
428 | sizerBtns->Add(10, 0); // spacer | |
49abcb2f | 429 | #endif // USE_LOG |
32b8ec41 VZ |
430 | btn = new wxButton(m_panel, Widgets_Quit, _T("E&xit")); |
431 | sizerBtns->Add(btn); | |
432 | sizerDown->Add(sizerBtns, 0, wxALL | wxALIGN_RIGHT, 5); | |
433 | ||
434 | // put everything together | |
61c083e7 | 435 | sizerTop->Add(m_book, 1, wxGROW | (wxALL & ~(wxTOP | wxBOTTOM)), 10); |
32b8ec41 VZ |
436 | sizerTop->Add(0, 5, 0, wxGROW); // spacer in between |
437 | sizerTop->Add(sizerDown, 0, wxGROW | (wxALL & ~wxTOP), 10); | |
438 | ||
261357eb | 439 | #else // !__WXHANDHELD__/__WXHANDHELD__ |
49abcb2f WS |
440 | |
441 | sizerTop->Add(m_book, 1, wxGROW | wxALL ); | |
442 | ||
261357eb | 443 | #endif // __WXHANDHELD__ |
49abcb2f | 444 | |
32b8ec41 VZ |
445 | m_panel->SetSizer(sizerTop); |
446 | ||
447 | sizerTop->Fit(this); | |
448 | sizerTop->SetSizeHints(this); | |
449 | ||
49abcb2f | 450 | #if USE_LOG && !defined(__WXCOCOA__) |
7bb70733 | 451 | // wxCocoa's listbox is too flakey to use for logging right now |
32b8ec41 VZ |
452 | // now that everything is created we can redirect the log messages to the |
453 | // listbox | |
454 | m_logTarget = new LboxLogger(m_lboxLog, wxLog::GetActiveTarget()); | |
455 | wxLog::SetActiveTarget(m_logTarget); | |
b29903d4 | 456 | #endif |
32b8ec41 VZ |
457 | } |
458 | ||
61c083e7 | 459 | void WidgetsFrame::InitBook() |
32b8ec41 | 460 | { |
261357eb | 461 | #if USE_ICONS_IN_BOOK |
993b016d | 462 | wxImageList *imageList = new wxImageList(ICON_SIZE, ICON_SIZE); |
32b8ec41 | 463 | |
993b016d VZ |
464 | wxImage img(sample_xpm); |
465 | imageList->Add(wxBitmap(img.Scale(ICON_SIZE, ICON_SIZE))); | |
261357eb WS |
466 | #else |
467 | wxImageList *imageList = NULL; | |
468 | #endif | |
f2fdc4d5 WS |
469 | |
470 | #if !USE_TREEBOOK | |
471 | WidgetsBookCtrl *books[MAX_PAGES]; | |
472 | #endif | |
473 | ||
474 | ArrayWidgetsPage pages[MAX_PAGES]; | |
475 | wxArrayString labels[MAX_PAGES]; | |
32b8ec41 | 476 | |
3700e21b | 477 | wxMenu *menuPages = new wxMenu; |
f2fdc4d5 WS |
478 | unsigned int nPage = 0, nFKey = 0; |
479 | int cat, imageId = 1; | |
3700e21b | 480 | |
61c083e7 | 481 | // we need to first create all pages and only then add them to the book |
32b8ec41 | 482 | // as we need the image list first |
3700e21b VZ |
483 | // |
484 | // we also construct the pages menu during this first iteration | |
f2fdc4d5 | 485 | for ( cat = 0; cat < MAX_PAGES; cat++ ) |
32b8ec41 | 486 | { |
f2fdc4d5 WS |
487 | #if USE_TREEBOOK |
488 | nPage++; // increase for parent page | |
489 | #else | |
261357eb WS |
490 | books[cat] = new WidgetsBookCtrl(m_book, |
491 | wxID_ANY, | |
492 | wxDefaultPosition, | |
493 | wxDefaultSize, | |
895cc205 | 494 | wxBK_DEFAULT); |
f2fdc4d5 WS |
495 | #endif |
496 | ||
497 | for ( WidgetsPageInfo *info = WidgetsPage::ms_widgetPages; | |
498 | info; | |
499 | info = info->GetNext() ) | |
500 | { | |
501 | if( (info->GetCategories() & ( 1 << cat )) == 0) | |
502 | continue; | |
503 | ||
504 | WidgetsPage *page = (*info->GetCtor())( | |
505 | #if USE_TREEBOOK | |
506 | m_book | |
507 | #else | |
508 | books[cat] | |
509 | #endif | |
510 | , imageList); | |
511 | pages[cat].Add(page); | |
512 | ||
513 | labels[cat].Add(info->GetLabel()); | |
514 | if ( cat == ALL_PAGE ) | |
515 | { | |
516 | wxString radioLabel(info->GetLabel()); | |
517 | nFKey++; | |
518 | if ( nFKey <= 12 ) | |
519 | { | |
520 | radioLabel << wxT("\tF" ) << nFKey; | |
521 | } | |
522 | ||
523 | menuPages->AppendRadioItem( | |
524 | Widgets_GoToPage + nPage, | |
525 | radioLabel | |
526 | ); | |
527 | #if !USE_TREEBOOK | |
528 | // consider only for book in book architecture | |
529 | nPage++; | |
530 | #endif | |
531 | } | |
532 | ||
533 | #if USE_TREEBOOK | |
534 | // consider only for treebook architecture (with subpages) | |
535 | nPage++; | |
536 | #endif | |
537 | } | |
32b8ec41 VZ |
538 | } |
539 | ||
3700e21b VZ |
540 | GetMenuBar()->Append(menuPages, _T("&Page")); |
541 | ||
261357eb | 542 | #if USE_ICONS_IN_BOOK |
f2fdc4d5 | 543 | m_book->AssignImageList(imageList); |
261357eb | 544 | #endif |
32b8ec41 | 545 | |
f2fdc4d5 | 546 | for ( cat = 0; cat < MAX_PAGES; cat++ ) |
32b8ec41 | 547 | { |
f2fdc4d5 WS |
548 | #if USE_TREEBOOK |
549 | m_book->AddPage(NULL,WidgetsCategories[cat],false,0); | |
550 | #else | |
551 | m_book->AddPage(books[cat],WidgetsCategories[cat],false,0); | |
261357eb | 552 | #if USE_ICONS_IN_BOOK |
f2fdc4d5 | 553 | books[cat]->SetImageList(imageList); |
261357eb | 554 | #endif |
f2fdc4d5 WS |
555 | #endif |
556 | ||
557 | // now do add them | |
558 | size_t count = pages[cat].GetCount(); | |
559 | for ( size_t n = 0; n < count; n++ ) | |
560 | { | |
561 | #if USE_TREEBOOK | |
3e859739 | 562 | m_book->AddSubPage |
f2fdc4d5 | 563 | #else |
3e859739 | 564 | books[cat]->AddPage |
f2fdc4d5 | 565 | #endif |
3e859739 | 566 | ( |
f2fdc4d5 WS |
567 | pages[cat][n], |
568 | labels[cat][n], | |
569 | false, // don't select | |
570 | imageId++ | |
571 | ); | |
572 | } | |
32b8ec41 | 573 | } |
f2fdc4d5 | 574 | |
0cebbfc2 WS |
575 | Connect( wxID_ANY, |
576 | wxEVT_COMMAND_WIDGETS_PAGE_CHANGED, | |
577 | wxWidgetsbookEventHandler(WidgetsFrame::OnPageChanged) ); | |
578 | ||
f2fdc4d5 | 579 | #if USE_TREEBOOK |
3e859739 VZ |
580 | // for treebook page #0 is empty parent page only so select the first page |
581 | // with some contents | |
f2fdc4d5 | 582 | m_book->SetSelection(1); |
3e859739 VZ |
583 | |
584 | // but ensure that the top of the tree is shown nevertheless | |
585 | wxTreeCtrl * const tree = m_book->GetTreeCtrl(); | |
23c2b62b VZ |
586 | |
587 | wxTreeItemIdValue cookie; | |
588 | tree->EnsureVisible(tree->GetFirstChild(tree->GetRootItem(), cookie)); | |
0cebbfc2 WS |
589 | #else |
590 | // for other books set selection twice to force connected event handler | |
591 | // to force lazy creation of initial visible content | |
592 | m_book->SetSelection(1); | |
593 | m_book->SetSelection(0); | |
3e859739 | 594 | #endif // USE_TREEBOOK |
f2fdc4d5 WS |
595 | } |
596 | ||
597 | WidgetsPage *WidgetsFrame::CurrentPage() | |
598 | { | |
453535a7 | 599 | wxWindow *page = m_book->GetCurrentPage(); |
453535a7 | 600 | |
3e859739 | 601 | #if !USE_TREEBOOK |
453535a7 | 602 | WidgetsBookCtrl *subBook = wxStaticCast(page, WidgetsBookCtrl); |
3e859739 VZ |
603 | wxCHECK_MSG( subBook, NULL, _T("no WidgetsBookCtrl?") ); |
604 | ||
453535a7 | 605 | page = subBook->GetCurrentPage(); |
3e859739 VZ |
606 | #endif // !USE_TREEBOOK |
607 | ||
453535a7 | 608 | return wxStaticCast(page, WidgetsPage); |
32b8ec41 VZ |
609 | } |
610 | ||
611 | WidgetsFrame::~WidgetsFrame() | |
612 | { | |
49abcb2f | 613 | #if USE_LOG |
32b8ec41 | 614 | delete m_logTarget; |
49abcb2f | 615 | #endif // USE_LOG |
32b8ec41 VZ |
616 | } |
617 | ||
618 | // ---------------------------------------------------------------------------- | |
619 | // WidgetsFrame event handlers | |
620 | // ---------------------------------------------------------------------------- | |
621 | ||
195df7a7 | 622 | void WidgetsFrame::OnExit(wxCommandEvent& WXUNUSED(event)) |
32b8ec41 VZ |
623 | { |
624 | Close(); | |
625 | } | |
626 | ||
49abcb2f | 627 | #if USE_LOG |
c02e5a31 | 628 | void WidgetsFrame::OnButtonClearLog(wxCommandEvent& WXUNUSED(event)) |
32b8ec41 VZ |
629 | { |
630 | m_lboxLog->Clear(); | |
631 | } | |
49abcb2f | 632 | #endif // USE_LOG |
32b8ec41 | 633 | |
195df7a7 VZ |
634 | #if wxUSE_MENUS |
635 | ||
3e859739 VZ |
636 | void WidgetsFrame::OnPageChanging(WidgetsBookCtrlEvent& event) |
637 | { | |
0cebbfc2 WS |
638 | #if USE_TREEBOOK |
639 | // don't allow selection of entries without pages (categories) | |
3e859739 VZ |
640 | if ( !m_book->GetPage(event.GetSelection()) ) |
641 | event.Veto(); | |
b2b98dfd WS |
642 | #else |
643 | wxUnusedVar(event); | |
0cebbfc2 | 644 | #endif |
3e859739 VZ |
645 | } |
646 | ||
f2fdc4d5 | 647 | void WidgetsFrame::OnPageChanged(WidgetsBookCtrlEvent& event) |
3700e21b | 648 | { |
3e859739 VZ |
649 | const int sel = event.GetSelection(); |
650 | ||
453535a7 | 651 | // adjust "Page" menu selection |
3e859739 VZ |
652 | wxMenuItem *item = GetMenuBar()->FindItem(Widgets_GoToPage + sel); |
653 | if ( item ) | |
654 | item->Check(); | |
453535a7 | 655 | |
fe24a945 VZ |
656 | GetMenuBar()->Check(Widgets_BusyCursor, false); |
657 | ||
be16b859 VZ |
658 | // create the pages on demand, otherwise the sample startup is too slow as |
659 | // it creates hundreds of controls | |
3e859739 VZ |
660 | WidgetsPage *page = CurrentPage(); |
661 | if ( page->GetChildren().empty() ) | |
453535a7 WS |
662 | { |
663 | wxWindowUpdateLocker noUpdates(page); | |
664 | page->CreateContent(); | |
be16b859 VZ |
665 | //page->Layout(); |
666 | page->GetSizer()->Fit(page); | |
667 | ||
453535a7 WS |
668 | WidgetsBookCtrl *book = wxStaticCast(page->GetParent(), WidgetsBookCtrl); |
669 | wxSize size; | |
670 | for ( size_t i = 0; i < book->GetPageCount(); ++i ) | |
671 | { | |
672 | wxWindow *page = book->GetPage(i); | |
3e859739 | 673 | if ( page ) |
453535a7 WS |
674 | { |
675 | size.IncTo(page->GetSize()); | |
676 | } | |
677 | } | |
678 | page->SetSize(size); | |
679 | } | |
680 | ||
3700e21b VZ |
681 | event.Skip(); |
682 | } | |
683 | ||
684 | void WidgetsFrame::OnGoToPage(wxCommandEvent& event) | |
685 | { | |
f2fdc4d5 | 686 | #if USE_TREEBOOK |
3700e21b | 687 | m_book->SetSelection(event.GetId() - Widgets_GoToPage); |
f2fdc4d5 WS |
688 | #else |
689 | m_book->SetSelection(m_book->GetPageCount()-1); | |
690 | WidgetsBookCtrl *book = wxStaticCast(m_book->GetCurrentPage(), WidgetsBookCtrl); | |
691 | book->SetSelection(event.GetId() - Widgets_GoToPage); | |
692 | #endif | |
3700e21b VZ |
693 | } |
694 | ||
1c01dd16 VZ |
695 | #if wxUSE_TOOLTIPS |
696 | ||
697 | void WidgetsFrame::OnSetTooltip(wxCommandEvent& WXUNUSED(event)) | |
698 | { | |
699 | static wxString s_tip = _T("This is a tooltip"); | |
700 | ||
60c84f85 VZ |
701 | wxTextEntryDialog dialog |
702 | ( | |
703 | this, | |
704 | _T("Tooltip text (may use \\n, leave empty to remove): "), | |
705 | _T("Widgets sample"), | |
706 | s_tip | |
707 | ); | |
708 | ||
709 | if ( dialog.ShowModal() != wxID_OK ) | |
1c01dd16 VZ |
710 | return; |
711 | ||
60c84f85 | 712 | s_tip = dialog.GetValue(); |
0c113874 | 713 | s_tip.Replace(_T("\\n"), _T("\n")); |
bd018e7e | 714 | |
3e859739 VZ |
715 | WidgetsPage *page = CurrentPage(); |
716 | ||
60c84f85 | 717 | page->GetWidget()->SetToolTip(s_tip); |
1c01dd16 VZ |
718 | |
719 | wxControl *ctrl2 = page->GetWidget2(); | |
720 | if ( ctrl2 ) | |
60c84f85 | 721 | ctrl2->SetToolTip(s_tip); |
1c01dd16 VZ |
722 | } |
723 | ||
724 | #endif // wxUSE_TOOLTIPS | |
725 | ||
195df7a7 VZ |
726 | void WidgetsFrame::OnSetFgCol(wxCommandEvent& WXUNUSED(event)) |
727 | { | |
923f4e79 | 728 | #if wxUSE_COLOURDLG |
822b9009 | 729 | // allow for debugging the default colour the first time this is called |
f2fdc4d5 | 730 | WidgetsPage *page = CurrentPage(); |
63da71ba | 731 | |
822b9009 VZ |
732 | if (!m_colFg.Ok()) |
733 | m_colFg = page->GetForegroundColour(); | |
734 | ||
195df7a7 VZ |
735 | wxColour col = wxGetColourFromUser(this, m_colFg); |
736 | if ( !col.Ok() ) | |
737 | return; | |
738 | ||
739 | m_colFg = col; | |
740 | ||
195df7a7 | 741 | page->GetWidget()->SetForegroundColour(m_colFg); |
750972ab | 742 | page->GetWidget()->Refresh(); |
1c01dd16 VZ |
743 | |
744 | wxControl *ctrl2 = page->GetWidget2(); | |
745 | if ( ctrl2 ) | |
746 | { | |
747 | ctrl2->SetForegroundColour(m_colFg); | |
748 | ctrl2->Refresh(); | |
749 | } | |
923f4e79 | 750 | #else |
1c01dd16 | 751 | wxLogMessage(_T("Colour selection dialog not available in current build.")); |
923f4e79 | 752 | #endif |
195df7a7 VZ |
753 | } |
754 | ||
755 | void WidgetsFrame::OnSetBgCol(wxCommandEvent& WXUNUSED(event)) | |
756 | { | |
923f4e79 | 757 | #if wxUSE_COLOURDLG |
f2fdc4d5 | 758 | WidgetsPage *page = CurrentPage(); |
63da71ba | 759 | |
822b9009 VZ |
760 | if ( !m_colBg.Ok() ) |
761 | m_colBg = page->GetBackgroundColour(); | |
762 | ||
195df7a7 VZ |
763 | wxColour col = wxGetColourFromUser(this, m_colBg); |
764 | if ( !col.Ok() ) | |
765 | return; | |
766 | ||
767 | m_colBg = col; | |
768 | ||
195df7a7 | 769 | page->GetWidget()->SetBackgroundColour(m_colBg); |
750972ab | 770 | page->GetWidget()->Refresh(); |
1c01dd16 VZ |
771 | |
772 | wxControl *ctrl2 = page->GetWidget2(); | |
773 | if ( ctrl2 ) | |
774 | { | |
775 | ctrl2->SetBackgroundColour(m_colFg); | |
776 | ctrl2->Refresh(); | |
777 | } | |
923f4e79 | 778 | #else |
1c01dd16 | 779 | wxLogMessage(_T("Colour selection dialog not available in current build.")); |
923f4e79 | 780 | #endif |
195df7a7 VZ |
781 | } |
782 | ||
822b9009 VZ |
783 | void WidgetsFrame::OnSetFont(wxCommandEvent& WXUNUSED(event)) |
784 | { | |
785 | #if wxUSE_FONTDLG | |
f2fdc4d5 | 786 | WidgetsPage *page = CurrentPage(); |
63da71ba | 787 | |
822b9009 VZ |
788 | if (!m_font.Ok()) |
789 | m_font = page->GetFont(); | |
790 | ||
791 | wxFont font = wxGetFontFromUser(this, m_font); | |
792 | if ( !font.Ok() ) | |
793 | return; | |
794 | ||
795 | m_font = font; | |
796 | ||
797 | page->GetWidget()->SetFont(m_font); | |
798 | page->GetWidget()->Refresh(); | |
799 | ||
800 | wxControl *ctrl2 = page->GetWidget2(); | |
801 | if ( ctrl2 ) | |
802 | { | |
803 | ctrl2->SetFont(m_font); | |
804 | ctrl2->Refresh(); | |
805 | } | |
806 | #else | |
807 | wxLogMessage(_T("Font selection dialog not available in current build.")); | |
808 | #endif | |
809 | } | |
810 | ||
a17c1df4 VZ |
811 | void WidgetsFrame::OnEnable(wxCommandEvent& event) |
812 | { | |
3e859739 | 813 | CurrentPage()->GetWidget()->Enable(event.IsChecked()); |
a17c1df4 VZ |
814 | } |
815 | ||
1301e228 VZ |
816 | void WidgetsFrame::OnSetBorder(wxCommandEvent& event) |
817 | { | |
818 | int border; | |
819 | switch ( event.GetId() ) | |
820 | { | |
821 | case Widgets_BorderNone: border = wxBORDER_NONE; break; | |
822 | case Widgets_BorderStatic: border = wxBORDER_STATIC; break; | |
823 | case Widgets_BorderSimple: border = wxBORDER_SIMPLE; break; | |
824 | case Widgets_BorderRaised: border = wxBORDER_RAISED; break; | |
825 | case Widgets_BorderSunken: border = wxBORDER_SUNKEN; break; | |
826 | case Widgets_BorderDouble: border = wxBORDER_DOUBLE; break; | |
827 | ||
828 | default: | |
829 | wxFAIL_MSG( _T("unknown border style") ); | |
830 | // fall through | |
831 | ||
832 | case Widgets_BorderDefault: border = wxBORDER_DEFAULT; break; | |
833 | } | |
834 | ||
835 | WidgetsPage::ms_defaultFlags &= ~wxBORDER_MASK; | |
836 | WidgetsPage::ms_defaultFlags |= border; | |
837 | ||
f2fdc4d5 | 838 | WidgetsPage *page = CurrentPage(); |
63da71ba | 839 | |
1301e228 VZ |
840 | page->RecreateWidget(); |
841 | } | |
842 | ||
e32bcef6 VZ |
843 | void WidgetsFrame::OnToggleGlobalBusyCursor(wxCommandEvent& event) |
844 | { | |
845 | if ( event.IsChecked() ) | |
846 | wxBeginBusyCursor(); | |
847 | else | |
848 | wxEndBusyCursor(); | |
849 | } | |
850 | ||
851 | void WidgetsFrame::OnToggleBusyCursor(wxCommandEvent& event) | |
852 | { | |
3e859739 VZ |
853 | CurrentPage()->GetWidget()->SetCursor(*(event.IsChecked() |
854 | ? wxHOURGLASS_CURSOR | |
855 | : wxSTANDARD_CURSOR)); | |
e32bcef6 VZ |
856 | } |
857 | ||
195df7a7 VZ |
858 | #endif // wxUSE_MENUS |
859 | ||
32b8ec41 VZ |
860 | // ---------------------------------------------------------------------------- |
861 | // WidgetsPageInfo | |
862 | // ---------------------------------------------------------------------------- | |
863 | ||
f2fdc4d5 | 864 | WidgetsPageInfo::WidgetsPageInfo(Constructor ctor, const wxChar *label, int categories) |
32b8ec41 | 865 | : m_label(label) |
f2fdc4d5 | 866 | , m_categories(categories) |
32b8ec41 VZ |
867 | { |
868 | m_ctor = ctor; | |
869 | ||
2673bcb0 DS |
870 | m_next = NULL; |
871 | ||
fdfe568d | 872 | // dummy sorting: add and immediately sort in the list according to label |
3700e21b | 873 | if ( WidgetsPage::ms_widgetPages ) |
2673bcb0 DS |
874 | { |
875 | WidgetsPageInfo *node_prev = WidgetsPage::ms_widgetPages; | |
fdfe568d | 876 | if ( wxStrcmp(label, node_prev->GetLabel().c_str()) < 0 ) |
2673bcb0 DS |
877 | { |
878 | // add as first | |
879 | m_next = node_prev; | |
880 | WidgetsPage::ms_widgetPages = this; | |
881 | } | |
882 | else | |
883 | { | |
884 | WidgetsPageInfo *node_next; | |
885 | do | |
886 | { | |
887 | node_next = node_prev->GetNext(); | |
fdfe568d | 888 | if ( node_next ) |
2673bcb0 DS |
889 | { |
890 | // add if between two | |
fdfe568d | 891 | if ( wxStrcmp(label, node_next->GetLabel().c_str()) < 0 ) |
2673bcb0 DS |
892 | { |
893 | node_prev->SetNext(this); | |
894 | m_next = node_next; | |
895 | // force to break loop | |
896 | node_next = NULL; | |
897 | } | |
898 | } | |
899 | else | |
900 | { | |
901 | // add as last | |
902 | node_prev->SetNext(this); | |
903 | m_next = node_next; | |
904 | } | |
905 | node_prev = node_next; | |
fdfe568d VZ |
906 | } |
907 | while ( node_next ); | |
2673bcb0 DS |
908 | } |
909 | } | |
910 | else | |
911 | { | |
912 | // add when first | |
2673bcb0 | 913 | WidgetsPage::ms_widgetPages = this; |
2673bcb0 | 914 | } |
32b8ec41 VZ |
915 | } |
916 | ||
917 | // ---------------------------------------------------------------------------- | |
918 | // WidgetsPage | |
919 | // ---------------------------------------------------------------------------- | |
920 | ||
1301e228 VZ |
921 | int WidgetsPage::ms_defaultFlags = wxBORDER_DEFAULT; |
922 | WidgetsPageInfo *WidgetsPage::ms_widgetPages = NULL; | |
923 | ||
261357eb WS |
924 | WidgetsPage::WidgetsPage(WidgetsBookCtrl *book, |
925 | wxImageList *imaglist, | |
926 | char* icon[]) | |
61c083e7 | 927 | : wxPanel(book, wxID_ANY, |
df0787b6 VZ |
928 | wxDefaultPosition, wxDefaultSize, |
929 | wxNO_FULL_REPAINT_ON_RESIZE | | |
930 | wxCLIP_CHILDREN | | |
931 | wxTAB_TRAVERSAL) | |
32b8ec41 | 932 | { |
261357eb | 933 | #if USE_ICONS_IN_BOOK |
993b016d | 934 | imaglist->Add(wxBitmap(wxImage(icon).Scale(ICON_SIZE, ICON_SIZE))); |
261357eb WS |
935 | #else |
936 | wxUnusedVar(imaglist); | |
937 | wxUnusedVar(icon); | |
938 | #endif | |
32b8ec41 VZ |
939 | } |
940 | ||
941 | wxSizer *WidgetsPage::CreateSizerWithText(wxControl *control, | |
942 | wxWindowID id, | |
943 | wxTextCtrl **ppText) | |
944 | { | |
945 | wxSizer *sizerRow = new wxBoxSizer(wxHORIZONTAL); | |
206d3a16 JS |
946 | wxTextCtrl *text = new wxTextCtrl(this, id, wxEmptyString, |
947 | wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER); | |
4589ec39 | 948 | |
32b8ec41 VZ |
949 | sizerRow->Add(control, 0, wxRIGHT | wxALIGN_CENTRE_VERTICAL, 5); |
950 | sizerRow->Add(text, 1, wxLEFT | wxALIGN_CENTRE_VERTICAL, 5); | |
951 | ||
952 | if ( ppText ) | |
953 | *ppText = text; | |
954 | ||
955 | return sizerRow; | |
956 | } | |
957 | ||
958 | // create a sizer containing a label and a text ctrl | |
959 | wxSizer *WidgetsPage::CreateSizerWithTextAndLabel(const wxString& label, | |
960 | wxWindowID id, | |
961 | wxTextCtrl **ppText) | |
962 | { | |
206d3a16 JS |
963 | return CreateSizerWithText(new wxStaticText(this, wxID_ANY, label), |
964 | id, ppText); | |
32b8ec41 VZ |
965 | } |
966 | ||
967 | // create a sizer containing a button and a text ctrl | |
968 | wxSizer *WidgetsPage::CreateSizerWithTextAndButton(wxWindowID idBtn, | |
969 | const wxString& label, | |
970 | wxWindowID id, | |
971 | wxTextCtrl **ppText) | |
972 | { | |
973 | return CreateSizerWithText(new wxButton(this, idBtn, label), id, ppText); | |
974 | } | |
975 | ||
976 | wxCheckBox *WidgetsPage::CreateCheckBoxAndAddToSizer(wxSizer *sizer, | |
977 | const wxString& label, | |
978 | wxWindowID id) | |
979 | { | |
980 | wxCheckBox *checkbox = new wxCheckBox(this, id, label); | |
981 | sizer->Add(checkbox, 0, wxLEFT | wxRIGHT, 5); | |
982 | sizer->Add(0, 2, 0, wxGROW); // spacer | |
983 | ||
984 | return checkbox; | |
985 | } |