1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/notebook/notebook.cpp
3 // Purpose: a sample demonstrating notebook usage
4 // Author: Julian Smart
5 // Modified by: Dimitri Schoolwerth
8 // Copyright: (c) 1998-2002 wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/imaglist.h"
24 #include "wx/artprov.h"
25 #include "wx/cshelp.h"
29 #ifndef wxHAS_IMAGES_IN_RESOURCES
30 #include "../sample.xpm"
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
41 if ( !wxApp::OnInit() )
45 wxHelpProvider::Set( new wxSimpleHelpProvider
);
48 // Create the main window
49 MyFrame
*frame
= new MyFrame();
51 // Problem with generic wxNotebook implementation whereby it doesn't size
52 // properly unless you set the size again
53 #if defined(__WXMOTIF__)
55 frame
->GetSize(& width
, & height
);
56 frame
->SetSize(wxDefaultCoord
, wxDefaultCoord
, width
, height
);
65 //-----------------------------------------------------------------------------
67 //-----------------------------------------------------------------------------
69 wxPanel
*CreateUserCreatedPage(wxBookCtrlBase
*parent
)
71 wxPanel
*panel
= new wxPanel(parent
);
74 panel
->SetHelpText( wxT( "Panel with a Button" ) );
77 (void) new wxButton( panel
, wxID_ANY
, wxT("Button"),
78 wxPoint(10, 10), wxDefaultSize
);
83 wxPanel
*CreateRadioButtonsPage(wxBookCtrlBase
*parent
)
85 wxPanel
*panel
= new wxPanel(parent
);
88 panel
->SetHelpText( wxT( "Panel with some Radio Buttons" ) );
92 { wxT("Fox"), wxT("Hare"), wxT("Rabbit"),
93 wxT("Sabre-toothed tiger"), wxT("T Rex") };
95 wxRadioBox
*radiobox1
= new wxRadioBox(panel
, wxID_ANY
, wxT("Choose one"),
96 wxDefaultPosition
, wxDefaultSize
, 5, animals
, 2, wxRA_SPECIFY_ROWS
);
98 wxString computers
[] =
99 { wxT("Amiga"), wxT("Commodore 64"), wxT("PET"),
102 wxRadioBox
*radiobox2
= new wxRadioBox(panel
, wxID_ANY
,
103 wxT("Choose your favourite"), wxDefaultPosition
, wxDefaultSize
,
104 4, computers
, 0, wxRA_SPECIFY_COLS
);
106 wxBoxSizer
*sizerPanel
= new wxBoxSizer(wxVERTICAL
);
107 sizerPanel
->Add(radiobox1
, 2, wxEXPAND
);
108 sizerPanel
->Add(radiobox2
, 1, wxEXPAND
);
109 panel
->SetSizer(sizerPanel
);
114 wxPanel
*CreateVetoPage(wxBookCtrlBase
*parent
)
116 wxPanel
*panel
= new wxPanel(parent
);
119 panel
->SetHelpText( wxT( "An empty panel" ) );
122 (void) new wxStaticText( panel
, wxID_ANY
,
123 wxT("This page intentionally left blank"),
129 wxPanel
*CreateBigButtonPage(wxBookCtrlBase
*parent
)
131 wxPanel
*panel
= new wxPanel(parent
);
134 panel
->SetHelpText( wxT( "Panel with a maximized button" ) );
137 wxButton
*buttonBig
= new wxButton(panel
, wxID_ANY
, wxT("Maximized button"));
139 wxBoxSizer
*sizerPanel
= new wxBoxSizer(wxVERTICAL
);
140 sizerPanel
->Add(buttonBig
, 1, wxEXPAND
);
141 panel
->SetSizer(sizerPanel
);
146 wxPanel
*CreateInsertPage(wxBookCtrlBase
*parent
)
148 wxPanel
*panel
= new wxPanel(parent
);
151 panel
->SetHelpText( wxT( "Maroon panel" ) );
154 panel
->SetBackgroundColour( wxColour( wxT("MAROON") ) );
155 (void) new wxStaticText( panel
, wxID_ANY
,
156 wxT("This page has been inserted, not added."),
162 int GetIconIndex(wxBookCtrlBase
* bookCtrl
)
164 if (bookCtrl
&& bookCtrl
->GetImageList())
166 int nImages
= bookCtrl
->GetImageList()->GetImageCount();
169 return bookCtrl
->GetPageCount() % nImages
;
176 void CreateInitialPages(wxBookCtrlBase
*parent
)
178 // Create and add some panels to the notebook
180 wxPanel
*panel
= CreateRadioButtonsPage(parent
);
181 parent
->AddPage( panel
, RADIOBUTTONS_PAGE_NAME
, false, GetIconIndex(parent
) );
183 panel
= CreateVetoPage(parent
);
184 parent
->AddPage( panel
, VETO_PAGE_NAME
, false, GetIconIndex(parent
) );
186 panel
= CreateBigButtonPage(parent
);
187 parent
->AddPage( panel
, MAXIMIZED_BUTTON_PAGE_NAME
, false, GetIconIndex(parent
) );
189 panel
= CreateInsertPage(parent
);
190 parent
->InsertPage( 0, panel
, I_WAS_INSERTED_PAGE_NAME
, false, GetIconIndex(parent
) );
192 parent
->SetSelection(1);
195 wxPanel
*CreatePage(wxBookCtrlBase
*parent
, const wxString
&pageName
)
197 if ( pageName
.Contains(INSERTED_PAGE_NAME
) ||
198 pageName
.Contains(ADDED_PAGE_NAME
) ||
199 pageName
.Contains(ADDED_SUB_PAGE_NAME
) ||
200 pageName
.Contains(ADDED_PAGE_NAME_BEFORE
) )
201 return CreateUserCreatedPage(parent
);
203 if ( pageName
== I_WAS_INSERTED_PAGE_NAME
)
204 return CreateInsertPage(parent
);
206 if ( pageName
== VETO_PAGE_NAME
)
207 return CreateVetoPage(parent
);
209 if ( pageName
== RADIOBUTTONS_PAGE_NAME
)
210 return CreateRadioButtonsPage(parent
);
212 if ( pageName
== MAXIMIZED_BUTTON_PAGE_NAME
)
213 return CreateBigButtonPage(parent
);
215 wxFAIL_MSG( wxT("unknown page name") );
221 //-----------------------------------------------------------------------------
223 //-----------------------------------------------------------------------------
225 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
227 EVT_MENU_RANGE(ID_BOOK_NOTEBOOK
, ID_BOOK_MAX
, MyFrame::OnType
)
228 EVT_MENU_RANGE(ID_ORIENT_DEFAULT
, ID_ORIENT_MAX
, MyFrame::OnOrient
)
229 EVT_MENU(ID_SHOW_IMAGES
, MyFrame::OnShowImages
)
230 EVT_MENU_RANGE(ID_FIXEDWIDTH
, ID_HORZ_LAYOUT
, MyFrame::OnStyle
)
231 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
234 EVT_MENU(ID_ADD_PAGE
, MyFrame::OnAddPage
)
235 EVT_MENU(ID_ADD_PAGE_NO_SELECT
, MyFrame::OnAddPageNoSelect
)
236 EVT_MENU(ID_INSERT_PAGE
, MyFrame::OnInsertPage
)
237 EVT_MENU(ID_DELETE_CUR_PAGE
, MyFrame::OnDeleteCurPage
)
238 EVT_MENU(ID_DELETE_LAST_PAGE
, MyFrame::OnDeleteLastPage
)
239 EVT_MENU(ID_NEXT_PAGE
, MyFrame::OnNextPage
)
240 EVT_MENU(ID_CHANGE_SELECTION
, MyFrame::OnChangeSelection
)
241 EVT_MENU(ID_SET_SELECTION
, MyFrame::OnSetSelection
)
242 EVT_MENU(ID_GET_PAGE_SIZE
, MyFrame::OnGetPageSize
)
243 EVT_MENU(ID_SET_PAGE_SIZE
, MyFrame::OnSetPageSize
)
246 EVT_MENU(ID_CONTEXT_HELP
, MyFrame::OnContextHelp
)
248 EVT_MENU(ID_HITTEST
, MyFrame::OnHitTest
)
252 EVT_NOTEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnNotebook
)
253 EVT_NOTEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnNotebook
)
256 EVT_LISTBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnListbook
)
257 EVT_LISTBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnListbook
)
260 EVT_CHOICEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnChoicebook
)
261 EVT_CHOICEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnChoicebook
)
264 EVT_TREEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnTreebook
)
265 EVT_TREEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnTreebook
)
267 EVT_MENU(ID_ADD_SUB_PAGE
, MyFrame::OnAddSubPage
)
268 EVT_MENU(ID_ADD_PAGE_BEFORE
, MyFrame::OnAddPageBefore
)
269 EVT_UPDATE_UI_RANGE(ID_ADD_PAGE_BEFORE
, ID_ADD_SUB_PAGE
,
270 MyFrame::OnUpdateTreeMenu
)
273 EVT_TOOLBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnToolbook
)
274 EVT_TOOLBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnToolbook
)
277 EVT_AUINOTEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnAuiNotebook
)
278 EVT_AUINOTEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnAuiNotebook
)
281 // Update title in idle time
282 EVT_IDLE(MyFrame::OnIdle
)
286 : wxFrame(NULL
, wxID_ANY
, wxString(wxT("wxWidgets book controls sample")))
289 SetExtraStyle(wxFRAME_EX_CONTEXTHELP
);
293 m_type
= Type_Notebook
;
294 #elif wxUSE_CHOICEBOOK
295 m_type
= Type_Choicebook
;
297 m_type
= Type_Listbook
;
299 m_type
= Type_Treebook
;
301 m_type
= Type_Toolbook
;
305 m_type
= Type_Simplebook
;
308 m_orient
= ID_ORIENT_DEFAULT
;
309 m_chkShowImages
= true;
310 m_fixedWidth
= false;
312 m_noPageTheme
= false;
314 m_horzLayout
= false;
316 SetIcon(wxICON(sample
));
318 // menu of the sample
319 wxMenu
*menuType
= new wxMenu
;
321 menuType
->AppendRadioItem(ID_BOOK_NOTEBOOK
, wxT("&Notebook\tCtrl-1"));
324 menuType
->AppendRadioItem(ID_BOOK_LISTBOOK
, wxT("&Listbook\tCtrl-2"));
327 menuType
->AppendRadioItem(ID_BOOK_CHOICEBOOK
, wxT("&Choicebook\tCtrl-3"));
330 menuType
->AppendRadioItem(ID_BOOK_TREEBOOK
, wxT("&Treebook\tCtrl-4"));
333 menuType
->AppendRadioItem(ID_BOOK_TOOLBOOK
, wxT("T&oolbook\tCtrl-5"));
336 menuType
->AppendRadioItem(ID_BOOK_AUINOTEBOOK
, wxT("&AuiNotebook\tCtrl-6"));
338 menuType
->AppendRadioItem(ID_BOOK_SIMPLEBOOK
, "&Simple book\tCtrl-7");
340 menuType
->Check(ID_BOOK_NOTEBOOK
+ m_type
, true);
342 wxMenu
*menuOrient
= new wxMenu
;
343 menuOrient
->AppendRadioItem(ID_ORIENT_DEFAULT
, wxT("&Default\tAlt-0"));
344 menuOrient
->AppendRadioItem(ID_ORIENT_TOP
, wxT("&Top\tAlt-1"));
345 menuOrient
->AppendRadioItem(ID_ORIENT_BOTTOM
, wxT("&Bottom\tAlt-2"));
346 menuOrient
->AppendRadioItem(ID_ORIENT_LEFT
, wxT("&Left\tAlt-3"));
347 menuOrient
->AppendRadioItem(ID_ORIENT_RIGHT
, wxT("&Right\tAlt-4"));
349 wxMenu
*menuStyle
= new wxMenu
;
351 menuStyle
->AppendCheckItem(ID_FIXEDWIDTH
, wxT("&Fixed Width (wxNotebook)"));
352 menuStyle
->AppendCheckItem(ID_MULTI
, wxT("&Multiple lines (wxNotebook)"));
353 menuStyle
->AppendCheckItem(ID_NOPAGETHEME
, wxT("&No Page Theme (wxNotebook)"));
356 menuStyle
->AppendCheckItem(ID_BUTTONBAR
, wxT("&Button Bar (wxToolbook)"));
357 menuStyle
->AppendCheckItem(ID_HORZ_LAYOUT
, wxT("&Horizontal layout (wxToolbook)"));
360 wxMenu
*menuPageOperations
= new wxMenu
;
361 menuPageOperations
->Append(ID_ADD_PAGE
, wxT("&Add page\tAlt-A"));
362 menuPageOperations
->Append(ID_ADD_PAGE_NO_SELECT
, wxT("&Add page (don't select)\tAlt-B"));
363 menuPageOperations
->Append(ID_INSERT_PAGE
, wxT("&Insert page\tAlt-I"));
364 menuPageOperations
->Append(ID_DELETE_CUR_PAGE
, wxT("&Delete current page\tAlt-D"));
365 menuPageOperations
->Append(ID_DELETE_LAST_PAGE
, wxT("D&elete last page\tAlt-L"));
366 menuPageOperations
->Append(ID_NEXT_PAGE
, wxT("&Next page\tAlt-N"));
368 menuPageOperations
->AppendSeparator();
369 menuPageOperations
->Append(ID_ADD_PAGE_BEFORE
, wxT("Insert page &before\tAlt-B"));
370 menuPageOperations
->Append(ID_ADD_SUB_PAGE
, wxT("Add s&ub page\tAlt-U"));
372 menuPageOperations
->AppendSeparator();
373 menuPageOperations
->Append(ID_CHANGE_SELECTION
, wxT("&Change selection to 0\tCtrl-0"));
374 menuPageOperations
->Append(ID_SET_SELECTION
, wxT("&Set selection to 0\tShift-Ctrl-0"));
375 menuPageOperations
->AppendSeparator();
376 menuPageOperations
->Append(ID_GET_PAGE_SIZE
, "Sho&w page size");
377 menuPageOperations
->Append(ID_SET_PAGE_SIZE
, "Set &page size");
379 wxMenu
*menuOperations
= new wxMenu
;
381 menuOperations
->Append(ID_CONTEXT_HELP
, wxT("&Context help\tCtrl-F1"));
383 menuOperations
->Append(ID_HITTEST
, wxT("&Hit test\tCtrl-H"));
385 wxMenu
*menuFile
= new wxMenu
;
386 menuFile
->Append(wxID_ANY
, wxT("&Type"), menuType
, wxT("Type of control"));
387 menuFile
->Append(wxID_ANY
, wxT("&Orientation"), menuOrient
, wxT("Orientation of control"));
388 menuFile
->AppendCheckItem(ID_SHOW_IMAGES
, wxT("&Show images\tAlt-S"));
389 menuFile
->Append(wxID_ANY
, wxT("&Style"), menuStyle
, wxT("Style of control"));
390 menuFile
->AppendSeparator();
391 menuFile
->Append(wxID_EXIT
, wxT("E&xit"), wxT("Quits the application"));
392 menuFile
->Check(ID_SHOW_IMAGES
, m_chkShowImages
);
394 wxMenuBar
*menuBar
= new wxMenuBar
;
395 menuBar
->Append(menuFile
, wxT("&File"));
396 menuBar
->Append(menuPageOperations
, wxT("&Pages"));
397 menuBar
->Append(menuOperations
, wxT("&Operations"));
404 // create a dummy image list with a few icons
405 const wxSize
imageSize(32, 32);
407 m_imageList
= new wxImageList(imageSize
.GetWidth(), imageSize
.GetHeight());
409 Add(wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_OTHER
, imageSize
));
411 Add(wxArtProvider::GetIcon(wxART_QUESTION
, wxART_OTHER
, imageSize
));
413 Add(wxArtProvider::GetIcon(wxART_WARNING
, wxART_OTHER
, imageSize
));
415 Add(wxArtProvider::GetIcon(wxART_ERROR
, wxART_OTHER
, imageSize
));
417 m_panel
= new wxPanel(this);
420 m_text
= new wxTextCtrl(m_panel
, wxID_ANY
, wxEmptyString
,
421 wxDefaultPosition
, wxDefaultSize
,
422 wxTE_MULTILINE
| wxTE_READONLY
);
424 m_logTargetOld
= wxLog::SetActiveTarget( new wxLogTextCtrl(m_text
) );
428 m_sizerFrame
= new wxBoxSizer(wxVERTICAL
);
431 m_sizerFrame
->Add(m_text
, 1, wxEXPAND
);
436 m_panel
->SetSizer(m_sizerFrame
);
439 wxBoxSizer
*sizer
= new wxBoxSizer(wxVERTICAL
);
440 sizer
->Add(m_panel
, wxSizerFlags(1).Expand());
441 SetSizerAndFit(sizer
);
447 delete wxLog::SetActiveTarget(m_logTargetOld
);
453 // DISPATCH_ON_TYPE() macro is an ugly way to write the "same" code for
454 // different wxBookCtrlBase-derived classes without duplicating code and
455 // without using templates, it expands into "before <xxx> after" where "xxx"
456 // part is control class-specific
458 #define CASE_NOTEBOOK(x) case Type_Notebook: x; break;
460 #define CASE_NOTEBOOK(x)
464 #define CASE_LISTBOOK(x) case Type_Listbook: x; break;
466 #define CASE_LISTBOOK(x)
470 #define CASE_CHOICEBOOK(x) case Type_Choicebook: x; break;
472 #define CASE_CHOICEBOOK(x)
476 #define CASE_TREEBOOK(x) case Type_Treebook: x; break;
478 #define CASE_TREEBOOK(x)
482 #define CASE_TOOLBOOK(x) case Type_Toolbook: x; break;
484 #define CASE_TOOLBOOK(x)
488 #define CASE_AUINOTEBOOK(x) case Type_AuiNotebook: x; break;
490 #define CASE_AUINOTEBOOK(x)
493 #define CASE_SIMPLEBOOK(x) case Type_Simplebook: x; break;
495 #define DISPATCH_ON_TYPE(before, nb, lb, cb, tb, toolb, aui, sb, after) \
498 CASE_NOTEBOOK(before nb after) \
499 CASE_LISTBOOK(before lb after) \
500 CASE_CHOICEBOOK(before cb after) \
501 CASE_TREEBOOK(before tb after) \
502 CASE_TOOLBOOK(before toolb after) \
503 CASE_AUINOTEBOOK(before aui after) \
504 CASE_SIMPLEBOOK(before sb after) \
507 wxFAIL_MSG( wxT("unknown book control type") ); \
510 void MyFrame::RecreateBook()
519 case ID_ORIENT_BOTTOM
:
527 case ID_ORIENT_RIGHT
:
532 flags
= wxBK_DEFAULT
;
536 if ( m_fixedWidth
&& m_type
== Type_Notebook
)
537 flags
|= wxNB_FIXEDWIDTH
;
538 if ( m_multi
&& m_type
== Type_Notebook
)
539 flags
|= wxNB_MULTILINE
;
540 if ( m_noPageTheme
&& m_type
== Type_Notebook
)
541 flags
|= wxNB_NOPAGETHEME
;
544 if ( m_buttonBar
&& m_type
== Type_Toolbook
)
545 flags
|= wxTBK_BUTTONBAR
;
546 if ( m_horzLayout
&& m_type
== Type_Toolbook
)
547 flags
|= wxTBK_HORZ_LAYOUT
;
550 wxBookCtrlBase
*oldBook
= m_bookCtrl
;
554 DISPATCH_ON_TYPE(m_bookCtrl
= new,
562 (m_panel
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, flags
));
569 // wxToolbook doesn't work without icons so always use them for it.
570 if ( m_chkShowImages
|| m_type
== Type_Toolbook
)
572 m_bookCtrl
->SetImageList(m_imageList
);
578 // we only need the old treebook if we're recreating another treebook
579 wxTreebook
*tbkOld
= m_type
== Type_Treebook
580 ? wxDynamicCast(oldBook
, wxTreebook
)
582 #endif // wxUSE_TREEBOOK
584 const int count
= oldBook
->GetPageCount();
585 for ( int n
= 0; n
< count
; n
++ )
587 const int image
= GetIconIndex(m_bookCtrl
);
588 const wxString str
= oldBook
->GetPageText(n
);
590 wxWindow
*page
= CreatePage(m_bookCtrl
, str
);
592 // treebook complication: need to account for possible parent page
596 const int parent
= tbkOld
->GetPageParent(n
);
597 if ( parent
!= wxNOT_FOUND
)
599 wxStaticCast(m_bookCtrl
, wxTreebook
)->
600 InsertSubPage(parent
, page
, str
, false, image
);
602 // skip adding it again below
606 #endif // wxUSE_TREEBOOK
608 m_bookCtrl
->AddPage(page
, str
, false, image
);
611 const int sel
= oldBook
->GetSelection();
612 if ( sel
!= wxNOT_FOUND
)
613 m_bookCtrl
->SetSelection(sel
);
616 m_sizerFrame
->Detach(oldBook
);
621 CreateInitialPages(m_bookCtrl
);
624 m_sizerFrame
->Insert(0, m_bookCtrl
, wxSizerFlags(5).Expand().Border());
626 m_sizerFrame
->Show(m_bookCtrl
);
627 m_sizerFrame
->Layout();
630 void MyFrame::AddFlagStrIfFlagPresent(wxString
& flagStr
, long flags
, long flag
,
631 const wxChar
* flagName
) const
633 if( (flags
& flag
) == flag
)
635 if( !flagStr
.empty() )
636 flagStr
+= wxT(" | ");
641 wxPanel
*MyFrame::CreateNewPage() const
643 wxPanel
*panel
= new wxPanel(m_bookCtrl
, wxID_ANY
);
646 panel
->SetHelpText( wxT( "Panel with \"First\" and \"Second\" buttons" ) );
649 (void) new wxButton(panel
, wxID_ANY
, wxT("First button"), wxPoint(10, 30));
650 (void) new wxButton(panel
, wxID_ANY
, wxT("Second button"), wxPoint(150, 30));
656 //-----------------------------------------------------------------------------
657 // MyFrame - event handlers
658 //-----------------------------------------------------------------------------
662 void MyFrame::OnContextHelp(wxCommandEvent
& WXUNUSED(event
))
664 // launches local event loop
665 wxContextHelp
ch( this );
670 void MyFrame::OnHitTest(wxCommandEvent
& WXUNUSED(event
))
672 wxBookCtrlBase
* book
= GetCurrentBook();
673 const wxPoint pt
= ::wxGetMousePosition();
676 int pagePos
= book
->HitTest( book
->ScreenToClient(pt
), &flags
);
680 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_NOWHERE
, wxT("wxBK_HITTEST_NOWHERE") );
681 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_ONICON
, wxT("wxBK_HITTEST_ONICON") );
682 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_ONLABEL
, wxT("wxBK_HITTEST_ONLABEL") );
683 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_ONPAGE
, wxT("wxBK_HITTEST_ONPAGE") );
685 wxLogMessage(wxT("HitTest at (%d,%d): %d: %s"),
692 void MyFrame::OnType(wxCommandEvent
& event
)
694 m_type
= static_cast<BookType
>(event
.GetId() - ID_BOOK_NOTEBOOK
);
697 m_sizerFrame
->Hide(m_bookCtrl
);
704 void MyFrame::OnUpdateTreeMenu(wxUpdateUIEvent
& event
)
706 event
.Enable(m_type
== Type_Treebook
);
709 #endif // wxUSE_TREEBOOK
711 void MyFrame::OnOrient(wxCommandEvent
& event
)
713 m_orient
= event
.GetId();
715 m_sizerFrame
->Layout();
718 void MyFrame::OnShowImages(wxCommandEvent
& event
)
720 m_chkShowImages
= event
.IsChecked();
722 m_sizerFrame
->Layout();
725 void MyFrame::OnStyle(wxCommandEvent
& event
)
727 bool checked
= event
.IsChecked();
728 switch (event
.GetId())
730 case ID_FIXEDWIDTH
: m_fixedWidth
= checked
; break;
731 case ID_MULTI
: m_multi
= checked
; break;
732 case ID_NOPAGETHEME
: m_noPageTheme
= checked
; break;
733 case ID_BUTTONBAR
: m_buttonBar
= checked
; break;
734 case ID_HORZ_LAYOUT
: m_horzLayout
= checked
; break;
735 default: break; // avoid compiler warning
739 m_sizerFrame
->Layout();
742 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
747 void MyFrame::OnAddPage(wxCommandEvent
& WXUNUSED(event
))
749 wxBookCtrlBase
*currBook
= GetCurrentBook();
753 static unsigned s_pageAdded
= 0;
754 currBook
->AddPage(CreateNewPage(),
757 ADDED_PAGE_NAME
wxT("%u"),
761 GetIconIndex(currBook
));
765 void MyFrame::OnAddPageNoSelect(wxCommandEvent
& WXUNUSED(event
))
767 wxBookCtrlBase
*currBook
= GetCurrentBook();
771 static unsigned s_pageAdded
= 0;
772 currBook
->AddPage(CreateNewPage(),
775 ADDED_PAGE_NAME
wxT("%u"),
779 GetIconIndex(currBook
));
784 void MyFrame::OnAddSubPage(wxCommandEvent
& WXUNUSED(event
))
786 wxTreebook
*currBook
= wxDynamicCast(GetCurrentBook(), wxTreebook
);
789 const int selPos
= currBook
->GetSelection();
790 if ( selPos
== wxNOT_FOUND
)
792 wxLogError(wxT("Select the parent page first!"));
796 static unsigned s_subPageAdded
= 0;
797 currBook
->InsertSubPage
803 ADDED_SUB_PAGE_NAME
wxT("%u"),
807 GetIconIndex(currBook
)
812 void MyFrame::OnAddPageBefore(wxCommandEvent
& WXUNUSED(event
))
814 wxBookCtrlBase
*currBook
= GetCurrentBook();
817 const int selPos
= currBook
->GetSelection();
818 if ( selPos
== wxNOT_FOUND
)
820 wxLogError(wxT("Select the parent page first!"));
824 static unsigned s_subPageAdded
= 0;
825 currBook
->InsertPage(selPos
,
829 ADDED_PAGE_NAME_BEFORE
wxT("%u"),
833 GetIconIndex(currBook
));
836 #endif // wxUSE_TREEBOOK
838 void MyFrame::OnInsertPage(wxCommandEvent
& WXUNUSED(event
))
840 static unsigned s_pageIns
= 0;
842 wxBookCtrlBase
*currBook
= GetCurrentBook();
846 wxPanel
*panel
= CreateUserCreatedPage( currBook
);
848 currBook
->InsertPage( 0, panel
,
849 wxString::Format(INSERTED_PAGE_NAME
wxT("%u"), ++s_pageIns
), false,
850 GetIconIndex(currBook
) );
852 currBook
->SetSelection(0);
856 void MyFrame::OnDeleteCurPage(wxCommandEvent
& WXUNUSED(event
))
858 wxBookCtrlBase
*currBook
= GetCurrentBook();
862 int sel
= currBook
->GetSelection();
864 if (sel
!= wxNOT_FOUND
)
866 currBook
->DeletePage(sel
);
871 void MyFrame::OnDeleteLastPage(wxCommandEvent
& WXUNUSED(event
))
873 wxBookCtrlBase
*currBook
= GetCurrentBook();
877 int page
= currBook
->GetPageCount();
881 currBook
->DeletePage(page
- 1);
886 void MyFrame::OnNextPage(wxCommandEvent
& WXUNUSED(event
))
888 wxBookCtrlBase
*currBook
= GetCurrentBook();
892 currBook
->AdvanceSelection();
896 void MyFrame::OnChangeSelection(wxCommandEvent
& WXUNUSED(event
))
898 wxBookCtrlBase
*currBook
= GetCurrentBook();
901 currBook
->ChangeSelection(0);
904 void MyFrame::OnSetSelection(wxCommandEvent
& WXUNUSED(event
))
906 wxBookCtrlBase
*currBook
= GetCurrentBook();
909 currBook
->SetSelection(0);
912 void MyFrame::OnGetPageSize(wxCommandEvent
& WXUNUSED(event
))
914 wxBookCtrlBase
* const currBook
= GetCurrentBook();
918 const wxSize sizePage
= currBook
->GetPage(0)->GetSize();
919 const wxSize sizeBook
= currBook
->GetSize();
921 wxLogMessage("Page size is (%d, %d), book size (%d, %d)",
922 sizePage
.x
, sizePage
.y
,
923 sizeBook
.x
, sizeBook
.y
);
926 void MyFrame::OnSetPageSize(wxCommandEvent
& WXUNUSED(event
))
928 wxBookCtrlBase
* const currBook
= GetCurrentBook();
932 const wxSize
sizePage(300, 300);
933 currBook
->SetPageSize(sizePage
);
935 wxLogMessage("Page size set to (%d, %d)",
936 sizePage
.x
, sizePage
.y
);
939 void MyFrame::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
941 static int s_nPages
= wxNOT_FOUND
;
942 static int s_nSel
= wxNOT_FOUND
;
943 static wxBookCtrlBase
*s_currBook
= NULL
;
945 wxBookCtrlBase
*currBook
= GetCurrentBook();
947 int nPages
= currBook
? currBook
->GetPageCount() : 0;
948 int nSel
= currBook
? currBook
->GetSelection() : wxNOT_FOUND
;
950 if ( nPages
!= s_nPages
|| nSel
!= s_nSel
|| s_currBook
!= currBook
)
954 s_currBook
= currBook
;
957 if ( nSel
== wxNOT_FOUND
)
958 selection
<< wxT("not found");
963 title
.Printf(wxT("Notebook and friends (%d pages, selection: %s)"), nPages
, selection
.c_str());
969 void MyFrame::OnBookCtrl(wxBookCtrlBaseEvent
& event
)
971 static const struct EventInfo
973 wxEventType typeChanged
,
980 wxEVT_NOTEBOOK_PAGE_CHANGED
,
981 wxEVT_NOTEBOOK_PAGE_CHANGING
,
984 #endif // wxUSE_NOTEBOOK
987 wxEVT_LISTBOOK_PAGE_CHANGED
,
988 wxEVT_LISTBOOK_PAGE_CHANGING
,
991 #endif // wxUSE_LISTBOOK
994 wxEVT_CHOICEBOOK_PAGE_CHANGED
,
995 wxEVT_CHOICEBOOK_PAGE_CHANGING
,
998 #endif // wxUSE_CHOICEBOOK
1001 wxEVT_TREEBOOK_PAGE_CHANGED
,
1002 wxEVT_TREEBOOK_PAGE_CHANGING
,
1005 #endif // wxUSE_TREEBOOK
1008 wxEVT_TOOLBOOK_PAGE_CHANGED
,
1009 wxEVT_TOOLBOOK_PAGE_CHANGING
,
1012 #endif // wxUSE_TOOLBOOK
1015 wxEVT_AUINOTEBOOK_PAGE_CHANGED
,
1016 wxEVT_AUINOTEBOOK_PAGE_CHANGING
,
1017 wxT("wxAuiNotebook")
1026 const wxEventType eventType
= event
.GetEventType();
1028 // NB: can't use wxStaticCast here as wxBookCtrlBase is not in
1030 const wxBookCtrlBase
* const
1031 book
= static_cast<wxBookCtrlBase
*>(event
.GetEventObject());
1033 for ( size_t n
= 0; n
< WXSIZEOF(events
); n
++ )
1035 const EventInfo
& ei
= events
[n
];
1036 if ( eventType
== ei
.typeChanged
)
1038 nameEvent
= wxT("Changed");
1040 else if ( eventType
== ei
.typeChanging
)
1042 const int idx
= event
.GetOldSelection();
1044 if ( idx
!= wxNOT_FOUND
&&
1045 book
&& book
->GetPageText(idx
) == VETO_PAGE_NAME
)
1049 wxT("Are you sure you want to leave this page?\n")
1050 wxT("(This demonstrates veto-ing)"),
1051 wxT("Notebook sample"),
1052 wxICON_QUESTION
| wxYES_NO
,
1057 veto
= wxT(" (vetoed)");
1061 nameEvent
= wxT("Changing");
1063 else // skip end of the loop
1068 nameControl
= ei
.name
;
1072 static int s_num
= 0;
1074 wxLogMessage(wxT("Event #%d: %s: %s (%d) new sel %d, old %d, current %d%s"),
1076 nameControl
.c_str(),
1079 event
.GetSelection(),
1080 event
.GetOldSelection(),
1081 book
->GetSelection(),
1085 m_text
->SetInsertionPointEnd();