]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configtool/src/mainframe.h
Oops, I left an extra { in there.
[wxWidgets.git] / utils / configtool / src / mainframe.h
index d8c9460753125f2209ebb250ea50266952dba38a..9ad6366a866747f86e84e2cfb942e454bd07faae 100644 (file)
@@ -26,6 +26,8 @@ class WXDLLEXPORT wxNotebookEvent;
 class ctConfigTreeCtrl;
 class ctPropertyEditor;
 class ctOutputWindow;
+class ctFindReplaceDialog;
+class ctConfigurationBrowserWindow;
 
 /*!
  * \brief The main window of the application.
@@ -120,6 +122,12 @@ class ctMainFrame: public wxDocParentFrame
     /// Returns the main notebook containing editor and text tabs 
     wxNotebook* GetMainNotebook() const { return m_mainNotebook; }
 
+    /// Sets the find dialog for future closing
+    void SetFindDialog(ctFindReplaceDialog* findDialog) { m_findDialog = findDialog; }
+
+    /// Gets the find dialog
+    ctFindReplaceDialog* GetFindDialog() const { return m_findDialog ; }
+
 DECLARE_EVENT_TABLE()
 
 protected:
@@ -145,6 +153,12 @@ protected:
     wxNotebook*             m_mainNotebook;
     ctOutputWindow*         m_setupPage;
     ctOutputWindow*         m_configurePage;
+
+    // The control panel for browsing, adding and removing
+    // configurations.
+    ctConfigurationBrowserWindow*   m_configBrowserPage;
+
+    ctFindReplaceDialog*    m_findDialog;
 };
 
 /*!