X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4fe30bceff0445f540e639d2b6d3977d56b34020..3a39df31ff47004a46cfb06f3fb2d3e317f96d2b:/utils/configtool/src/settingsdialog.h diff --git a/utils/configtool/src/settingsdialog.h b/utils/configtool/src/settingsdialog.h index a58b0645f3..329bb5a712 100644 --- a/utils/configtool/src/settingsdialog.h +++ b/utils/configtool/src/settingsdialog.h @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// // Name: settingsdialog.h -// Purpose: -// Author: -// Modified by: -// Created: -// RCS-ID: -// Copyright: -// Licence: +// Purpose: Settings dialog +// Author: Julian Smart +// Modified by: +// Created: 2002-09-04 +// RCS-ID: $Id$ +// Copyright: (c) Julian Smart +// Licence: ///////////////////////////////////////////////////////////////////////////// #ifndef _SETTINGSDIALOG_H_ @@ -21,6 +21,11 @@ */ ////@begin includes + +#include "wx/dialog.h" +#include "wx/textctrl.h" +#include "wx/checkbox.h" + ////@end includes /*! @@ -54,14 +59,10 @@ class ctLocationSettingsDialog; */ class ctSettingsDialog: public wxDialog -{ +{ public: /// Constructor - ctSettingsDialog( wxWindow* parent, wxWindowID id = wxID_ANY, - const wxString& caption = _("Configuration Settings"), - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - long style = wxCAPTION|wxSYSTEM_MENU ); + ctSettingsDialog( wxWindow* parent ); /// Creates the controls and sizers void CreateControls(); @@ -88,6 +89,11 @@ public: DECLARE_CLASS( ctSettingsDialog ) DECLARE_EVENT_TABLE() + +protected: + + // Dialog controls. + wxNotebook* m_notebook; }; /*! @@ -95,7 +101,7 @@ public: */ class ctGeneralSettingsDialog: public wxPanel -{ +{ public: /// Constructor ctGeneralSettingsDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxNO_BORDER|wxTAB_TRAVERSAL ); @@ -123,7 +129,7 @@ public: */ class ctLocationSettingsDialog: public wxPanel -{ +{ public: /// Constructor ctLocationSettingsDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxNO_BORDER|wxTAB_TRAVERSAL ); @@ -153,6 +159,12 @@ public: DECLARE_CLASS( ctLocationSettingsDialog ) DECLARE_EVENT_TABLE() + +protected: + + // Dialog controls. + wxTextCtrl* m_wxWinHierarchy; + wxCheckBox* m_wxWinUse; }; #endif