Unicode compilation fixes.
[wxWidgets.git] / samples / config / conftest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: conftest.cpp
3 // Purpose: demo of wxConfig and related classes
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 03.08.98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
20
21 #ifndef WX_PRECOMP
22 #include "wx/wx.h"
23 #endif //precompiled headers
24
25 #include "wx/log.h"
26 #include "wx/config.h"
27
28 // ----------------------------------------------------------------------------
29 // classes
30 // ----------------------------------------------------------------------------
31
32 class MyApp: public wxApp
33 {
34 public:
35 // implement base class virtuals
36 virtual bool OnInit();
37 virtual int OnExit();
38 };
39
40 class MyFrame: public wxFrame
41 {
42 public:
43 MyFrame();
44 virtual ~MyFrame();
45
46 // callbacks
47 void OnQuit(wxCommandEvent& event);
48 void OnAbout(wxCommandEvent& event);
49 void OnDelete(wxCommandEvent& event);
50
51 private:
52 wxTextCtrl *m_text;
53 wxCheckBox *m_check;
54
55 DECLARE_EVENT_TABLE()
56 };
57
58 enum
59 {
60 ConfTest_Quit,
61 ConfTest_About,
62 ConfTest_Delete
63 };
64
65 // ----------------------------------------------------------------------------
66 // event tables
67 // ----------------------------------------------------------------------------
68
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)
73 END_EVENT_TABLE()
74
75 // ============================================================================
76 // implementation
77 // ============================================================================
78
79 // ----------------------------------------------------------------------------
80 // application
81 // ----------------------------------------------------------------------------
82
83 IMPLEMENT_APP(MyApp)
84
85 // `Main program' equivalent, creating windows and returning main app frame
86 bool MyApp::OnInit()
87 {
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
93
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
100
101 wxConfigBase *pConfig = wxConfigBase::Get();
102
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().
109
110 // create the main program window
111 MyFrame *frame = new MyFrame;
112 frame->Show(TRUE);
113 SetTopWindow(frame);
114
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);
122 }
123
124 return TRUE;
125 }
126
127 int MyApp::OnExit()
128 {
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
131 // we want here!)
132 delete wxConfigBase::Set((wxConfigBase *) NULL);
133
134 return 0;
135 }
136
137 // ----------------------------------------------------------------------------
138 // frame
139 // ----------------------------------------------------------------------------
140
141 // main frame ctor
142 MyFrame::MyFrame()
143 : wxFrame((wxFrame *) NULL, -1, "wxConfig Demo")
144 {
145 // menu
146 wxMenu *file_menu = new wxMenu;
147
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);
156
157 CreateStatusBar();
158
159 // child controls
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));
166
167 // restore the control's values from the config
168
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();
175
176 // we could write Read("/Controls/Text") as well, it's just to show SetPath()
177 pConfig->SetPath("/Controls");
178
179 m_text->SetValue(pConfig->Read("Text", ""));
180 m_check->SetValue(pConfig->Read("Check", 1l) != 0);
181
182 // SetPath() understands ".."
183 pConfig->SetPath("../MainFrame");
184
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);
190 Move(x, y);
191 SetClientSize(w, h);
192
193 pConfig->SetPath("/");
194 wxString s;
195 if ( pConfig->Read("TestValue", &s) )
196 {
197 wxLogStatus(this, wxT("TestValue from config is '%s'"), s.c_str());
198 }
199 else
200 {
201 wxLogStatus(this, wxT("TestValue not found in the config"));
202 }
203 }
204
205 void MyFrame::OnQuit(wxCommandEvent&)
206 {
207 Close(TRUE);
208 }
209
210 void MyFrame::OnAbout(wxCommandEvent&)
211 {
212 wxMessageBox(_T("wxConfig demo\n© Vadim Zeitlin 1998"), _T("About"),
213 wxICON_INFORMATION | wxOK);
214 }
215
216 void MyFrame::OnDelete(wxCommandEvent&)
217 {
218 if ( wxConfigBase::Get()->DeleteAll() )
219 {
220 wxLogMessage(_T("Config file/registry key successfully deleted."));
221
222 delete wxConfigBase::Set((wxConfigBase *) NULL);
223 wxConfigBase::DontCreateOnDemand();
224 }
225 else
226 {
227 wxLogError(_T("Deleting config file/registry key failed."));
228 }
229 }
230
231 MyFrame::~MyFrame()
232 {
233 // save the control's values to the config
234 wxConfigBase *pConfig = wxConfigBase::Get();
235 if ( pConfig == NULL )
236 return;
237 pConfig->Write("/Controls/Text", m_text->GetValue());
238 pConfig->Write("/Controls/Check", m_check->GetValue());
239
240 // save the frame position
241 int x, y, w, h;
242 GetClientSize(&w, &h);
243 GetPosition(&x, &y);
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);
248
249 pConfig->Write("/TestValue", "");
250 }