From: Vadim Zeitlin Date: Sun, 7 Nov 2010 19:33:22 +0000 (+0000) Subject: Test both ChangeSelection() and SetSelection() in notebook sample. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f7aaef4d5359231941e34faf68f6c8c37f0f2924 Test both ChangeSelection() and SetSelection() in notebook sample. Test wxBookCtrl::SetSelection() too to be able to check that it does generate events as expected. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/notebook/notebook.cpp b/samples/notebook/notebook.cpp index 39533d2175..a0adb5ed61 100644 --- a/samples/notebook/notebook.cpp +++ b/samples/notebook/notebook.cpp @@ -238,7 +238,8 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(ID_DELETE_CUR_PAGE, MyFrame::OnDeleteCurPage) EVT_MENU(ID_DELETE_LAST_PAGE, MyFrame::OnDeleteLastPage) EVT_MENU(ID_NEXT_PAGE, MyFrame::OnNextPage) - EVT_MENU(ID_GO_HOME, MyFrame::OnGoHome) + EVT_MENU(ID_CHANGE_SELECTION, MyFrame::OnChangeSelection) + EVT_MENU(ID_SET_SELECTION, MyFrame::OnSetSelection) #if wxUSE_HELP EVT_MENU(ID_CONTEXT_HELP, MyFrame::OnContextHelp) @@ -343,7 +344,8 @@ MyFrame::MyFrame() menuPageOperations->Append(ID_ADD_SUB_PAGE, wxT("Add s&ub page\tAlt-U")); #endif menuPageOperations->AppendSeparator(); - menuPageOperations->Append(ID_GO_HOME, wxT("Go to the first page\tCtrl-F")); + menuPageOperations->Append(ID_CHANGE_SELECTION, wxT("&Change selection to 0\tCtrl-0")); + menuPageOperations->Append(ID_SET_SELECTION, wxT("&Set selection to 0\tShift-Ctrl-0")); wxMenu *menuOperations = new wxMenu; #if wxUSE_HELP @@ -838,16 +840,20 @@ void MyFrame::OnNextPage(wxCommandEvent& WXUNUSED(event)) } } -void MyFrame::OnGoHome(wxCommandEvent& WXUNUSED(event)) +void MyFrame::OnChangeSelection(wxCommandEvent& WXUNUSED(event)) { wxBookCtrlBase *currBook = GetCurrentBook(); if ( currBook ) - { - // ChangeSelection shouldn't send any events, SetSelection() should currBook->ChangeSelection(0); - //currBook->SetSelection(0); - } +} + +void MyFrame::OnSetSelection(wxCommandEvent& WXUNUSED(event)) +{ + wxBookCtrlBase *currBook = GetCurrentBook(); + + if ( currBook ) + currBook->SetSelection(0); } void MyFrame::OnIdle( wxIdleEvent& WXUNUSED(event) ) diff --git a/samples/notebook/notebook.h b/samples/notebook/notebook.h index bd3146ecaa..e92a039bc4 100644 --- a/samples/notebook/notebook.h +++ b/samples/notebook/notebook.h @@ -49,7 +49,8 @@ public: void OnDeleteCurPage(wxCommandEvent& event); void OnDeleteLastPage(wxCommandEvent& event); void OnNextPage(wxCommandEvent& event); - void OnGoHome(wxCommandEvent &event); + void OnChangeSelection(wxCommandEvent &event); + void OnSetSelection(wxCommandEvent &event); void OnAddSubPage(wxCommandEvent& event); void OnAddPageBefore(wxCommandEvent& event); @@ -150,7 +151,8 @@ enum ID_COMMANDS ID_NEXT_PAGE, ID_ADD_PAGE_BEFORE, ID_ADD_SUB_PAGE, - ID_GO_HOME, + ID_CHANGE_SELECTION, + ID_SET_SELECTION, #if wxUSE_HELP ID_CONTEXT_HELP,