// ----------------------------------------------------------------------------
// classes
// ----------------------------------------------------------------------------
+
class MyApp: public wxApp
{
public:
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void OnDelete(wxCommandEvent& event);
- bool OnClose() { return TRUE; }
private:
wxTextCtrl *m_text;
enum
{
- Minimal_Quit,
- Minimal_About,
- Minimal_Delete
+ ConfTest_Quit,
+ ConfTest_About,
+ ConfTest_Delete
};
// ----------------------------------------------------------------------------
// event tables
// ----------------------------------------------------------------------------
+
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
- EVT_MENU(Minimal_Quit, MyFrame::OnQuit)
- EVT_MENU(Minimal_About, MyFrame::OnAbout)
- EVT_MENU(Minimal_Delete, MyFrame::OnDelete)
+ EVT_MENU(ConfTest_Quit, MyFrame::OnQuit)
+ EVT_MENU(ConfTest_About, MyFrame::OnAbout)
+ EVT_MENU(ConfTest_Delete, MyFrame::OnDelete)
END_EVENT_TABLE()
// ============================================================================
// ----------------------------------------------------------------------------
// application
// ----------------------------------------------------------------------------
+
IMPLEMENT_APP(MyApp)
// `Main program' equivalent, creating windows and returning main app frame
// menu
wxMenu *file_menu = new wxMenu;
- file_menu->Append(Minimal_Delete, "&Delete", "Delete config file");
+ file_menu->Append(ConfTest_Delete, "&Delete", "Delete config file");
file_menu->AppendSeparator();
- file_menu->Append(Minimal_About, "&About", "About this sample");
+ file_menu->Append(ConfTest_About, "&About\tF1", "About this sample");
file_menu->AppendSeparator();
- file_menu->Append(Minimal_Quit, "E&xit", "Exit the program");
+ file_menu->Append(ConfTest_Quit, "E&xit\tAlt-X", "Exit the program");
wxMenuBar *menu_bar = new wxMenuBar;
menu_bar->Append(file_menu, "&File");
SetMenuBar(menu_bar);
h = pConfig->Read("h", 200);
Move(x, y);
SetClientSize(w, h);
+
+ pConfig->SetPath("/");
+ wxString s;
+ if ( pConfig->Read("TestValue", &s) )
+ {
+ wxLogStatus(this, "TestValue from config is '%s'", s.c_str());
+ }
+ else
+ {
+ wxLogStatus(this, "TestValue not found in the config");
+ }
}
void MyFrame::OnQuit(wxCommandEvent&)
void MyFrame::OnAbout(wxCommandEvent&)
{
- wxMessageBox("wxConfig demo\n© Vadim Zeitlin 1998", "About",
+ wxMessageBox(_T("wxConfig demo\n© Vadim Zeitlin 1998"), _T("About"),
wxICON_INFORMATION | wxOK);
}
void MyFrame::OnDelete(wxCommandEvent&)
{
- // VZ: it seems that DeleteAll() wreaks havoc on NT. Disabled until I
- // investigate it further, do _not_ compile this code in meanwhile!
- // JACS: wxRegConfig::DeleteAll is disabled, so it's safe to call DeleteAll,
- // it just won't do anything useful on Win95/NT.
- if ( wxConfigBase::Get()->DeleteAll() ) {
- wxLogMessage("Config file/registry key successfully deleted.");
-
- delete wxConfigBase::Set((wxConfigBase *) NULL);
- wxConfigBase::DontCreateOnDemand();
- }
- else
- wxLogError("Deleting config file/registry key failed.");
+ if ( wxConfigBase::Get()->DeleteAll() )
+ {
+ wxLogMessage(_T("Config file/registry key successfully deleted."));
+
+ delete wxConfigBase::Set((wxConfigBase *) NULL);
+ wxConfigBase::DontCreateOnDemand();
+ }
+ else
+ {
+ wxLogError(_T("Deleting config file/registry key failed."));
+ }
}
MyFrame::~MyFrame()
pConfig->Write("/MainFrame/y", (long) y);
pConfig->Write("/MainFrame/w", (long) w);
pConfig->Write("/MainFrame/h", (long) h);
+
+ pConfig->Write("/TestValue", "");
}