]> git.saurik.com Git - wxWidgets.git/blame - samples/widgets/notebook.cpp
Correct placement of calling convention keyword: must follow the return type.
[wxWidgets.git] / samples / widgets / notebook.cpp
CommitLineData
32b8ec41 1/////////////////////////////////////////////////////////////////////////////
be5a51fb 2// Program: wxWidgets Widgets Sample
32b8ec41 3// Name: notebook.cpp
f2fdc4d5
WS
4// Purpose: Part of the widgets sample showing book controls
5// Author: Vadim Zeitlin, Wlodzimierz ABX Skiba
32b8ec41
VZ
6// Created: 06.04.01
7// Id: $Id$
f2fdc4d5 8// Copyright: (c) 2001 Vadim Zeitlin, 2006 Wlodzimierz Skiba
32b8ec41
VZ
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
f2fdc4d5 27#if wxUSE_BOOKCTRL
61c083e7 28
32b8ec41
VZ
29// for all others, include the necessary headers
30#ifndef WX_PRECOMP
31 #include "wx/app.h"
32 #include "wx/log.h"
33
34 #include "wx/button.h"
35 #include "wx/checkbox.h"
36 #include "wx/combobox.h"
37 #include "wx/radiobox.h"
38 #include "wx/statbox.h"
39 #include "wx/textctrl.h"
40
41 #include "wx/dynarray.h"
42#endif
43
44#include "wx/sizer.h"
f2fdc4d5 45#include "wx/bookctrl.h"
389d906b 46#include "wx/artprov.h"
261357eb 47#include "wx/imaglist.h"
32b8ec41
VZ
48
49#include "widgets.h"
32b8ec41
VZ
50
51// ----------------------------------------------------------------------------
52// constants
53// ----------------------------------------------------------------------------
54
55// control ids
56enum
57{
f2fdc4d5
WS
58 BookPage_Reset = wxID_HIGHEST,
59 BookPage_SelectPage,
60 BookPage_AddPage,
61 BookPage_InsertPage,
62 BookPage_RemovePage,
63 BookPage_DeleteAll,
64 BookPage_InsertText,
65 BookPage_RemoveText,
66 BookPage_SelectText,
67 BookPage_NumPagesText,
68 BookPage_CurSelectText,
69 BookPage_Book
32b8ec41
VZ
70};
71
f2fdc4d5 72// book orientations
32b8ec41
VZ
73enum Orient
74{
75 Orient_Top,
76 Orient_Bottom,
77 Orient_Left,
78 Orient_Right,
79 Orient_Max
80};
81
32b8ec41 82// ----------------------------------------------------------------------------
f2fdc4d5 83// BookWidgetsPage
32b8ec41
VZ
84// ----------------------------------------------------------------------------
85
f2fdc4d5 86class BookWidgetsPage : public WidgetsPage
32b8ec41
VZ
87{
88public:
747d7d7c 89 BookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist, const char *const icon[]);
f2fdc4d5 90 virtual ~BookWidgetsPage();
32b8ec41 91
f2fdc4d5
WS
92 virtual wxControl *GetWidget() const { return m_book; }
93 virtual void RecreateWidget() { RecreateBook(); }
195df7a7 94
453535a7
WS
95 // lazy creation of the content
96 virtual void CreateContent();
97
32b8ec41
VZ
98protected:
99 // event handlers
32b8ec41
VZ
100 void OnButtonReset(wxCommandEvent& event);
101 void OnButtonDeleteAll(wxCommandEvent& event);
102 void OnButtonSelectPage(wxCommandEvent& event);
103 void OnButtonAddPage(wxCommandEvent& event);
104 void OnButtonInsertPage(wxCommandEvent& event);
105 void OnButtonRemovePage(wxCommandEvent& event);
106
107 void OnCheckOrRadioBox(wxCommandEvent& event);
108
109 void OnUpdateUINumPagesText(wxUpdateUIEvent& event);
110 void OnUpdateUICurSelectText(wxUpdateUIEvent& event);
111
112 void OnUpdateUISelectButton(wxUpdateUIEvent& event);
113 void OnUpdateUIInsertButton(wxUpdateUIEvent& event);
114 void OnUpdateUIRemoveButton(wxUpdateUIEvent& event);
115
116 void OnUpdateUIResetButton(wxUpdateUIEvent& event);
117
f2fdc4d5 118 // reset book parameters
32b8ec41
VZ
119 void Reset();
120
f2fdc4d5
WS
121 // (re)create book
122 void RecreateBook();
123 virtual wxBookCtrlBase *CreateBook(long flags) = 0;
32b8ec41 124
954427ba 125#if USE_ICONS_IN_BOOK
32b8ec41
VZ
126 // create or destroy the image list
127 void CreateImageList();
954427ba 128#endif // USE_ICONS_IN_BOOK
32b8ec41
VZ
129
130 // create a new page
131 wxWindow *CreateNewPage();
132
133 // get the image index for the new page
134 int GetIconIndex() const;
135
136 // get the numeric value of text ctrl
137 int GetTextValue(wxTextCtrl *text) const;
138
657c8818
JS
139 // is the value in range?
140 bool IsValidValue(int val) const
f2fdc4d5 141 { return (val >= 0) && (val < (int) m_book->GetPageCount()); }
657c8818 142
32b8ec41
VZ
143 // the controls
144 // ------------
145
146 // the check/radio boxes for styles
147 wxCheckBox *m_chkImages;
148 wxRadioBox *m_radioOrient;
149
150 // the text controls containing input for various commands
151 wxTextCtrl *m_textInsert,
152 *m_textRemove,
153 *m_textSelect;
154
f2fdc4d5
WS
155 // the book itself and the sizer it is in
156 wxBookCtrlBase *m_book;
157 wxSizer *m_sizerBook;
32b8ec41 158
954427ba
WS
159#if USE_ICONS_IN_BOOK
160 // the image list for our book
32b8ec41 161 wxImageList *m_imageList;
954427ba 162#endif // USE_ICONS_IN_BOOK
32b8ec41
VZ
163
164private:
5e173f35 165 DECLARE_EVENT_TABLE()
32b8ec41
VZ
166};
167
168// ----------------------------------------------------------------------------
169// event tables
170// ----------------------------------------------------------------------------
171
f2fdc4d5
WS
172BEGIN_EVENT_TABLE(BookWidgetsPage, WidgetsPage)
173 EVT_BUTTON(BookPage_Reset, BookWidgetsPage::OnButtonReset)
174 EVT_BUTTON(BookPage_SelectPage, BookWidgetsPage::OnButtonSelectPage)
175 EVT_BUTTON(BookPage_AddPage, BookWidgetsPage::OnButtonAddPage)
176 EVT_BUTTON(BookPage_InsertPage, BookWidgetsPage::OnButtonInsertPage)
177 EVT_BUTTON(BookPage_RemovePage, BookWidgetsPage::OnButtonRemovePage)
178 EVT_BUTTON(BookPage_DeleteAll, BookWidgetsPage::OnButtonDeleteAll)
32b8ec41 179
f2fdc4d5
WS
180 EVT_UPDATE_UI(BookPage_NumPagesText, BookWidgetsPage::OnUpdateUINumPagesText)
181 EVT_UPDATE_UI(BookPage_CurSelectText, BookWidgetsPage::OnUpdateUICurSelectText)
32b8ec41 182
f2fdc4d5
WS
183 EVT_UPDATE_UI(BookPage_SelectPage, BookWidgetsPage::OnUpdateUISelectButton)
184 EVT_UPDATE_UI(BookPage_InsertPage, BookWidgetsPage::OnUpdateUIInsertButton)
185 EVT_UPDATE_UI(BookPage_RemovePage, BookWidgetsPage::OnUpdateUIRemoveButton)
32b8ec41 186
f2fdc4d5
WS
187 EVT_CHECKBOX(wxID_ANY, BookWidgetsPage::OnCheckOrRadioBox)
188 EVT_RADIOBOX(wxID_ANY, BookWidgetsPage::OnCheckOrRadioBox)
32b8ec41
VZ
189END_EVENT_TABLE()
190
191// ============================================================================
192// implementation
193// ============================================================================
194
747d7d7c 195BookWidgetsPage::BookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist, const char *const icon[])
261357eb 196 :WidgetsPage(book, imaglist, icon)
32b8ec41 197{
32b8ec41
VZ
198 // init everything
199 m_chkImages = NULL;
954427ba 200#if USE_ICONS_IN_BOOK
32b8ec41 201 m_imageList = NULL;
954427ba 202#endif // USE_ICONS_IN_BOOK
32b8ec41 203
f2fdc4d5 204 m_book = NULL;
453535a7 205 m_radioOrient = NULL;
f2fdc4d5 206 m_sizerBook = (wxSizer *)NULL;
453535a7 207}
32b8ec41 208
453535a7
WS
209void BookWidgetsPage::CreateContent()
210{
32b8ec41
VZ
211 wxSizer *sizerTop = new wxBoxSizer(wxHORIZONTAL);
212
213 // left pane
9a83f860 214 wxStaticBox *box = new wxStaticBox(this, wxID_ANY, wxT("&Set style"));
32b8ec41
VZ
215
216 // must be in sync with Orient enum
045bd076 217 wxArrayString orientations;
9a83f860
VZ
218 orientations.Add(wxT("&top"));
219 orientations.Add(wxT("&bottom"));
220 orientations.Add(wxT("&left"));
221 orientations.Add(wxT("&right"));
045bd076
WS
222
223 wxASSERT_MSG( orientations.GetCount() == Orient_Max,
9a83f860 224 wxT("forgot to update something") );
32b8ec41 225
9a83f860
VZ
226 m_chkImages = new wxCheckBox(this, wxID_ANY, wxT("Show &images"));
227 m_radioOrient = new wxRadioBox(this, wxID_ANY, wxT("&Tab orientation"),
32b8ec41 228 wxDefaultPosition, wxDefaultSize,
045bd076 229 orientations, 1, wxRA_SPECIFY_COLS);
32b8ec41
VZ
230
231 wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL);
232
233 sizerLeft->Add(m_chkImages, 0, wxALL, 5);
234 sizerLeft->Add(5, 5, 0, wxGROW | wxALL, 5); // spacer
235 sizerLeft->Add(m_radioOrient, 0, wxALL, 5);
236
9a83f860 237 wxButton *btn = new wxButton(this, BookPage_Reset, wxT("&Reset"));
32b8ec41
VZ
238 sizerLeft->Add(btn, 0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15);
239
240 // middle pane
9a83f860 241 wxStaticBox *box2 = new wxStaticBox(this, wxID_ANY, wxT("&Contents"));
32b8ec41
VZ
242 wxSizer *sizerMiddle = new wxStaticBoxSizer(box2, wxVERTICAL);
243
244 wxTextCtrl *text;
9a83f860 245 wxSizer *sizerRow = CreateSizerWithTextAndLabel(wxT("Number of pages: "),
f2fdc4d5 246 BookPage_NumPagesText,
32b8ec41 247 &text);
206d3a16 248 text->SetEditable(false);
32b8ec41
VZ
249 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
250
9a83f860 251 sizerRow = CreateSizerWithTextAndLabel(wxT("Current selection: "),
f2fdc4d5 252 BookPage_CurSelectText,
32b8ec41 253 &text);
206d3a16 254 text->SetEditable(false);
32b8ec41
VZ
255 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
256
f2fdc4d5 257 sizerRow = CreateSizerWithTextAndButton(BookPage_SelectPage,
9a83f860 258 wxT("&Select page"),
f2fdc4d5 259 BookPage_SelectText,
32b8ec41
VZ
260 &m_textSelect);
261 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
262
9a83f860 263 btn = new wxButton(this, BookPage_AddPage, wxT("&Add page"));
32b8ec41
VZ
264 sizerMiddle->Add(btn, 0, wxALL | wxGROW, 5);
265
f2fdc4d5 266 sizerRow = CreateSizerWithTextAndButton(BookPage_InsertPage,
9a83f860 267 wxT("&Insert page at"),
f2fdc4d5 268 BookPage_InsertText,
32b8ec41
VZ
269 &m_textInsert);
270 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
271
f2fdc4d5 272 sizerRow = CreateSizerWithTextAndButton(BookPage_RemovePage,
9a83f860 273 wxT("&Remove page"),
f2fdc4d5 274 BookPage_RemoveText,
32b8ec41
VZ
275 &m_textRemove);
276 sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
277
9a83f860 278 btn = new wxButton(this, BookPage_DeleteAll, wxT("&Delete All"));
32b8ec41
VZ
279 sizerMiddle->Add(btn, 0, wxALL | wxGROW, 5);
280
281 // right pane
f2fdc4d5 282 m_sizerBook = new wxBoxSizer(wxHORIZONTAL);
32b8ec41 283
f2fdc4d5 284 // the 3 panes compose the window
32b8ec41
VZ
285 sizerTop->Add(sizerLeft, 0, wxGROW | (wxALL & ~wxLEFT), 10);
286 sizerTop->Add(sizerMiddle, 0, wxGROW | wxALL, 10);
f2fdc4d5 287 sizerTop->Add(m_sizerBook, 1, wxGROW | (wxALL & ~wxRIGHT), 10);
32b8ec41 288
315a592c
WS
289 RecreateBook();
290
32b8ec41
VZ
291 // final initializations
292 Reset();
954427ba 293#if USE_ICONS_IN_BOOK
32b8ec41 294 CreateImageList();
954427ba 295#endif // USE_ICONS_IN_BOOK
32b8ec41 296
32b8ec41 297 SetSizer(sizerTop);
32b8ec41
VZ
298}
299
f2fdc4d5 300BookWidgetsPage::~BookWidgetsPage()
32b8ec41 301{
954427ba 302#if USE_ICONS_IN_BOOK
32b8ec41 303 delete m_imageList;
954427ba 304#endif // USE_ICONS_IN_BOOK
32b8ec41
VZ
305}
306
307// ----------------------------------------------------------------------------
308// operations
309// ----------------------------------------------------------------------------
310
f2fdc4d5 311void BookWidgetsPage::Reset()
32b8ec41 312{
206d3a16 313 m_chkImages->SetValue(true);
32b8ec41
VZ
314 m_radioOrient->SetSelection(Orient_Top);
315}
316
954427ba 317#if USE_ICONS_IN_BOOK
f2fdc4d5 318void BookWidgetsPage::CreateImageList()
32b8ec41
VZ
319{
320 if ( m_chkImages->GetValue() )
321 {
322 if ( !m_imageList )
323 {
324 // create a dummy image list with a few icons
325 m_imageList = new wxImageList(32, 32);
389d906b
VS
326 wxSize size(32, 32);
327 m_imageList->Add(wxArtProvider::GetIcon(wxART_INFORMATION, wxART_OTHER, size));
328 m_imageList->Add(wxArtProvider::GetIcon(wxART_QUESTION, wxART_OTHER, size));
329 m_imageList->Add(wxArtProvider::GetIcon(wxART_WARNING, wxART_OTHER, size));
330 m_imageList->Add(wxArtProvider::GetIcon(wxART_ERROR, wxART_OTHER, size));
32b8ec41
VZ
331 }
332
f2fdc4d5
WS
333 if ( m_book )
334 m_book->SetImageList(m_imageList);
32b8ec41
VZ
335 }
336 else // no images
337 {
338 if ( m_imageList )
339 {
340 delete m_imageList;
341 m_imageList = NULL;
342 }
343 }
344
345 // because of the bug in wxMSW we can't use SetImageList(NULL) - although
f2fdc4d5
WS
346 // it would be logical if this removed the image list from book, under
347 // MSW it crashes instead - FIXME
32b8ec41 348}
954427ba 349#endif // USE_ICONS_IN_BOOK
32b8ec41 350
f2fdc4d5 351void BookWidgetsPage::RecreateBook()
32b8ec41 352{
453535a7
WS
353 // do not recreate anything in case page content was not prepared yet
354 if(!m_radioOrient)
355 return;
356
1301e228 357 int flags = ms_defaultFlags;
453535a7 358
32b8ec41
VZ
359 switch ( m_radioOrient->GetSelection() )
360 {
361 default:
9a83f860 362 wxFAIL_MSG( wxT("unknown orientation") );
32b8ec41
VZ
363 // fall through
364
365 case Orient_Top:
1301e228 366 flags |= wxBK_TOP;
32b8ec41
VZ
367 break;
368
369 case Orient_Bottom:
1301e228 370 flags |= wxBK_BOTTOM;
32b8ec41
VZ
371 break;
372
373 case Orient_Left:
1301e228 374 flags |= wxBK_LEFT;
32b8ec41
VZ
375 break;
376
377 case Orient_Right:
1301e228 378 flags |= wxBK_RIGHT;
32b8ec41
VZ
379 break;
380 }
381
f2fdc4d5 382 wxBookCtrlBase *oldBook = m_book;
32b8ec41 383
f2fdc4d5 384 m_book = CreateBook(flags);
32b8ec41 385
954427ba 386#if USE_ICONS_IN_BOOK
32b8ec41 387 CreateImageList();
954427ba 388#endif // USE_ICONS_IN_BOOK
32b8ec41 389
f2fdc4d5 390 if ( oldBook )
32b8ec41 391 {
f2fdc4d5 392 const int sel = oldBook->GetSelection();
32b8ec41 393
f2fdc4d5 394 const int count = oldBook->GetPageCount();
2b5f62a0
VZ
395
396 // recreate the pages
32b8ec41
VZ
397 for ( int n = 0; n < count; n++ )
398 {
f2fdc4d5
WS
399 m_book->AddPage(CreateNewPage(),
400 oldBook->GetPageText(n),
401 false,
402 m_chkImages->GetValue() ?
403 GetIconIndex() : -1);
32b8ec41
VZ
404 }
405
f2fdc4d5
WS
406 m_sizerBook->Detach( oldBook );
407 delete oldBook;
32b8ec41
VZ
408
409 // restore selection
410 if ( sel != -1 )
411 {
f2fdc4d5 412 m_book->SetSelection(sel);
32b8ec41
VZ
413 }
414 }
415
f2fdc4d5
WS
416 m_sizerBook->Add(m_book, 1, wxGROW | wxALL, 5);
417 m_sizerBook->SetMinSize(150, 0);
418 m_sizerBook->Layout();
32b8ec41
VZ
419}
420
421// ----------------------------------------------------------------------------
422// helpers
423// ----------------------------------------------------------------------------
424
f2fdc4d5 425int BookWidgetsPage::GetTextValue(wxTextCtrl *text) const
32b8ec41 426{
453535a7
WS
427 long pos = -1;
428
429 if ( !text || !text->GetValue().ToLong(&pos) )
32b8ec41
VZ
430 pos = -1;
431
432 return (int)pos;
433}
434
f2fdc4d5 435int BookWidgetsPage::GetIconIndex() const
32b8ec41 436{
954427ba 437#if USE_ICONS_IN_BOOK
32b8ec41
VZ
438 if ( m_imageList )
439 {
440 int nImages = m_imageList->GetImageCount();
441 if ( nImages > 0 )
442 {
f2fdc4d5 443 return m_book->GetPageCount() % nImages;
32b8ec41
VZ
444 }
445 }
954427ba 446#endif // USE_ICONS_IN_BOOK
32b8ec41
VZ
447
448 return -1;
449}
450
f2fdc4d5 451wxWindow *BookWidgetsPage::CreateNewPage()
32b8ec41 452{
9a83f860 453 return new wxTextCtrl(m_book, wxID_ANY, wxT("I'm a book page"));
32b8ec41
VZ
454}
455
456// ----------------------------------------------------------------------------
457// event handlers
458// ----------------------------------------------------------------------------
459
f2fdc4d5 460void BookWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event))
32b8ec41
VZ
461{
462 Reset();
463
f2fdc4d5 464 RecreateBook();
32b8ec41
VZ
465}
466
f2fdc4d5 467void BookWidgetsPage::OnButtonDeleteAll(wxCommandEvent& WXUNUSED(event))
32b8ec41 468{
f2fdc4d5 469 m_book->DeleteAllPages();
32b8ec41
VZ
470}
471
f2fdc4d5 472void BookWidgetsPage::OnButtonSelectPage(wxCommandEvent& WXUNUSED(event))
32b8ec41
VZ
473{
474 int pos = GetTextValue(m_textSelect);
9a83f860 475 wxCHECK_RET( IsValidValue(pos), wxT("button should be disabled") );
32b8ec41 476
f2fdc4d5 477 m_book->SetSelection(pos);
32b8ec41
VZ
478}
479
f2fdc4d5 480void BookWidgetsPage::OnButtonAddPage(wxCommandEvent& WXUNUSED(event))
32b8ec41 481{
9a83f860 482 m_book->AddPage(CreateNewPage(), wxT("Added page"), false,
f2fdc4d5 483 GetIconIndex());
32b8ec41
VZ
484}
485
f2fdc4d5 486void BookWidgetsPage::OnButtonInsertPage(wxCommandEvent& WXUNUSED(event))
32b8ec41
VZ
487{
488 int pos = GetTextValue(m_textInsert);
9a83f860 489 wxCHECK_RET( IsValidValue(pos), wxT("button should be disabled") );
32b8ec41 490
9a83f860 491 m_book->InsertPage(pos, CreateNewPage(), wxT("Inserted page"), false,
f2fdc4d5 492 GetIconIndex());
32b8ec41
VZ
493}
494
f2fdc4d5 495void BookWidgetsPage::OnButtonRemovePage(wxCommandEvent& WXUNUSED(event))
32b8ec41
VZ
496{
497 int pos = GetTextValue(m_textRemove);
9a83f860 498 wxCHECK_RET( IsValidValue(pos), wxT("button should be disabled") );
32b8ec41 499
f2fdc4d5 500 m_book->DeletePage(pos);
32b8ec41
VZ
501}
502
f2fdc4d5 503void BookWidgetsPage::OnUpdateUISelectButton(wxUpdateUIEvent& event)
32b8ec41 504{
657c8818 505 event.Enable( IsValidValue(GetTextValue(m_textSelect)) );
32b8ec41
VZ
506}
507
f2fdc4d5 508void BookWidgetsPage::OnUpdateUIInsertButton(wxUpdateUIEvent& event)
32b8ec41 509{
657c8818 510 event.Enable( IsValidValue(GetTextValue(m_textInsert)) );
32b8ec41
VZ
511}
512
f2fdc4d5 513void BookWidgetsPage::OnUpdateUIRemoveButton(wxUpdateUIEvent& event)
32b8ec41 514{
657c8818 515 event.Enable( IsValidValue(GetTextValue(m_textRemove)) );
32b8ec41
VZ
516}
517
f2fdc4d5 518void BookWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent& event)
32b8ec41 519{
453535a7
WS
520 if(m_chkImages && m_radioOrient)
521 event.Enable( !m_chkImages->GetValue() ||
522 m_radioOrient->GetSelection() != wxBK_TOP );
32b8ec41
VZ
523}
524
f2fdc4d5 525void BookWidgetsPage::OnUpdateUINumPagesText(wxUpdateUIEvent& event)
32b8ec41 526{
453535a7 527 if(m_book)
9a83f860 528 event.SetText( wxString::Format(wxT("%u"), unsigned(m_book->GetPageCount())) );
32b8ec41
VZ
529}
530
f2fdc4d5 531void BookWidgetsPage::OnUpdateUICurSelectText(wxUpdateUIEvent& event)
32b8ec41 532{
453535a7 533 if(m_book)
9a83f860 534 event.SetText( wxString::Format(wxT("%d"), m_book->GetSelection()) );
32b8ec41
VZ
535}
536
f2fdc4d5 537void BookWidgetsPage::OnCheckOrRadioBox(wxCommandEvent& WXUNUSED(event))
32b8ec41 538{
f2fdc4d5 539 RecreateBook();
32b8ec41
VZ
540}
541
f2fdc4d5
WS
542#if wxUSE_NOTEBOOK
543
544#include "icons/notebook.xpm"
545#include "wx/notebook.h"
546
547// ----------------------------------------------------------------------------
548// NotebookWidgetsPage
549// ----------------------------------------------------------------------------
550
551class NotebookWidgetsPage : public BookWidgetsPage
552{
553public:
554 NotebookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist)
261357eb 555 : BookWidgetsPage(book, imaglist, notebook_xpm)
f2fdc4d5 556 {
f2fdc4d5
WS
557 RecreateBook();
558 }
559 virtual ~NotebookWidgetsPage() {}
560
561protected:
562
f0fa4312
WS
563 // event handlers
564 void OnPageChanging(wxNotebookEvent& event);
565 void OnPageChanged(wxNotebookEvent& event);
566
f2fdc4d5
WS
567 // (re)create book
568 virtual wxBookCtrlBase *CreateBook(long flags)
569 {
570 return new wxNotebook(this, BookPage_Book,
571 wxDefaultPosition, wxDefaultSize,
572 flags);
f2fdc4d5
WS
573 }
574
575private:
576 DECLARE_EVENT_TABLE()
577 DECLARE_WIDGETS_PAGE(NotebookWidgetsPage)
578};
579
580// ----------------------------------------------------------------------------
581// event table
582// ----------------------------------------------------------------------------
583
584BEGIN_EVENT_TABLE(NotebookWidgetsPage, BookWidgetsPage)
f0fa4312
WS
585 EVT_NOTEBOOK_PAGE_CHANGING(wxID_ANY, NotebookWidgetsPage::OnPageChanging)
586 EVT_NOTEBOOK_PAGE_CHANGED(wxID_ANY, NotebookWidgetsPage::OnPageChanged)
f2fdc4d5
WS
587END_EVENT_TABLE()
588
f0fa4312
WS
589#if defined(__WXUNIVERSAL__)
590 #define FAMILY_CTRLS UNIVERSAL_CTRLS
591#elif defined(__WXMOTIF__)
592 #define FAMILY_CTRLS GENERIC_CTRLS
593#else
594 #define FAMILY_CTRLS NATIVE_CTRLS
595#endif
596
9a83f860 597IMPLEMENT_WIDGETS_PAGE(NotebookWidgetsPage, wxT("Notebook"),
f0fa4312 598 FAMILY_CTRLS | BOOK_CTRLS
f2fdc4d5
WS
599 );
600
f0fa4312
WS
601void NotebookWidgetsPage::OnPageChanging(wxNotebookEvent& event)
602{
9a83f860 603 wxLogMessage(wxT("Notebook page changing from %d to %d (currently %d)."),
f0fa4312
WS
604 event.GetOldSelection(),
605 event.GetSelection(),
606 m_book->GetSelection());
607
608 event.Skip();
609}
610
611void NotebookWidgetsPage::OnPageChanged(wxNotebookEvent& event)
612{
9a83f860 613 wxLogMessage(wxT("Notebook page changed from %d to %d (currently %d)."),
f0fa4312
WS
614 event.GetOldSelection(),
615 event.GetSelection(),
616 m_book->GetSelection());
617
618 event.Skip();
619}
620
61c083e7 621#endif // wxUSE_NOTEBOOK
f2fdc4d5
WS
622
623#if wxUSE_LISTBOOK
624
625#include "icons/listbook.xpm"
626#include "wx/listbook.h"
627
628// ----------------------------------------------------------------------------
629// ListbookWidgetsPage
630// ----------------------------------------------------------------------------
631
632class ListbookWidgetsPage : public BookWidgetsPage
633{
634public:
635 ListbookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist)
261357eb 636 : BookWidgetsPage(book, imaglist, listbook_xpm)
f2fdc4d5 637 {
f2fdc4d5
WS
638 RecreateBook();
639 }
640 virtual ~ListbookWidgetsPage() {}
641
642protected:
643
f0fa4312
WS
644 // event handlers
645 void OnPageChanging(wxListbookEvent& event);
646 void OnPageChanged(wxListbookEvent& event);
647
f2fdc4d5
WS
648 // (re)create book
649 virtual wxBookCtrlBase *CreateBook(long flags)
650 {
651 return new wxListbook(this, BookPage_Book,
652 wxDefaultPosition, wxDefaultSize,
653 flags);
f2fdc4d5
WS
654 }
655
656private:
657 DECLARE_EVENT_TABLE()
658 DECLARE_WIDGETS_PAGE(ListbookWidgetsPage)
659};
660
661// ----------------------------------------------------------------------------
662// event table
663// ----------------------------------------------------------------------------
664
665BEGIN_EVENT_TABLE(ListbookWidgetsPage, BookWidgetsPage)
f0fa4312
WS
666 EVT_LISTBOOK_PAGE_CHANGING(wxID_ANY, ListbookWidgetsPage::OnPageChanging)
667 EVT_LISTBOOK_PAGE_CHANGED(wxID_ANY, ListbookWidgetsPage::OnPageChanged)
f2fdc4d5
WS
668END_EVENT_TABLE()
669
9a83f860 670IMPLEMENT_WIDGETS_PAGE(ListbookWidgetsPage, wxT("Listbook"),
f2fdc4d5
WS
671 GENERIC_CTRLS | BOOK_CTRLS
672 );
673
f0fa4312
WS
674void ListbookWidgetsPage::OnPageChanging(wxListbookEvent& event)
675{
9a83f860 676 wxLogMessage(wxT("Listbook page changing from %d to %d (currently %d)."),
f0fa4312
WS
677 event.GetOldSelection(),
678 event.GetSelection(),
679 m_book->GetSelection());
680
681 event.Skip();
682}
683
684void ListbookWidgetsPage::OnPageChanged(wxListbookEvent& event)
685{
9a83f860 686 wxLogMessage(wxT("Listbook page changed from %d to %d (currently %d)."),
f0fa4312
WS
687 event.GetOldSelection(),
688 event.GetSelection(),
689 m_book->GetSelection());
690
691 event.Skip();
692}
693
f2fdc4d5
WS
694#endif // wxUSE_LISTBOOK
695
696#if wxUSE_CHOICEBOOK
697
698#include "icons/choicebk.xpm"
699#include "wx/choicebk.h"
700
701// ----------------------------------------------------------------------------
702// ChoicebookWidgetsPage
703// ----------------------------------------------------------------------------
704
705class ChoicebookWidgetsPage : public BookWidgetsPage
706{
707public:
708 ChoicebookWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist)
261357eb 709 : BookWidgetsPage(book, imaglist, choicebk_xpm)
f2fdc4d5 710 {
f2fdc4d5
WS
711 RecreateBook();
712 }
713 virtual ~ChoicebookWidgetsPage() {}
714
715protected:
716
f0fa4312
WS
717 // event handlers
718 void OnPageChanging(wxChoicebookEvent& event);
719 void OnPageChanged(wxChoicebookEvent& event);
720
f2fdc4d5
WS
721 // (re)create book
722 virtual wxBookCtrlBase *CreateBook(long flags)
723 {
724 return new wxChoicebook(this, BookPage_Book,
725 wxDefaultPosition, wxDefaultSize,
726 flags);
f2fdc4d5
WS
727 }
728
729private:
730 DECLARE_EVENT_TABLE()
731 DECLARE_WIDGETS_PAGE(ChoicebookWidgetsPage)
732};
733
734// ----------------------------------------------------------------------------
735// event table
736// ----------------------------------------------------------------------------
737
738BEGIN_EVENT_TABLE(ChoicebookWidgetsPage, BookWidgetsPage)
f0fa4312
WS
739 EVT_CHOICEBOOK_PAGE_CHANGING(wxID_ANY, ChoicebookWidgetsPage::OnPageChanging)
740 EVT_CHOICEBOOK_PAGE_CHANGED(wxID_ANY, ChoicebookWidgetsPage::OnPageChanged)
f2fdc4d5
WS
741END_EVENT_TABLE()
742
9a83f860 743IMPLEMENT_WIDGETS_PAGE(ChoicebookWidgetsPage, wxT("Choicebook"),
f2fdc4d5
WS
744 GENERIC_CTRLS | BOOK_CTRLS
745 );
746
f0fa4312
WS
747void ChoicebookWidgetsPage::OnPageChanging(wxChoicebookEvent& event)
748{
9a83f860 749 wxLogMessage(wxT("Choicebook page changing from %d to %d (currently %d)."),
f0fa4312
WS
750 event.GetOldSelection(),
751 event.GetSelection(),
752 m_book->GetSelection());
753
754 event.Skip();
755}
756
757void ChoicebookWidgetsPage::OnPageChanged(wxChoicebookEvent& event)
758{
9a83f860 759 wxLogMessage(wxT("Choicebook page changed from %d to %d (currently %d)."),
f0fa4312
WS
760 event.GetOldSelection(),
761 event.GetSelection(),
762 m_book->GetSelection());
763
764 event.Skip();
765}
766
f2fdc4d5
WS
767#endif // wxUSE_CHOICEBOOK
768
769#endif // wxUSE_BOOKCTRL