1. fruitless attempts to reproduce wxNotebook bug in the sample
2. multiple selection related changes in the treetest git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -15,12 +15,12 @@
|
||||
class MyApp: public wxApp
|
||||
{
|
||||
public:
|
||||
bool OnInit(void);
|
||||
bool OnInit();
|
||||
void InitTabView(wxNotebook* notebook, wxPanel* window);
|
||||
|
||||
wxButton* m_okButton;
|
||||
wxButton* m_cancelButton;
|
||||
wxButton* m_addPageButton;
|
||||
wxButton* m_addPageButton, *m_insertPageButton;
|
||||
wxButton* m_nextPageButton;
|
||||
};
|
||||
|
||||
@@ -36,7 +36,7 @@ public:
|
||||
|
||||
void OnOK(wxCommandEvent& event);
|
||||
void OnCloseWindow(wxCloseEvent& event);
|
||||
void Init(void);
|
||||
void Init();
|
||||
|
||||
protected:
|
||||
wxNotebook* m_notebook;
|
||||
@@ -55,6 +55,7 @@ public:
|
||||
void OnOK(wxCommandEvent& event);
|
||||
void OnCloseWindow(wxCloseEvent& event);
|
||||
void OnAddPage(wxCommandEvent& event);
|
||||
void OnInsertPage(wxCommandEvent& event);
|
||||
void OnNextPage(wxCommandEvent& event);
|
||||
void OnDeletePage(wxCommandEvent& event);
|
||||
void OnIdle(wxIdleEvent& event);
|
||||
@@ -91,4 +92,5 @@ protected:
|
||||
#define ID_ADD_PAGE 1200
|
||||
#define ID_DELETE_PAGE 1201
|
||||
#define ID_NEXT_PAGE 1202
|
||||
#define ID_INSERT_PAGE 1203
|
||||
|
||||
|
Reference in New Issue
Block a user