]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configtool/src/wxconfigtool.h
Resize all top level windows when SIP changes visibility.
[wxWidgets.git] / utils / configtool / src / wxconfigtool.h
index a38fca2140543a12c8b352ce9f54bc4de00a3dfe..989c5c3b099115cadfe854338f0ffa24730c1976 100644 (file)
 #ifndef _AP_WXCONFIGTOOL_H_
 #define _AP_WXCONFIGTOOL_H_
 
-#ifdef __GNUG__
-#pragma interface wxconfigtool.cpp
-#endif
-
 #include "wx/docview.h"
 #include "wx/help.h"
+#include "wx/app.h"
 
 #ifdef __WXMSW__
 #include "wx/msw/helpchm.h"
@@ -43,7 +40,7 @@ public:
     ctApp();
 
     /// Destructor.
-    ~ctApp();
+    ~ctApp(){};
 
 // Accessors
 
@@ -62,13 +59,13 @@ public:
     /// Returns the notebook window.
     wxNotebook* GetNotebookWindow() { return m_notebookWindow; }
 
-    /// Returns TRUE if the application should show tooltips.
+    /// Returns true if the application should show tooltips.
     virtual bool UsingTooltips();
 
     /// Returns the help controller object for the manual.
     wxHelpControllerBase& GetHelpController() { return *m_helpController; }
 
-    /// Returns the help controller object for the wxWindows reference manual.
+    /// Returns the help controller object for the wxWidgets reference manual.
     wxHelpControllerBase& GetReferenceHelpController() { return *m_helpControllerReference; }
 
     /// Returns the document manager object.
@@ -91,7 +88,7 @@ public:
     /// Saves config info to the registry or a file.
     virtual bool SaveConfig();
 
-    /// The help controller needs to be cleared before wxWindows
+    /// The help controller needs to be cleared before wxWidgets
     /// cleanup happens.
     void ClearHelpControllers() ;
 
@@ -99,12 +96,6 @@ protected:
     /// The application directory.
     wxString                m_appDir;
 
-    /// Global print data, to remember settings during the session.
-    wxPrintData             m_printData;
-
-    /// Global page setup data.
-    wxPageSetupDialogData   m_pageSetupData;
-
     /// Notebook window.
     wxNotebook*             m_notebookWindow;
 
@@ -136,6 +127,7 @@ DECLARE_APP(ctApp)
 // File menu ids
 #define ctID_SAVE_SETUP_FILE                1001
 #define ctID_SAVE_CONFIGURE_COMMAND         1002
+#define ctID_GO                             1003
 
 // Edit menu ids
 #define ctID_ADD_ITEM                       1030