]>
git.saurik.com Git - wxWidgets.git/blob - samples/config/conftest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: demo of wxConfig and related classes
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
23 #endif //precompiled headers
26 #include "wx/config.h"
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
32 class MyApp
: public wxApp
35 // implement base class virtuals
36 virtual bool OnInit();
40 class MyFrame
: public wxFrame
47 void OnQuit(wxCommandEvent
& event
);
48 void OnAbout(wxCommandEvent
& event
);
49 void OnDelete(wxCommandEvent
& event
);
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
70 EVT_MENU(ConfTest_Quit
, MyFrame::OnQuit
)
71 EVT_MENU(ConfTest_About
, MyFrame::OnAbout
)
72 EVT_MENU(ConfTest_Delete
, MyFrame::OnDelete
)
75 // ============================================================================
77 // ============================================================================
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
85 // `Main program' equivalent, creating windows and returning main app frame
88 // we're using wxConfig's "create-on-demand" feature: it will create the
89 // config object when it's used for the first time. It has a number of
90 // advantages compared with explicitly creating our wxConfig:
91 // 1) we don't pay for it if we don't use it
92 // 2) there is no danger to create it twice
94 // application and vendor name are used by wxConfig to construct the name
95 // of the config file/registry key and must be set before the first call
96 // to Get() if you want to override the default values (the application
97 // name is the name of the executable and the vendor name is the same)
98 SetVendorName("wxWindows");
99 SetAppName("conftest"); // not needed, it's the default value
101 wxConfigBase
*pConfig
= wxConfigBase::Get();
103 // or you could also write something like this:
104 // wxFileConfig *pConfig = new wxFileConfig("conftest");
105 // wxConfigBase::Set(pConfig);
106 // where you can also specify the file names explicitly if you wish.
107 // Of course, calling Set() is optional and you only must do it if
108 // you want to later retrieve this pointer with Get().
110 // create the main program window
111 MyFrame
*frame
= new MyFrame
;
115 // use our config object...
116 if ( pConfig
->Read("/Controls/Check", 1l) != 0 ) {
117 wxMessageBox("You can disable this message box by unchecking\n"
118 "the checkbox in the main window (of course, a real\n"
119 "program would have a checkbox right here but we\n"
120 "keep it simple)", "Welcome to wxConfig demo",
121 wxICON_INFORMATION
| wxOK
);
129 // clean up: Set() returns the active config object as Get() does, but unlike
130 // Get() it doesn't try to create one if there is none (definitely not what
132 delete wxConfigBase::Set((wxConfigBase
*) NULL
);
137 // ----------------------------------------------------------------------------
139 // ----------------------------------------------------------------------------
143 : wxFrame((wxFrame
*) NULL
, -1, "wxConfig Demo")
146 wxMenu
*file_menu
= new wxMenu
;
148 file_menu
->Append(ConfTest_Delete
, "&Delete", "Delete config file");
149 file_menu
->AppendSeparator();
150 file_menu
->Append(ConfTest_About
, "&About\tF1", "About this sample");
151 file_menu
->AppendSeparator();
152 file_menu
->Append(ConfTest_Quit
, "E&xit\tAlt-X", "Exit the program");
153 wxMenuBar
*menu_bar
= new wxMenuBar
;
154 menu_bar
->Append(file_menu
, "&File");
155 SetMenuBar(menu_bar
);
160 wxPanel
*panel
= new wxPanel(this);
161 (void)new wxStaticText(panel
, -1, "These controls remember their values!",
162 wxPoint(10, 10), wxSize(300, 20));
163 m_text
= new wxTextCtrl(panel
, -1, "", wxPoint(10, 40), wxSize(300, 20));
164 m_check
= new wxCheckBox(panel
, -1, "show welcome message box at startup",
165 wxPoint(10, 70), wxSize(300, 20));
167 // restore the control's values from the config
169 // NB: in this program, the config object is already created at this moment
170 // because we had called Get() from MyApp::OnInit(). However, if you later
171 // change the code and don't create it before this line, it won't break
172 // anything - unlike if you manually create wxConfig object with Create()
173 // or in any other way (then you must be sure to create it before using it!).
174 wxConfigBase
*pConfig
= wxConfigBase::Get();
176 // we could write Read("/Controls/Text") as well, it's just to show SetPath()
177 pConfig
->SetPath("/Controls");
179 m_text
->SetValue(pConfig
->Read("Text", ""));
180 m_check
->SetValue(pConfig
->Read("Check", 1l) != 0);
182 // SetPath() understands ".."
183 pConfig
->SetPath("../MainFrame");
185 // restore frame position and size
186 int x
= pConfig
->Read("x", 50),
187 y
= pConfig
->Read("y", 50),
188 w
= pConfig
->Read("w", 350),
189 h
= pConfig
->Read("h", 200);
193 pConfig
->SetPath("/");
195 if ( pConfig
->Read("TestValue", &s
) )
197 wxLogStatus(this, wxT("TestValue from config is '%s'"), s
.c_str());
201 wxLogStatus(this, wxT("TestValue not found in the config"));
205 void MyFrame::OnQuit(wxCommandEvent
&)
210 void MyFrame::OnAbout(wxCommandEvent
&)
212 wxMessageBox(_T("wxConfig demo\n© Vadim Zeitlin 1998"), _T("About"),
213 wxICON_INFORMATION
| wxOK
);
216 void MyFrame::OnDelete(wxCommandEvent
&)
218 if ( wxConfigBase::Get()->DeleteAll() )
220 wxLogMessage(_T("Config file/registry key successfully deleted."));
222 delete wxConfigBase::Set((wxConfigBase
*) NULL
);
223 wxConfigBase::DontCreateOnDemand();
227 wxLogError(_T("Deleting config file/registry key failed."));
233 // save the control's values to the config
234 wxConfigBase
*pConfig
= wxConfigBase::Get();
235 if ( pConfig
== NULL
)
237 pConfig
->Write("/Controls/Text", m_text
->GetValue());
238 pConfig
->Write("/Controls/Check", m_check
->GetValue());
240 // save the frame position
242 GetClientSize(&w
, &h
);
244 pConfig
->Write("/MainFrame/x", (long) x
);
245 pConfig
->Write("/MainFrame/y", (long) y
);
246 pConfig
->Write("/MainFrame/w", (long) w
);
247 pConfig
->Write("/MainFrame/h", (long) h
);
249 pConfig
->Write("/TestValue", "");