]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configtool/src/mainframe.h
fix typo
[wxWidgets.git] / utils / configtool / src / mainframe.h
index 9057369d050a3dee8df58e9b6e0e401689aa1b69..f809d477e163a9ea55f68d1987a9be470484861d 100644 (file)
 #ifndef _AP_MAINFRAME_H_
 #define _AP_MAINFRAME_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "mainframe.cpp"
 #endif
 
 #include "wx/imaglist.h"
 #include "wx/docview.h"
+#include "wx/notebook.h"
+
+// #define USE_CONFIG_BROWSER_PAGE
 
 class WXDLLEXPORT wxHtmlWindow;
 class WXDLLEXPORT wxSplitterWindow;
@@ -27,6 +30,9 @@ class ctConfigTreeCtrl;
 class ctPropertyEditor;
 class ctOutputWindow;
 class ctFindReplaceDialog;
+#ifdef USE_CONFIG_BROWSER_PAGE
+class ctConfigurationBrowserWindow;
+#endif
 
 /*!
  * \brief The main window of the application.
@@ -153,6 +159,12 @@ protected:
     ctOutputWindow*         m_setupPage;
     ctOutputWindow*         m_configurePage;
 
+    // The control panel for browsing, adding and removing
+    // configurations.
+#ifdef USE_CONFIG_BROWSER_PAGE
+    ctConfigurationBrowserWindow*   m_configBrowserPage;
+#endif
+
     ctFindReplaceDialog*    m_findDialog;
 };