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