]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/wizard.h
thread updates
[wxWidgets.git] / include / wx / wizard.h
index c67c89de87a785a06a59e3593764fa1a6a848108..1d30123a5e24630f5bb67b97205a769c70796784 100644 (file)
@@ -81,7 +81,7 @@ public:
     static void Chain(wxWizardPageSimple *first, wxWizardPageSimple *second)
     {
         wxCHECK_RET( first && second,
-                     T("NULL passed to wxWizardPageSimple::Chain") );
+                     wxT("NULL passed to wxWizardPageSimple::Chain") );
 
         first->SetNext(second);
         second->SetPrev(first);
@@ -121,6 +121,10 @@ public:
 
     // get the current page (NULL if RunWizard() isn't running)
     virtual wxWizardPage *GetCurrentPage() const = 0;
+
+    // get the size available for the page: the wizards are not resizeable, so
+    // this size doesn't change
+    virtual wxSize GetPageSize() const = 0;
 };
 
 // include the real class declaration