Finally whole configtool works regardless of wxUSE_STL value (at least with Borland). Changes followed adjustements of other things like better styles, storing pointers, unified headers of files, etc. etc.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-07-27 19:14:36 +00:00
parent 413fac165f
commit d9ab621ea2
23 changed files with 374 additions and 295 deletions

View File

@@ -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_
@@ -57,11 +57,7 @@ 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 +84,11 @@ public:
DECLARE_CLASS( ctSettingsDialog )
DECLARE_EVENT_TABLE()
protected:
// Dialog controls.
wxNotebook* m_notebook;
};
/*!
@@ -153,6 +154,12 @@ public:
DECLARE_CLASS( ctLocationSettingsDialog )
DECLARE_EVENT_TABLE()
protected:
// Dialog controls.
wxTextCtrl* m_wxWinHierarchy;
wxCheckBox* m_wxWinUse;
};
#endif