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 #if !defined(__WXMSW__) && !defined(__WXPM__)
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();
52 // Problem with generic wxNotebook implementation whereby it doesn't size
53 // properly unless you set the size again
54 #if defined(__WXMOTIF__)
56 frame
->GetSize(& width
, & height
);
57 frame
->SetSize(wxDefaultCoord
, wxDefaultCoord
, width
, height
);
66 //-----------------------------------------------------------------------------
68 //-----------------------------------------------------------------------------
70 wxPanel
*CreateUserCreatedPage(wxBookCtrlBase
*parent
)
72 wxPanel
*panel
= new wxPanel(parent
);
75 panel
->SetHelpText( wxT( "Panel with a Button" ) );
78 (void) new wxButton( panel
, wxID_ANY
, wxT("Button"),
79 wxPoint(10, 10), wxDefaultSize
);
84 wxPanel
*CreateRadioButtonsPage(wxBookCtrlBase
*parent
)
86 wxPanel
*panel
= new wxPanel(parent
);
89 panel
->SetHelpText( wxT( "Panel with some Radio Buttons" ) );
93 { wxT("Fox"), wxT("Hare"), wxT("Rabbit"),
94 wxT("Sabre-toothed tiger"), wxT("T Rex") };
96 wxRadioBox
*radiobox1
= new wxRadioBox(panel
, wxID_ANY
, wxT("Choose one"),
97 wxDefaultPosition
, wxDefaultSize
, 5, animals
, 2, wxRA_SPECIFY_ROWS
);
99 wxString computers
[] =
100 { wxT("Amiga"), wxT("Commodore 64"), wxT("PET"),
103 wxRadioBox
*radiobox2
= new wxRadioBox(panel
, wxID_ANY
,
104 wxT("Choose your favourite"), wxDefaultPosition
, wxDefaultSize
,
105 4, computers
, 0, wxRA_SPECIFY_COLS
);
107 wxBoxSizer
*sizerPanel
= new wxBoxSizer(wxVERTICAL
);
108 sizerPanel
->Add(radiobox1
, 2, wxEXPAND
);
109 sizerPanel
->Add(radiobox2
, 1, wxEXPAND
);
110 panel
->SetSizer(sizerPanel
);
115 wxPanel
*CreateVetoPage(wxBookCtrlBase
*parent
)
117 wxPanel
*panel
= new wxPanel(parent
);
120 panel
->SetHelpText( wxT( "An empty panel" ) );
123 (void) new wxStaticText( panel
, wxID_ANY
,
124 wxT("This page intentionally left blank"),
130 wxPanel
*CreateBigButtonPage(wxBookCtrlBase
*parent
)
132 wxPanel
*panel
= new wxPanel(parent
);
135 panel
->SetHelpText( wxT( "Panel with a maximized button" ) );
138 wxButton
*buttonBig
= new wxButton(panel
, wxID_ANY
, wxT("Maximized button"));
140 wxBoxSizer
*sizerPanel
= new wxBoxSizer(wxVERTICAL
);
141 sizerPanel
->Add(buttonBig
, 1, wxEXPAND
);
142 panel
->SetSizer(sizerPanel
);
147 wxPanel
*CreateInsertPage(wxBookCtrlBase
*parent
)
149 wxPanel
*panel
= new wxPanel(parent
);
152 panel
->SetHelpText( wxT( "Maroon panel" ) );
155 panel
->SetBackgroundColour( wxColour( wxT("MAROON") ) );
156 (void) new wxStaticText( panel
, wxID_ANY
,
157 wxT("This page has been inserted, not added."),
163 int GetIconIndex(wxBookCtrlBase
* bookCtrl
)
165 if (bookCtrl
&& bookCtrl
->GetImageList())
167 int nImages
= bookCtrl
->GetImageList()->GetImageCount();
170 return bookCtrl
->GetPageCount() % nImages
;
177 void CreateInitialPages(wxBookCtrlBase
*parent
)
179 // Create and add some panels to the notebook
181 wxPanel
*panel
= CreateRadioButtonsPage(parent
);
182 parent
->AddPage( panel
, RADIOBUTTONS_PAGE_NAME
, false, GetIconIndex(parent
) );
184 panel
= CreateVetoPage(parent
);
185 parent
->AddPage( panel
, VETO_PAGE_NAME
, false, GetIconIndex(parent
) );
187 panel
= CreateBigButtonPage(parent
);
188 parent
->AddPage( panel
, MAXIMIZED_BUTTON_PAGE_NAME
, false, GetIconIndex(parent
) );
190 panel
= CreateInsertPage(parent
);
191 parent
->InsertPage( 0, panel
, I_WAS_INSERTED_PAGE_NAME
, false, GetIconIndex(parent
) );
193 parent
->SetSelection(1);
196 wxPanel
*CreatePage(wxBookCtrlBase
*parent
, const wxString
&pageName
)
198 if ( pageName
.Contains(INSERTED_PAGE_NAME
) ||
199 pageName
.Contains(ADDED_PAGE_NAME
) ||
200 pageName
.Contains(ADDED_SUB_PAGE_NAME
) ||
201 pageName
.Contains(ADDED_PAGE_NAME_BEFORE
) )
202 return CreateUserCreatedPage(parent
);
204 if ( pageName
== I_WAS_INSERTED_PAGE_NAME
)
205 return CreateInsertPage(parent
);
207 if ( pageName
== VETO_PAGE_NAME
)
208 return CreateVetoPage(parent
);
210 if ( pageName
== RADIOBUTTONS_PAGE_NAME
)
211 return CreateRadioButtonsPage(parent
);
213 if ( pageName
== MAXIMIZED_BUTTON_PAGE_NAME
)
214 return CreateBigButtonPage(parent
);
216 wxFAIL_MSG( wxT("unknown page name") );
222 //-----------------------------------------------------------------------------
224 //-----------------------------------------------------------------------------
226 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
228 EVT_MENU_RANGE(ID_BOOK_NOTEBOOK
, ID_BOOK_MAX
, MyFrame::OnType
)
229 EVT_MENU_RANGE(ID_ORIENT_DEFAULT
, ID_ORIENT_MAX
, MyFrame::OnOrient
)
230 EVT_MENU(ID_SHOW_IMAGES
, MyFrame::OnShowImages
)
231 EVT_MENU(ID_MULTI
, MyFrame::OnMulti
)
232 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
235 EVT_MENU(ID_ADD_PAGE
, MyFrame::OnAddPage
)
236 EVT_MENU(ID_ADD_PAGE_NO_SELECT
, MyFrame::OnAddPageNoSelect
)
237 EVT_MENU(ID_INSERT_PAGE
, MyFrame::OnInsertPage
)
238 EVT_MENU(ID_DELETE_CUR_PAGE
, MyFrame::OnDeleteCurPage
)
239 EVT_MENU(ID_DELETE_LAST_PAGE
, MyFrame::OnDeleteLastPage
)
240 EVT_MENU(ID_NEXT_PAGE
, MyFrame::OnNextPage
)
241 EVT_MENU(ID_GO_HOME
, MyFrame::OnGoHome
)
244 EVT_MENU(ID_CONTEXT_HELP
, MyFrame::OnContextHelp
)
246 EVT_MENU(ID_HITTEST
, MyFrame::OnHitTest
)
250 EVT_NOTEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnNotebook
)
251 EVT_NOTEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnNotebook
)
254 EVT_LISTBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnListbook
)
255 EVT_LISTBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnListbook
)
258 EVT_CHOICEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnChoicebook
)
259 EVT_CHOICEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnChoicebook
)
262 EVT_TREEBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnTreebook
)
263 EVT_TREEBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnTreebook
)
265 EVT_MENU(ID_ADD_SUB_PAGE
, MyFrame::OnAddSubPage
)
266 EVT_MENU(ID_ADD_PAGE_BEFORE
, MyFrame::OnAddPageBefore
)
267 EVT_UPDATE_UI_RANGE(ID_ADD_PAGE_BEFORE
, ID_ADD_SUB_PAGE
,
268 MyFrame::OnUpdateTreeMenu
)
271 EVT_TOOLBOOK_PAGE_CHANGED(wxID_ANY
, MyFrame::OnToolbook
)
272 EVT_TOOLBOOK_PAGE_CHANGING(wxID_ANY
, MyFrame::OnToolbook
)
275 // Update title in idle time
276 EVT_IDLE(MyFrame::OnIdle
)
280 : wxFrame(NULL
, wxID_ANY
, wxString(wxT("wxWidgets book controls sample")))
283 SetExtraStyle(wxFRAME_EX_CONTEXTHELP
);
287 m_type
= Type_Notebook
;
288 #elif wxUSE_CHOICEBOOK
289 m_type
= Type_Choicebook
;
291 m_type
= Type_Listbook
;
293 m_type
= Type_Treebook
;
295 m_type
= Type_Toolbook
;
297 #error "Don't use Notebook sample without any book enabled in wxWidgets build!"
300 m_orient
= ID_ORIENT_DEFAULT
;
301 m_chkShowImages
= true;
304 SetIcon(wxICON(sample
));
306 // menu of the sample
307 wxMenu
*menuType
= new wxMenu
;
309 menuType
->AppendRadioItem(ID_BOOK_NOTEBOOK
, wxT("&Notebook\tCtrl-1"));
312 menuType
->AppendRadioItem(ID_BOOK_LISTBOOK
, wxT("&Listbook\tCtrl-2"));
315 menuType
->AppendRadioItem(ID_BOOK_CHOICEBOOK
, wxT("&Choicebook\tCtrl-3"));
318 menuType
->AppendRadioItem(ID_BOOK_TREEBOOK
, wxT("&Treebook\tCtrl-4"));
321 menuType
->AppendRadioItem(ID_BOOK_TOOLBOOK
, wxT("T&oolbook\tCtrl-5"));
324 menuType
->Check(ID_BOOK_NOTEBOOK
+ m_type
, true);
326 wxMenu
*menuOrient
= new wxMenu
;
327 menuOrient
->AppendRadioItem(ID_ORIENT_DEFAULT
, wxT("&Default\tAlt-0"));
328 menuOrient
->AppendRadioItem(ID_ORIENT_TOP
, wxT("&Top\tAlt-1"));
329 menuOrient
->AppendRadioItem(ID_ORIENT_BOTTOM
, wxT("&Bottom\tAlt-2"));
330 menuOrient
->AppendRadioItem(ID_ORIENT_LEFT
, wxT("&Left\tAlt-3"));
331 menuOrient
->AppendRadioItem(ID_ORIENT_RIGHT
, wxT("&Right\tAlt-4"));
333 wxMenu
*menuPageOperations
= new wxMenu
;
334 menuPageOperations
->Append(ID_ADD_PAGE
, wxT("&Add page\tAlt-A"));
335 menuPageOperations
->Append(ID_ADD_PAGE_NO_SELECT
, wxT("&Add page (don't select)\tAlt-B"));
336 menuPageOperations
->Append(ID_INSERT_PAGE
, wxT("&Insert page\tAlt-I"));
337 menuPageOperations
->Append(ID_DELETE_CUR_PAGE
, wxT("&Delete current page\tAlt-D"));
338 menuPageOperations
->Append(ID_DELETE_LAST_PAGE
, wxT("D&elete last page\tAlt-L"));
339 menuPageOperations
->Append(ID_NEXT_PAGE
, wxT("&Next page\tAlt-N"));
341 menuPageOperations
->AppendSeparator();
342 menuPageOperations
->Append(ID_ADD_PAGE_BEFORE
, wxT("Insert page &before\tAlt-B"));
343 menuPageOperations
->Append(ID_ADD_SUB_PAGE
, wxT("Add s&ub page\tAlt-U"));
345 menuPageOperations
->AppendSeparator();
346 menuPageOperations
->Append(ID_GO_HOME
, wxT("Go to the first page\tCtrl-F"));
348 wxMenu
*menuOperations
= new wxMenu
;
350 menuOperations
->Append(ID_CONTEXT_HELP
, wxT("&Context help\tCtrl-F1"));
352 menuOperations
->Append(ID_HITTEST
, wxT("&Hit test\tCtrl-H"));
354 wxMenu
*menuFile
= new wxMenu
;
355 menuFile
->Append(wxID_ANY
, wxT("&Type"), menuType
, wxT("Type of control"));
356 menuFile
->Append(wxID_ANY
, wxT("&Orientation"), menuOrient
, wxT("Orientation of control"));
357 menuFile
->AppendCheckItem(ID_SHOW_IMAGES
, wxT("&Show images\tAlt-S"));
358 menuFile
->AppendCheckItem(ID_MULTI
, wxT("&Multiple lines\tAlt-M"));
359 menuFile
->AppendSeparator();
360 menuFile
->Append(wxID_EXIT
, wxT("E&xit"), wxT("Quits the application"));
361 menuFile
->Check(ID_SHOW_IMAGES
, m_chkShowImages
);
362 menuFile
->Check(ID_MULTI
, m_multi
);
364 wxMenuBar
*menuBar
= new wxMenuBar
;
365 menuBar
->Append(menuFile
, wxT("&File"));
366 menuBar
->Append(menuPageOperations
, wxT("&Pages"));
367 menuBar
->Append(menuOperations
, wxT("&Operations"));
374 // create a dummy image list with a few icons
375 const wxSize
imageSize(32, 32);
377 m_imageList
= new wxImageList(imageSize
.GetWidth(), imageSize
.GetHeight());
379 Add(wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_OTHER
, imageSize
));
381 Add(wxArtProvider::GetIcon(wxART_QUESTION
, wxART_OTHER
, imageSize
));
383 Add(wxArtProvider::GetIcon(wxART_WARNING
, wxART_OTHER
, imageSize
));
385 Add(wxArtProvider::GetIcon(wxART_ERROR
, wxART_OTHER
, imageSize
));
387 m_panel
= new wxPanel(this);
390 m_text
= new wxTextCtrl(m_panel
, wxID_ANY
, wxEmptyString
,
391 wxDefaultPosition
, wxDefaultSize
,
392 wxTE_MULTILINE
| wxTE_READONLY
);
394 m_logTargetOld
= wxLog::SetActiveTarget( new wxLogTextCtrl(m_text
) );
398 m_sizerFrame
= new wxBoxSizer(wxVERTICAL
);
401 m_sizerFrame
->Add(m_text
, 1, wxEXPAND
);
406 m_panel
->SetSizer(m_sizerFrame
);
409 wxBoxSizer
*sizer
= new wxBoxSizer(wxVERTICAL
);
410 sizer
->Add(m_panel
, wxSizerFlags(1).Expand());
411 SetSizerAndFit(sizer
);
417 delete wxLog::SetActiveTarget(m_logTargetOld
);
423 // DISPATCH_ON_TYPE() macro is an ugly way to write the "same" code for
424 // different wxBookCtrlBase-derived classes without duplicating code and
425 // without using templates, it expands into "before <xxx> after" where "xxx"
426 // part is control class-specific
428 #define CASE_NOTEBOOK(x) case Type_Notebook: x; break;
430 #define CASE_NOTEBOOK(x)
434 #define CASE_LISTBOOK(x) case Type_Listbook: x; break;
436 #define CASE_LISTBOOK(x)
440 #define CASE_CHOICEBOOK(x) case Type_Choicebook: x; break;
442 #define CASE_CHOICEBOOK(x)
446 #define CASE_TREEBOOK(x) case Type_Treebook: x; break;
448 #define CASE_TREEBOOK(x)
452 #define CASE_TOOLBOOK(x) case Type_Toolbook: x; break;
454 #define CASE_TOOLBOOK(x)
457 #define DISPATCH_ON_TYPE(before, nb, lb, cb, tb, toolb, after) \
460 CASE_NOTEBOOK(before nb after) \
461 CASE_LISTBOOK(before lb after) \
462 CASE_CHOICEBOOK(before cb after) \
463 CASE_TREEBOOK(before tb after) \
464 CASE_TOOLBOOK(before toolb after) \
467 wxFAIL_MSG( wxT("unknown book control type") ); \
470 int MyFrame::TranslateBookFlag(int nb
, int lb
, int chb
, int tbk
, int toolbk
) const
474 DISPATCH_ON_TYPE(flag
=, nb
, lb
, chb
, tbk
, toolbk
, + 0);
479 void MyFrame::RecreateBook()
488 case ID_ORIENT_BOTTOM
:
496 case ID_ORIENT_RIGHT
:
501 flags
= wxBK_DEFAULT
;
504 if ( m_multi
&& m_type
== Type_Notebook
)
505 flags
|= wxNB_MULTILINE
;
507 wxBookCtrlBase
*oldBook
= m_bookCtrl
;
511 DISPATCH_ON_TYPE(m_bookCtrl
= new,
517 (m_panel
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, flags
));
524 if ( m_chkShowImages
)
526 m_bookCtrl
->SetImageList(m_imageList
);
532 // we only need the old treebook if we're recreating another treebook
533 wxTreebook
*tbkOld
= m_type
== Type_Treebook
534 ? wxDynamicCast(oldBook
, wxTreebook
)
536 #endif // wxUSE_TREEBOOK
538 const int count
= oldBook
->GetPageCount();
539 for ( int n
= 0; n
< count
; n
++ )
541 const int image
= GetIconIndex(m_bookCtrl
);
542 const wxString str
= oldBook
->GetPageText(n
);
544 wxWindow
*page
= CreatePage(m_bookCtrl
, str
);
546 // treebook complication: need to account for possible parent page
550 const int parent
= tbkOld
->GetPageParent(n
);
551 if ( parent
!= wxNOT_FOUND
)
553 wxStaticCast(m_bookCtrl
, wxTreebook
)->
554 InsertSubPage(parent
, page
, str
, false, image
);
556 // skip adding it again below
560 #endif // wxUSE_TREEBOOK
562 m_bookCtrl
->AddPage(page
, str
, false, image
);
565 const int sel
= oldBook
->GetSelection();
566 if ( sel
!= wxNOT_FOUND
)
567 m_bookCtrl
->SetSelection(sel
);
570 m_sizerFrame
->Detach(oldBook
);
575 CreateInitialPages(m_bookCtrl
);
578 m_sizerFrame
->Insert(0, m_bookCtrl
, wxSizerFlags(5).Expand().Border());
580 m_sizerFrame
->Show(m_bookCtrl
);
581 m_sizerFrame
->Layout();
584 void MyFrame::AddFlagStrIfFlagPresent(wxString
& flagStr
, long flags
, long flag
,
585 const wxChar
* flagName
) const
587 if( (flags
& flag
) == flag
)
589 if( !flagStr
.empty() )
590 flagStr
+= wxT(" | ");
595 wxPanel
*MyFrame::CreateNewPage() const
597 wxPanel
*panel
= new wxPanel(m_bookCtrl
, wxID_ANY
);
600 panel
->SetHelpText( wxT( "Panel with \"First\" and \"Second\" buttons" ) );
603 (void) new wxButton(panel
, wxID_ANY
, wxT("First button"), wxPoint(10, 30));
604 (void) new wxButton(panel
, wxID_ANY
, wxT("Second button"), wxPoint(150, 30));
610 //-----------------------------------------------------------------------------
611 // MyFrame - event handlers
612 //-----------------------------------------------------------------------------
616 void MyFrame::OnContextHelp(wxCommandEvent
& WXUNUSED(event
))
618 // launches local event loop
619 wxContextHelp
ch( this );
624 void MyFrame::OnHitTest(wxCommandEvent
& WXUNUSED(event
))
626 wxBookCtrlBase
* book
= GetCurrentBook();
627 const wxPoint pt
= ::wxGetMousePosition();
630 int pagePos
= book
->HitTest( book
->ScreenToClient(pt
), &flags
);
634 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_NOWHERE
, wxT("wxBK_HITTEST_NOWHERE") );
635 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_ONICON
, wxT("wxBK_HITTEST_ONICON") );
636 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_ONLABEL
, wxT("wxBK_HITTEST_ONLABEL") );
637 AddFlagStrIfFlagPresent( flagsStr
, flags
, wxBK_HITTEST_ONPAGE
, wxT("wxBK_HITTEST_ONPAGE") );
639 wxLogMessage(wxT("HitTest at (%d,%d): %d: %s"),
646 void MyFrame::OnType(wxCommandEvent
& event
)
648 m_type
= static_cast<BookType
>(event
.GetId() - ID_BOOK_NOTEBOOK
);
651 m_sizerFrame
->Hide(m_bookCtrl
);
658 void MyFrame::OnUpdateTreeMenu(wxUpdateUIEvent
& event
)
660 event
.Enable(m_type
== Type_Treebook
);
663 #endif // wxUSE_TREEBOOK
665 void MyFrame::OnOrient(wxCommandEvent
& event
)
667 m_orient
= event
.GetId();
669 m_sizerFrame
->Layout();
672 void MyFrame::OnShowImages(wxCommandEvent
& event
)
674 m_chkShowImages
= event
.IsChecked();
676 m_sizerFrame
->Layout();
679 void MyFrame::OnMulti(wxCommandEvent
& event
)
681 m_multi
= event
.IsChecked();
683 m_sizerFrame
->Layout();
684 wxLogMessage(wxT("Multiline setting works only in wxNotebook."));
687 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
692 void MyFrame::OnAddPage(wxCommandEvent
& WXUNUSED(event
))
694 wxBookCtrlBase
*currBook
= GetCurrentBook();
698 static unsigned s_pageAdded
= 0;
699 currBook
->AddPage(CreateNewPage(),
702 ADDED_PAGE_NAME
wxT("%u"),
706 GetIconIndex(currBook
));
710 void MyFrame::OnAddPageNoSelect(wxCommandEvent
& WXUNUSED(event
))
712 wxBookCtrlBase
*currBook
= GetCurrentBook();
716 static unsigned s_pageAdded
= 0;
717 currBook
->AddPage(CreateNewPage(),
720 ADDED_PAGE_NAME
wxT("%u"),
724 GetIconIndex(currBook
));
729 void MyFrame::OnAddSubPage(wxCommandEvent
& WXUNUSED(event
))
731 wxTreebook
*currBook
= wxDynamicCast(GetCurrentBook(), wxTreebook
);
734 const int selPos
= currBook
->GetSelection();
735 if ( selPos
== wxNOT_FOUND
)
737 wxLogError(wxT("Select the parent page first!"));
741 static unsigned s_subPageAdded
= 0;
742 currBook
->InsertSubPage
748 ADDED_SUB_PAGE_NAME
wxT("%u"),
752 GetIconIndex(currBook
)
757 void MyFrame::OnAddPageBefore(wxCommandEvent
& WXUNUSED(event
))
759 wxBookCtrlBase
*currBook
= GetCurrentBook();
762 const int selPos
= currBook
->GetSelection();
763 if ( selPos
== wxNOT_FOUND
)
765 wxLogError(wxT("Select the parent page first!"));
769 static unsigned s_subPageAdded
= 0;
770 currBook
->InsertPage(selPos
,
774 ADDED_PAGE_NAME_BEFORE
wxT("%u"),
778 GetIconIndex(currBook
));
781 #endif // wxUSE_TREEBOOK
783 void MyFrame::OnInsertPage(wxCommandEvent
& WXUNUSED(event
))
785 static unsigned s_pageIns
= 0;
787 wxBookCtrlBase
*currBook
= GetCurrentBook();
791 wxPanel
*panel
= CreateUserCreatedPage( currBook
);
793 currBook
->InsertPage( 0, panel
,
794 wxString::Format(INSERTED_PAGE_NAME
wxT("%u"), ++s_pageIns
), false,
795 GetIconIndex(currBook
) );
797 currBook
->SetSelection(0);
801 void MyFrame::OnDeleteCurPage(wxCommandEvent
& WXUNUSED(event
))
803 wxBookCtrlBase
*currBook
= GetCurrentBook();
807 int sel
= currBook
->GetSelection();
809 if (sel
!= wxNOT_FOUND
)
811 currBook
->DeletePage(sel
);
816 void MyFrame::OnDeleteLastPage(wxCommandEvent
& WXUNUSED(event
))
818 wxBookCtrlBase
*currBook
= GetCurrentBook();
822 int page
= currBook
->GetPageCount();
826 currBook
->DeletePage(page
- 1);
831 void MyFrame::OnNextPage(wxCommandEvent
& WXUNUSED(event
))
833 wxBookCtrlBase
*currBook
= GetCurrentBook();
837 currBook
->AdvanceSelection();
841 void MyFrame::OnGoHome(wxCommandEvent
& WXUNUSED(event
))
843 wxBookCtrlBase
*currBook
= GetCurrentBook();
847 // ChangeSelection shouldn't send any events, SetSelection() should
848 currBook
->ChangeSelection(0);
849 //currBook->SetSelection(0);
853 void MyFrame::OnIdle( wxIdleEvent
& WXUNUSED(event
) )
855 static int s_nPages
= wxNOT_FOUND
;
856 static int s_nSel
= wxNOT_FOUND
;
857 static wxBookCtrlBase
*s_currBook
= NULL
;
859 wxBookCtrlBase
*currBook
= GetCurrentBook();
861 int nPages
= currBook
? currBook
->GetPageCount() : 0;
862 int nSel
= currBook
? currBook
->GetSelection() : wxNOT_FOUND
;
864 if ( nPages
!= s_nPages
|| nSel
!= s_nSel
|| s_currBook
!= currBook
)
868 s_currBook
= currBook
;
871 if ( nSel
== wxNOT_FOUND
)
872 selection
<< wxT("not found");
877 title
.Printf(wxT("Notebook and friends (%d pages, selection: %s)"), nPages
, selection
.c_str());
883 void MyFrame::OnBookCtrl(wxBookCtrlBaseEvent
& event
)
885 static const struct EventInfo
887 wxEventType typeChanged
,
894 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
,
895 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
,
898 #endif // wxUSE_NOTEBOOK
901 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
,
902 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
,
905 #endif // wxUSE_LISTBOOK
908 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
,
909 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
,
912 #endif // wxUSE_CHOICEBOOK
915 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
,
916 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
,
919 #endif // wxUSE_TREEBOOK
922 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
,
923 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
,
926 #endif // wxUSE_TOOLBOOK
933 const wxEventType eventType
= event
.GetEventType();
934 for ( size_t n
= 0; n
< WXSIZEOF(events
); n
++ )
936 const EventInfo
& ei
= events
[n
];
937 if ( eventType
== ei
.typeChanged
)
939 nameEvent
= wxT("Changed");
941 else if ( eventType
== ei
.typeChanging
)
943 const int idx
= event
.GetOldSelection();
945 // NB: can't use wxStaticCast here as wxBookCtrlBase is not in
947 const wxBookCtrlBase
* const
948 book
= static_cast<wxBookCtrlBase
*>(event
.GetEventObject());
949 if ( idx
!= wxNOT_FOUND
&&
950 book
&& book
->GetPageText(idx
) == VETO_PAGE_NAME
)
954 wxT("Are you sure you want to leave this page?\n")
955 wxT("(This demonstrates veto-ing)"),
956 wxT("Notebook sample"),
957 wxICON_QUESTION
| wxYES_NO
,
962 veto
= wxT(" (vetoed)");
966 nameEvent
= wxT("Changing");
968 else // skip end of the loop
973 nameControl
= ei
.name
;
977 static int s_num
= 0;
979 wxLogMessage(wxT("Event #%d: %s: %s (%d) new sel %d, old %d%s"),
984 event
.GetSelection(),
985 event
.GetOldSelection(),
989 m_text
->SetInsertionPointEnd();