Merged wxPython 2.4.x to the 2.5 branch (Finally!!!)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19793 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -43,7 +43,8 @@ enum {
|
||||
wxEVT_WIZARD_PAGE_CHANGED,
|
||||
wxEVT_WIZARD_PAGE_CHANGING,
|
||||
wxEVT_WIZARD_CANCEL,
|
||||
wxEVT_WIZARD_HELP
|
||||
wxEVT_WIZARD_HELP,
|
||||
wxEVT_WIZARD_FINISHED
|
||||
};
|
||||
|
||||
|
||||
@@ -61,6 +62,9 @@ def EVT_WIZARD_CANCEL(win, id, func):
|
||||
def EVT_WIZARD_HELP(win, id, func):
|
||||
win.Connect(id, -1, wxEVT_WIZARD_HELP, func)
|
||||
|
||||
def EVT_WIZARD_FINISHED(win, id, func):
|
||||
win.Connect(id, -1, wxEVT_WIZARD_FINISHED, func)
|
||||
|
||||
"
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
@@ -361,6 +365,9 @@ public:
|
||||
// page first and return FALSE without changing the page if
|
||||
// TransferDataFromWindow() returns FALSE - otherwise, returns TRUE
|
||||
bool ShowPage(wxWizardPage *page, bool goingForward = TRUE);
|
||||
|
||||
bool HasNextPage(wxWizardPage* page);
|
||||
bool HasPrevPage(wxWizardPage* page);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user