class ctConfigTreeCtrl;
class ctPropertyEditor;
class ctOutputWindow;
+class ctFindReplaceDialog;
+class ctConfigurationBrowserWindow;
/*!
* \brief The main window of the application.
/// 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:
wxNotebook* m_mainNotebook;
ctOutputWindow* m_setupPage;
ctOutputWindow* m_configurePage;
+
+ // The control panel for browsing, adding and removing
+ // configurations.
+ ctConfigurationBrowserWindow* m_configBrowserPage;
+
+ ctFindReplaceDialog* m_findDialog;
};
/*!