1998-08-03 22:37:42 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: conftest.cpp
|
|
|
|
// Purpose: demo of wxConfig and related classes
|
|
|
|
// Author: Vadim Zeitlin
|
1998-12-02 22:32:41 +00:00
|
|
|
// Modified by:
|
1998-08-03 22:37:42 +00:00
|
|
|
// Created: 03.08.98
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2010-07-13 13:29:13 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-08-03 22:37:42 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// declarations
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
2009-06-01 20:54:03 +00:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
1998-08-03 22:37:42 +00:00
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif //precompiled headers
|
|
|
|
|
|
|
|
#include "wx/log.h"
|
|
|
|
#include "wx/config.h"
|
|
|
|
|
2012-03-04 00:28:58 +00:00
|
|
|
#ifndef wxHAS_IMAGES_IN_RESOURCES
|
2009-02-08 01:01:00 +00:00
|
|
|
#include "../sample.xpm"
|
|
|
|
#endif
|
|
|
|
|
1998-08-03 22:37:42 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
// ----------------------------------------------------------------------------
|
2001-07-23 17:46:15 +00:00
|
|
|
|
1998-08-03 22:37:42 +00:00
|
|
|
class MyApp: public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// implement base class virtuals
|
|
|
|
virtual bool OnInit();
|
|
|
|
virtual int OnExit();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MyFrame: public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-02-08 01:01:00 +00:00
|
|
|
MyFrame();
|
|
|
|
virtual ~MyFrame();
|
1998-12-02 22:32:41 +00:00
|
|
|
|
2009-02-08 01:01:00 +00:00
|
|
|
// callbacks
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnDelete(wxCommandEvent& event);
|
1998-08-03 22:37:42 +00:00
|
|
|
|
|
|
|
private:
|
2009-02-08 01:01:00 +00:00
|
|
|
wxTextCtrl *m_text;
|
|
|
|
wxCheckBox *m_check;
|
1998-08-03 22:37:42 +00:00
|
|
|
|
2009-02-08 01:01:00 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-08-03 22:37:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// event tables
|
|
|
|
// ----------------------------------------------------------------------------
|
2001-07-23 17:46:15 +00:00
|
|
|
|
1998-08-03 22:37:42 +00:00
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
2010-12-22 13:57:08 +00:00
|
|
|
EVT_MENU(wxID_EXIT, MyFrame::OnQuit)
|
|
|
|
EVT_MENU(wxID_ABOUT, MyFrame::OnAbout)
|
|
|
|
EVT_MENU(wxID_DELETE, MyFrame::OnDelete)
|
1998-08-03 22:37:42 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// implementation
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// application
|
|
|
|
// ----------------------------------------------------------------------------
|
2001-07-23 17:46:15 +00:00
|
|
|
|
1998-08-03 22:37:42 +00:00
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
// `Main program' equivalent, creating windows and returning main app frame
|
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
2009-02-08 01:01:00 +00:00
|
|
|
if ( !wxApp::OnInit() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// we're using wxConfig's "create-on-demand" feature: it will create the
|
|
|
|
// config object when it's used for the first time. It has a number of
|
|
|
|
// advantages compared with explicitly creating our wxConfig:
|
|
|
|
// 1) we don't pay for it if we don't use it
|
|
|
|
// 2) there is no danger to create it twice
|
|
|
|
|
|
|
|
// application and vendor name are used by wxConfig to construct the name
|
|
|
|
// of the config file/registry key and must be set before the first call
|
|
|
|
// to Get() if you want to override the default values (the application
|
|
|
|
// name is the name of the executable and the vendor name is the same)
|
2009-07-23 20:30:22 +00:00
|
|
|
SetVendorName(wxT("wxWidgets"));
|
|
|
|
SetAppName(wxT("conftest")); // not needed, it's the default value
|
2009-02-08 01:01:00 +00:00
|
|
|
|
|
|
|
wxConfigBase *pConfig = wxConfigBase::Get();
|
1998-08-03 22:37:42 +00:00
|
|
|
|
2009-02-08 01:01:00 +00:00
|
|
|
// uncomment this to force writing back of the defaults for all values
|
|
|
|
// if they're not present in the config - this can give the user an idea
|
|
|
|
// of all possible settings for this program
|
|
|
|
pConfig->SetRecordDefaults();
|
|
|
|
|
|
|
|
// or you could also write something like this:
|
|
|
|
// wxFileConfig *pConfig = new wxFileConfig("conftest");
|
|
|
|
// wxConfigBase::Set(pConfig);
|
|
|
|
// where you can also specify the file names explicitly if you wish.
|
|
|
|
// Of course, calling Set() is optional and you only must do it if
|
|
|
|
// you want to later retrieve this pointer with Get().
|
|
|
|
|
|
|
|
// create the main program window
|
|
|
|
MyFrame *frame = new MyFrame;
|
|
|
|
frame->Show(true);
|
|
|
|
|
|
|
|
// use our config object...
|
2009-07-23 20:30:22 +00:00
|
|
|
if ( pConfig->Read(wxT("/Controls/Check"), 1l) != 0 ) {
|
|
|
|
wxMessageBox(wxT("You can disable this message box by unchecking\n")
|
|
|
|
wxT("the checkbox in the main window (of course, a real\n")
|
|
|
|
wxT("program would have a checkbox right here but we\n")
|
|
|
|
wxT("keep it simple)"), wxT("Welcome to wxConfig demo"),
|
2009-02-08 01:01:00 +00:00
|
|
|
wxICON_INFORMATION | wxOK);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
1998-08-03 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int MyApp::OnExit()
|
|
|
|
{
|
2009-02-08 01:01:00 +00:00
|
|
|
// clean up: Set() returns the active config object as Get() does, but unlike
|
|
|
|
// Get() it doesn't try to create one if there is none (definitely not what
|
|
|
|
// we want here!)
|
|
|
|
delete wxConfigBase::Set((wxConfigBase *) NULL);
|
1998-08-03 22:37:42 +00:00
|
|
|
|
2009-02-08 01:01:00 +00:00
|
|
|
return 0;
|
1998-08-03 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// frame
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// main frame ctor
|
|
|
|
MyFrame::MyFrame()
|
2009-07-23 20:30:22 +00:00
|
|
|
: wxFrame((wxFrame *) NULL, wxID_ANY, wxT("wxConfig Demo"))
|
1998-08-03 22:37:42 +00:00
|
|
|
{
|
2009-02-08 01:01:00 +00:00
|
|
|
SetIcon(wxICON(sample));
|
|
|
|
|
|
|
|
// menu
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
|
|
|
|
2010-12-22 13:57:08 +00:00
|
|
|
file_menu->Append(wxID_DELETE, wxT("&Delete"), wxT("Delete config file"));
|
2009-02-08 01:01:00 +00:00
|
|
|
file_menu->AppendSeparator();
|
2010-12-22 13:57:08 +00:00
|
|
|
file_menu->Append(wxID_ABOUT, wxT("&About\tF1"), wxT("About this sample"));
|
2009-02-08 01:01:00 +00:00
|
|
|
file_menu->AppendSeparator();
|
2010-12-22 13:57:08 +00:00
|
|
|
file_menu->Append(wxID_EXIT, wxT("E&xit\tAlt-X"), wxT("Exit the program"));
|
2009-02-08 01:01:00 +00:00
|
|
|
wxMenuBar *menu_bar = new wxMenuBar;
|
2009-07-23 20:30:22 +00:00
|
|
|
menu_bar->Append(file_menu, wxT("&File"));
|
2009-02-08 01:01:00 +00:00
|
|
|
SetMenuBar(menu_bar);
|
1998-08-03 22:37:42 +00:00
|
|
|
|
2004-07-19 15:36:01 +00:00
|
|
|
#if wxUSE_STATUSBAR
|
2009-02-08 01:01:00 +00:00
|
|
|
CreateStatusBar();
|
2004-07-19 15:36:01 +00:00
|
|
|
#endif // wxUSE_STATUSBAR
|
1998-08-03 22:37:42 +00:00
|
|
|
|
2009-02-08 01:01:00 +00:00
|
|
|
// child controls
|
|
|
|
wxPanel *panel = new wxPanel(this);
|
2009-07-23 20:30:22 +00:00
|
|
|
(void)new wxStaticText(panel, wxID_ANY, wxT("These controls remember their values!"),
|
2009-02-08 01:01:00 +00:00
|
|
|
wxPoint(10, 10), wxSize(300, 20));
|
2009-07-23 20:30:22 +00:00
|
|
|
m_text = new wxTextCtrl(panel, wxID_ANY, wxT(""), wxPoint(10, 40), wxSize(300, 20));
|
|
|
|
m_check = new wxCheckBox(panel, wxID_ANY, wxT("show welcome message box at startup"),
|
2009-02-08 01:01:00 +00:00
|
|
|
wxPoint(10, 70), wxSize(300, 20));
|
|
|
|
|
|
|
|
// restore the control's values from the config
|
|
|
|
|
|
|
|
// NB: in this program, the config object is already created at this moment
|
|
|
|
// because we had called Get() from MyApp::OnInit(). However, if you later
|
|
|
|
// change the code and don't create it before this line, it won't break
|
|
|
|
// anything - unlike if you manually create wxConfig object with Create()
|
|
|
|
// or in any other way (then you must be sure to create it before using it!).
|
|
|
|
wxConfigBase *pConfig = wxConfigBase::Get();
|
|
|
|
|
|
|
|
// we could write Read("/Controls/Text") as well, it's just to show SetPath()
|
2009-07-23 20:30:22 +00:00
|
|
|
pConfig->SetPath(wxT("/Controls"));
|
2009-02-08 01:01:00 +00:00
|
|
|
|
2009-07-23 20:30:22 +00:00
|
|
|
m_text->SetValue(pConfig->Read(wxT("Text"), wxT("")));
|
|
|
|
m_check->SetValue(pConfig->Read(wxT("Check"), 1l) != 0);
|
2009-02-08 01:01:00 +00:00
|
|
|
|
|
|
|
// SetPath() understands ".."
|
2009-07-23 20:30:22 +00:00
|
|
|
pConfig->SetPath(wxT("../MainFrame"));
|
2009-02-08 01:01:00 +00:00
|
|
|
|
|
|
|
// restore frame position and size
|
2009-07-23 20:30:22 +00:00
|
|
|
int x = pConfig->Read(wxT("x"), 50),
|
|
|
|
y = pConfig->Read(wxT("y"), 50),
|
|
|
|
w = pConfig->Read(wxT("w"), 350),
|
|
|
|
h = pConfig->Read(wxT("h"), 200);
|
2009-02-08 01:01:00 +00:00
|
|
|
Move(x, y);
|
|
|
|
SetClientSize(w, h);
|
|
|
|
|
2009-07-23 20:30:22 +00:00
|
|
|
pConfig->SetPath(wxT("/"));
|
2009-02-08 01:01:00 +00:00
|
|
|
wxString s;
|
2009-07-23 20:30:22 +00:00
|
|
|
if ( pConfig->Read(wxT("TestValue"), &s) )
|
2009-02-08 01:01:00 +00:00
|
|
|
{
|
|
|
|
wxLogStatus(this, wxT("TestValue from config is '%s'"), s.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxLogStatus(this, wxT("TestValue not found in the config"));
|
|
|
|
}
|
1999-02-05 23:55:04 +00:00
|
|
|
}
|
|
|
|
|
1998-08-03 22:37:42 +00:00
|
|
|
void MyFrame::OnQuit(wxCommandEvent&)
|
|
|
|
{
|
2009-02-08 01:01:00 +00:00
|
|
|
Close(true);
|
1998-08-03 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnAbout(wxCommandEvent&)
|
|
|
|
{
|
2009-07-23 20:30:22 +00:00
|
|
|
wxMessageBox(wxT("wxConfig demo\n(c) 1998-2001 Vadim Zeitlin"), wxT("About"),
|
2009-02-08 01:01:00 +00:00
|
|
|
wxICON_INFORMATION | wxOK);
|
1998-08-03 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnDelete(wxCommandEvent&)
|
|
|
|
{
|
2002-09-04 13:50:58 +00:00
|
|
|
wxConfigBase *pConfig = wxConfigBase::Get();
|
|
|
|
if ( pConfig == NULL )
|
|
|
|
{
|
2009-07-23 20:30:22 +00:00
|
|
|
wxLogError(wxT("No config to delete!"));
|
2002-09-04 13:50:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pConfig->DeleteAll() )
|
2001-07-23 17:46:15 +00:00
|
|
|
{
|
2009-07-23 20:30:22 +00:00
|
|
|
wxLogMessage(wxT("Config file/registry key successfully deleted."));
|
1999-01-23 23:50:24 +00:00
|
|
|
|
2002-09-04 13:50:58 +00:00
|
|
|
delete wxConfigBase::Set(NULL);
|
1999-01-23 23:50:24 +00:00
|
|
|
wxConfigBase::DontCreateOnDemand();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-23 20:30:22 +00:00
|
|
|
wxLogError(wxT("Deleting config file/registry key failed."));
|
1999-01-23 23:50:24 +00:00
|
|
|
}
|
1998-08-03 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MyFrame::~MyFrame()
|
|
|
|
{
|
2009-02-08 01:01:00 +00:00
|
|
|
wxConfigBase *pConfig = wxConfigBase::Get();
|
|
|
|
if ( pConfig == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// save the control's values to the config
|
2009-07-23 20:30:22 +00:00
|
|
|
pConfig->Write(wxT("/Controls/Text"), m_text->GetValue());
|
|
|
|
pConfig->Write(wxT("/Controls/Check"), m_check->GetValue());
|
2009-02-08 01:01:00 +00:00
|
|
|
|
|
|
|
// save the frame position
|
|
|
|
int x, y, w, h;
|
|
|
|
GetClientSize(&w, &h);
|
|
|
|
GetPosition(&x, &y);
|
2009-07-23 20:30:22 +00:00
|
|
|
pConfig->Write(wxT("/MainFrame/x"), (long) x);
|
|
|
|
pConfig->Write(wxT("/MainFrame/y"), (long) y);
|
|
|
|
pConfig->Write(wxT("/MainFrame/w"), (long) w);
|
|
|
|
pConfig->Write(wxT("/MainFrame/h"), (long) h);
|
2009-02-08 01:01:00 +00:00
|
|
|
|
2009-07-23 20:30:22 +00:00
|
|
|
pConfig->Write(wxT("/TestValue"), wxT("A test value"));
|
1998-08-03 22:37:42 +00:00
|
|
|
}
|
2002-09-04 13:50:58 +00:00
|
|
|
|