]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/config.tex
* Docs fixes, wxStream overview enabled (all docs should compile now)
[wxWidgets.git] / docs / latex / wx / config.tex
1 \section{\class{wxConfigBase}}\label{wxconfigbase}
2
3 wxConfigBase class defines the basic interface of all config classes. It can
4 not be used by itself (it's an abstract base class) and you'll always use one
5 of its derivations: wxIniConfig, wxFileConfig, wxRegConfig or any other.
6
7 However, usually you don't even need to know the precise nature of the class
8 you're working with but you would just use the wxConfigBase methods. This
9 allows you to write the same code regardless of whether you're working with
10 the registry under Win32 or text-based config files under Unix (or even
11 Windows 3.1 .INI files if you're really unlucky). To make writing the portable
12 code even easier, wxWindows provides a typedef wxConfig
13 which is mapped onto the native wxConfigBase implementation on the given
14 platform: i.e. wxRegConfig under Win32, wxIniConfig under Win16 and
15 wxFileConfig otherwise.
16
17 See \helpref{config overview}{wxconfigoverview} for the descriptions of all
18 features of this class.
19
20 \wxheading{Derived from}
21
22 No base class
23
24 \wxheading{Include files}
25
26 <wx/config.h> (to let wxWindows choose a wxConfig class for your platform)\\
27 <wx/confbase.h> (base config class)\\
28 <wx/fileconf.h> (wxFileconfig class)\\
29 <wx/msw/regconf.h> (wxRegConfig class)\\
30 <wx/msw/iniconf.h> (wxIniConfig class)
31
32 \wxheading{Example}
33
34 Here is how you would typically use this class:
35
36 \begin{verbatim}
37 // using wxConfig instead of writing wxFileConfig or wxRegConfig enhances
38 // portability of the code
39 wxConfig *config = new wxConfig("MyAppName");
40
41 wxString str;
42 if ( config->Read("LastPrompt", &str) ) {
43 // last prompt was found in the config file/registry and its value is now
44 // in str
45 ...
46 }
47 else {
48 // no last prompt...
49 }
50
51 // another example: using default values and the full path instead of just
52 // key name: if the key is not found , the value 17 is returned
53 long value = config->Read("/LastRun/CalculatedValues/MaxValue", -1);
54 ...
55 ...
56 ...
57 // at the end of the program we would save everything back
58 config->Write("LastPrompt", str);
59 config->Write("/LastRun/CalculatedValues/MaxValue", value);
60
61 // the changes will be written back automatically
62 delete config;
63 \end{verbatim}
64
65 This basic example, of course, doesn't show all wxConfig features, such as
66 enumerating, testing for existence and deleting the entries and groups of
67 entries in the config file, its abilities to automatically store the default
68 values or expand the environment variables on the fly. However, the main idea
69 is that using this class is easy and that it should normally do what you
70 expect it to.
71
72 NB: in the documentation of this class, the words "config file" also mean
73 "registry hive" for wxRegConfig and, generally speaking, might mean any
74 physical storage where a wxConfigBase-derived class stores its data.
75
76 \latexignore{\rtfignore{\wxheading{Function groups}}}
77
78 \membersection{Static functions}
79
80 These functions deal with the "default" config object. Although its usage is
81 not at all mandatory it may be convenient to use a global config object
82 instead of creating and deleting the local config objects each time you need
83 one (especially because creating a wxFileConfig object might be a time
84 consuming operation). In this case, you may create this global config object
85 in the very start of the program and {\it Set()} it as the default. Then, from
86 anywhere in your program, you may access it using the {\it Get()} function. Of
87 course, you should delete it on the program termination (otherwise, not only a
88 memory leak will result, but even more importantly the changes won't be
89 written back!).
90
91 As it happens, you may even further simplify the procedure described above:
92 you may forget about calling {\it Set()}. When {\it Get()} is called and there
93 is no current object, it will create one using {\it Create()} function. To
94 disable this behaviour {\it DontCreateOnDemand()} is provided.
95
96 \helpref{Set}{wxconfigbaseset}\\
97 \helpref{Get}{wxconfigbaseget}\\
98 \helpref{Create}{wxconfigbasecreate}\\
99 \helpref{DontCreateOnDemand}{wxconfigbasedontcreateondemand}
100
101 \membersection{Constructor and destructor}
102
103 \helpref{wxConfigBase}{wxconfigbasector}\\
104 \helpref{\destruct{wxConfigBase}}{wxconfigbasedtor}
105
106 \membersection{Path management}
107
108 As explained in \helpref{config overview}{wxconfigoverview}, the config classes
109 support a file system-like hierarchy of keys (files) and groups (directories).
110 As in the file system case, to specify a key in the config class you must use
111 a path to it. Config classes also support the notion of the current group,
112 which makes it possible to use the relative paths. To clarify all this, here
113 is an example (it's only for the sake of demonstration, it doesn't do anything
114 sensible!):
115
116 \begin{verbatim}
117 wxConfig *config = new wxConfig("FooBarApp");
118
119 // right now the current path is '/'
120 conf->Write("RootEntry", 1);
121
122 // go to some other place: if the group(s) don't exist, they will be created
123 conf->SetPath("/Group/Subgroup");
124
125 // create an entry in subgroup
126 conf->Write("SubgroupEntry", 3);
127
128 // '..' is understood
129 conf->Write("../GroupEntry", 2);
130 conf->SetPath("..");
131
132 wxASSERT( conf->Read("Subgroup/SubgroupEntry", 0l) == 3 );
133
134 // use absolute path: it's allowed, too
135 wxASSERT( conf->Read("/RootEntry", 0l) == 1 );
136 \end{verbatim}
137
138 {\it Warning}: it's probably a good idea to always restore the path to its
139 old value on function exit:
140
141 \begin{verbatim}
142 void foo(wxConfigBase *config)
143 {
144 wxString strOldPath = config->GetPath();
145
146 config->SetPath("/Foo/Data");
147 ...
148
149 config->SetPath(strOldPath);
150 }
151 \end{verbatim}
152
153 because otherwise the assert in the following example will surely fail
154 (we suppose here that {\it foo()} function is the same as above except that it
155 doesn't save and restore the path):
156
157 \begin{verbatim}
158 void bar(wxConfigBase *config)
159 {
160 config->Write("Test", 17);
161
162 foo(config);
163
164 // we're reading "/Foo/Data/Test" here! -1 will probably be returned...
165 wxASSERT( config->Read("Test", -1) == 17 );
166 }
167 \end{verbatim}
168
169 Finally, the path separator in wxConfigBase and derived classes is always '/',
170 regardless of the platform (i.e. it's {\bf not} '$\backslash\backslash$' under Windows).
171
172 \helpref{SetPath}{wxconfigbasesetpath}\\
173 \helpref{GetPath}{wxconfigbasegetpath}
174
175 \membersection{Enumeration}
176
177 The functions in this section allow to enumerate all entries and groups in the
178 config file. All functions here return FALSE when there are no more items.
179
180 You must pass the same index to GetNext and GetFirst (don't modify it).
181 Please note that it's {\bf not} the index of the current item (you will have
182 some great surprizes with wxRegConfig if you assume this) and you shouldn't
183 even look at it: it's just a "cookie" which stores the state of the
184 enumeration. It can't be stored inside the class because it would prevent you
185 from running several enumerations simultaneously, that's why you must pass it
186 explicitly.
187
188 Having said all this, enumerating the config entries/groups is very simple:
189
190 \begin{verbatim}
191 wxArrayString aNames;
192
193 // enumeration variables
194 wxString str;
195 long dummy;
196
197 // first enum all entries
198 bool bCont = config->GetFirstEntry(str, dummy);
199 while ( bCont ) {
200 aNames.Add(str);
201
202 bCont = GetConfig()->GetNextEntry(str, dummy);
203 }
204
205 ... we have all entry names in aNames...
206
207 // now all groups...
208 bCont = GetConfig()->GetFirstGroup(str, dummy);
209 while ( bCont ) {
210 aNames.Add(str);
211
212 bCont = GetConfig()->GetNextGroup(str, dummy);
213 }
214
215 ... we have all group (and entry) names in aNames...
216
217 \end{verbatim}
218
219 There are also functions to get the number of entries/subgroups without
220 actually enumerating them, but you will probably never need them.
221
222 \helpref{GetFirstGroup}{wxconfigbasegetfirstgroup}\\
223 \helpref{GetNextGroup}{wxconfigbasegetnextgroup}\\
224 \helpref{GetFirstEntry}{wxconfigbasegetfirstentry}\\
225 \helpref{GetNextEntry}{wxconfigbasegetnextentry}\\
226 \helpref{GetNumberOfEntries}{wxconfigbasegetnumberofentries}\\
227 \helpref{GetNumberOfGroups}{wxconfigbasegetnumberofgroups}
228
229 \membersection{Tests of existence}
230
231 \helpref{HasGroup}{wxconfigbasehasgroup}\\
232 \helpref{HasEntry}{wxconfigbasehasentry}\\
233 \helpref{Exists}{wxconfigbaseexists}
234
235 \membersection{Miscellaneous accessors}
236
237 \helpref{SetAppName}{wxconfigbasesetappname}\\
238 \helpref{GetAppName}{wxconfigbasegetappname}\\
239 \helpref{SetVendorName}{wxconfigbasesetvendorname}\\
240 \helpref{GetVendorName}{wxconfigbasegetvendorname}
241
242 \membersection{Key access}
243
244 These function are the core of wxConfigBase class: they allow you to read and
245 write config file data. All {\it Read} function take a default value which
246 will be returned if the specified key is not found in the config file.
247
248 Currently, only two types of data are supported: string and long (but it might
249 change in the near future). To work with other types: for {\it int} or {\it
250 bool} you can work with function taking/returning {\it long} and just use the
251 casts. Better yet, just use {\it long} for all variables which you're going to
252 save in the config file: chances are that \verb$sizeof(bool) == sizeof(int) == sizeof(long)$ anyhow on your system. For {\it float}, {\it double} and, in
253 general, any other type you'd have to translate them to/from string
254 representation and use string functions.
255
256 Try not to read long values into string variables and vice versa: although it
257 just might work with wxFileConfig, you will get a system error with
258 wxRegConfig because in the Windows registry the different types of entries are
259 indeed used.
260
261 Final remark: the {\it szKey} parameter for all these functions can contain an
262 arbitrary path (either relative or absolute), not just the key name.
263
264 \helpref{Read}{wxconfigbaseread}\\
265 \helpref{Write}{wxconfigbasewrite}\\
266 \helpref{Flush}{wxconfigbaseflush}
267
268 \membersection{Rename entries/groups}
269
270 The functions in this section allow to rename entries or subgroups of the
271 current group. They will return FALSE on error. typically because either the
272 entry/group with the original name doesn't exist, because the entry/group with
273 the new name already exists or because the function is not supported in this
274 wxConfig implementation.
275
276 \helpref{RenameEntry}{wxconfigbaserenameentry}\\
277 \helpref{RenameGroup}{wxconfigbaserenamegroup}
278
279 \membersection{Delete entries/groups}
280
281 The functions in this section delete entries and/or groups of entries from the
282 config file. {\it DeleteAll()} is especially useful if you want to erase all
283 traces of your program presence: for example, when you uninstall it.
284
285 \helpref{DeleteEntry}{wxconfigbasedeleteentry}\\
286 \helpref{DeleteGroup}{wxconfigbasedeletegroup}\\
287 \helpref{DeleteAll}{wxconfigbasedeleteall}
288
289 \membersection{Options}
290
291 Some aspects of wxConfigBase behaviour can be changed during run-time. The
292 first of them is the expansion of environment variables in the string values
293 read from the config file: for example, if you have the following in your
294 config file:
295
296 \begin{verbatim}
297 # config file for my program
298 UserData = $HOME/data
299
300 # the following syntax is valud only under Windows
301 UserData = %windir%\\data.dat
302 \end{verbatim}
303
304 the call to \verb$config->Read("UserData")$ will return something like
305 \verb$"/home/zeitlin/data"$ if you're lucky enough to run a Linux system ;-)
306
307 Although this feature is very useful, it may be annoying if you read a value
308 which containts '\$' or '\%' symbols (\% is used for environment variables
309 expansion under Windows) which are not used for environment variable
310 expansion. In this situation you may call SetExpandEnvVars(FALSE) just before
311 reading this value and SetExpandEnvVars(TRUE) just after. Another solution
312 would be to prefix the offending symbols with a backslash.
313
314 The following functions control this option:
315
316 \helpref{IsExpandingEnvVars}{wxconfigbaseisexpandingenvvars}\\
317 \helpref{SetExpandingEnvVars}{wxconfigbasesetexpandingenvvars}\\
318 \helpref{SetRecordDefaults}{wxconfigbasesetrecorddefaults}\\
319 \helpref{IsRecordingDefaults}{wxconfigbaseisrecordingdefaults}
320
321 %%%%% MEMBERS HERE %%%%%
322 \helponly{\insertatlevel{2}{
323
324 \wxheading{Members}
325
326 }}
327
328 \membersection{wxConfigBase::wxConfigBase}\label{wxconfigbasector}
329
330 \func{}{wxConfigBase}{\param{const wxString\& }{appName = wxEmptyString},
331 \param{const wxString\& }{vendorName = wxEmptyString},
332 \param{const wxString\& }{localFilename = wxEmptyString},
333 \param{const wxString\& }{globalFilename = wxEmptyString},
334 \param{long}{ style = 0}}
335
336 This is the default and only constructor of the wxConfigBase class, and
337 derived classes.
338
339 \wxheading{Parameters}
340
341 \docparam{appName}{The application name. If this is empty, the class will
342 normally use \helpref{wxApp::GetAppName}{wxappgetappname} to set it. The
343 application name is used in the registry key on Windows, and can be used to
344 deduce the local filename parameter if that is missing.}
345
346 \docparam{vendorName}{The vendor name. If this is empty, it is assumed that
347 no vendor name is wanted, if this is optional for the current config class.
348 The vendor name is appended to the application name for wxRegConfig.}
349
350 \docparam{localFilename}{Some config classes require a local filename. If this
351 is not present, but required, the application name will be used instead.}
352
353 \docparam{globalFilename}{Some config classes require a global filename. If
354 this is not present, but required, the application name will be used instead.}
355
356 \docparam{style}{Can be one of wxCONFIG\_USE\_LOCAL\_FILE and
357 wxCONFIG\_USE\_GLOBAL\_FILE. The style interpretation depends on the config
358 class and is ignored by some. For wxFileConfig, these styles determine whether
359 a local or global config file is created or used. If the flag is present but
360 the parameter is empty, the parameter will be set to a default. If the
361 parameter is present but the style flag not, the relevant flag will be added
362 to the style.}
363
364 \wxheading{Remarks}
365
366 By default, environment variable expansion is on and recording defaults is
367 off.
368
369 \membersection{wxConfigBase::\destruct{wxConfigBase}}\label{wxconfigbasedtor}
370
371 \func{}{\destruct{wxConfigBase}}{\void}
372
373 Empty but ensures that dtor of all derived classes is virtual.
374
375 \membersection{wxConfigBase::Create}\label{wxconfigbasecreate}
376
377 \func{static wxConfigBase *}{Create}{\void}
378
379 Create a new config object: this function will create the "best"
380 implementation of wxConfig available for the current platform, see comments
381 near the definition of wxCONFIG\_WIN32\_NATIVE for details. It returns the
382 created object and also sets it as the current one.
383
384 \membersection{wxConfigBase::DontCreateOnDemand}\label{wxconfigbasedontcreateondemand}
385
386 \func{void}{DontCreateOnDemand}{\void}
387
388 Calling this function will prevent {\it Get()} from automatically creating a
389 new config object if the current one is NULL. It might be useful to call it
390 near the program end to prevent new config object "accidental" creation.
391
392 \membersection{wxConfigBase::DeleteAll}\label{wxconfigbasedeleteall}
393
394 \func{bool}{DeleteAll}{\void}
395
396 Delete the whole underlying object (disk file, registry key, ...). Primarly
397 for use by desinstallation routine.
398
399 \membersection{wxConfigBase::DeleteEntry}\label{wxconfigbasedeleteentry}
400
401 \func{bool}{DeleteEntry}{\param{const wxString\& }{ key}, \param{bool}{
402 bDeleteGroupIfEmpty = TRUE}}
403
404 Deletes the specified entry and the group it belongs to if it was the last key
405 in it and the second parameter is true.
406
407 \membersection{wxConfigBase::DeleteGroup}\label{wxconfigbasedeletegroup}
408
409 \func{bool}{DeleteGroup}{\param{const wxString\& }{ key}}
410
411 Delete the group (with all subgroups)
412
413 \membersection{wxConfigBase::Exists}\label{wxconfigbaseexists}
414
415 \constfunc{bool}{Exists}{\param{wxString\& }{strName}}
416
417 returns TRUE if either a group or an entry with a given name exists
418
419 \membersection{wxConfigBase::Flush}\label{wxconfigbaseflush}
420
421 \func{bool}{Flush}{\param{bool }{bCurrentOnly = FALSE}}
422
423 permanently writes all changes (otherwise, they're only written from object's
424 destructor)
425
426 \membersection{wxConfigBase::Get}\label{wxconfigbaseget}
427
428 \func{wxConfigBase *}{Get}{\void}
429
430 Get the current config object. If there is no current object, creates one
431 (using {\it Create}) unless DontCreateOnDemand was called previously.
432
433 \membersection{wxConfigBase::GetAppName}\label{wxconfigbasegetappname}
434
435 \constfunc{wxString}{GetAppName}{\void}
436
437 Returns the application name.
438
439 \membersection{wxConfigBase::GetFirstGroup}\label{wxconfigbasegetfirstgroup}
440
441 \constfunc{bool}{GetFirstGroup}{\param{wxString\& }{str}, \param{long\&}{
442 index}}
443
444 Gets the first group.
445
446 \pythonnote{The wxPython version of this method returns a 3-tuple
447 consisting of the continue flag, the value string, and the index for
448 the next call.}
449
450 \membersection{wxConfigBase::GetFirstEntry}\label{wxconfigbasegetfirstentry}
451
452 \constfunc{bool}{GetFirstEntry}{\param{wxString\& }{str}, \param{long\&}{
453 index}}
454
455 Gets the first entry.
456
457 \pythonnote{The wxPython version of this method returns a 3-tuple
458 consisting of the continue flag, the value string, and the index for
459 the next call.}
460
461 \membersection{wxConfigBase::GetNextGroup}\label{wxconfigbasegetnextgroup}
462
463 \constfunc{bool}{GetNextGroup}{\param{wxString\& }{str}, \param{long\&}{
464 index}}
465
466 Gets the next group.
467
468 \pythonnote{The wxPython version of this method returns a 3-tuple
469 consisting of the continue flag, the value string, and the index for
470 the next call.}
471
472 \membersection{wxConfigBase::GetNextEntry}\label{wxconfigbasegetnextentry}
473
474 \constfunc{bool}{GetNextEntry}{\param{wxString\& }{str}, \param{long\&}{
475 index}}
476
477 Gets the next entry.
478
479 \pythonnote{The wxPython version of this method returns a 3-tuple
480 consisting of the continue flag, the value string, and the index for
481 the next call.}
482
483 \membersection{wxConfigBase::GetNumberOfEntries}\label{wxconfigbasegetnumberofentries}
484
485 \constfunc{uint }{GetNumberOfEntries}{\param{bool }{bRecursive = FALSE}}
486
487 \membersection{wxConfigBase::GetNumberOfGroups}\label{wxconfigbasegetnumberofgroups}
488
489 \constfunc{uint}{GetNumberOfGroups}{\param{bool }{bRecursive = FALSE}}
490
491 Get number of entries/subgroups in the current group, with or without its
492 subgroups.
493
494 \membersection{wxConfigBase::GetPath}\label{wxconfigbasegetpath}
495
496 \constfunc{const wxString\&}{GetPath}{\void}
497
498 Retrieve the current path (always as absolute path).
499
500 \membersection{wxConfigBase::GetVendorName}\label{wxconfigbasegetvendorname}
501
502 \constfunc{wxString}{GetVendorName}{\void}
503
504 Returns the vendor name.
505
506 \membersection{wxConfigBase::HasEntry}\label{wxconfigbasehasentry}
507
508 \constfunc{bool}{HasEntry}{\param{wxString\& }{strName}}
509
510 returns TRUE if the entry by this name exists
511
512 \membersection{wxConfigBase::HasGroup}\label{wxconfigbasehasgroup}
513
514 \constfunc{bool}{HasGroup}{\param{const wxString\& }{strName}}
515
516 returns TRUE if the group by this name exists
517
518 \membersection{wxConfigBase::IsExpandingEnvVars}\label{wxconfigbaseisexpandingenvvars}
519
520 \constfunc{bool}{IsExpandingEnvVars}{\void}
521
522 Returns TRUE if we are expanding environment variables in key values.
523
524 \membersection{wxConfigBase::IsRecordingDefaults}\label{wxconfigbaseisrecordingdefaults}
525
526 \func{bool}{IsRecordingDefaults}{\void} const
527
528 Returns TRUE if we are writing defaults back to the config file.
529
530 \membersection{wxConfigBase::Read}\label{wxconfigbaseread}
531
532 \constfunc{bool}{Read}{\param{const wxString\& }{key}, \param{wxString*}{
533 str}}
534
535 Read a string from the key, returning TRUE if the value was read. If the key
536 was not found, {\it str} is not changed.
537
538 \constfunc{bool}{Read}{\param{const wxString\& }{key}, \param{wxString*}{
539 str}, \param{const wxString\& }{defaultVal}}
540
541 Read a string from the key. The default value is returned if the key was not
542 found.
543
544 Returns TRUE if value was really read, FALSE if the default was used.
545
546 \constfunc{wxString}{Read}{\param{const wxString\& }{key}, \param{const
547 wxString\& }{defaultVal}}
548
549 Another version of {\it Read()}, returning the string value directly.
550
551 \constfunc{bool}{Read}{\param{const wxString\& }{ key}, \param{long*}{ l}}
552
553 Reads a long value, returning TRUE if the value was found. If the value was
554 not found, {\it l} is not changed.
555
556 \constfunc{bool}{Read}{\param{const wxString\& }{ key}, \param{long*}{ l},
557 \param{long}{ defaultVal}}
558
559 Reads a long value, returning TRUE if the value was found. If the value was
560 not found, {\it defaultVal} is used instead.
561
562 \constfunc{long }{Read}{\param{const wxString\& }{key}, \param{long}{
563 defaultVal}}
564
565 Reads a long value from the key and returns it. {\it defaultVal} is returned
566 if the key is not found.
567
568 NB: writing
569
570 {\small \begin{verbatim} conf->Read("key", 0); \end{verbatim} }
571
572 won't work because the call is ambiguous: compiler can not choose between two
573 {\it Read} functions. Instead, write:
574
575 {\small \begin{verbatim} conf->Read("key", 0l); \end{verbatim} }
576
577 \constfunc{bool}{Read}{\param{const wxString\& }{ key}, \param{double*}{ d}}
578
579 Reads a double value, returning TRUE if the value was found. If the value was
580 not found, {\it d} is not changed.
581
582 \constfunc{bool}{Read}{\param{const wxString\& }{ key}, \param{double*}{ d},
583 \param{double}{ defaultVal}}
584
585 Reads a double value, returning TRUE if the value was found. If the value was
586 not found, {\it defaultVal} is used instead.
587
588 \constfunc{bool}{Read}{\param{const wxString\& }{ key}, \param{bool*}{ b}}
589
590 Reads a bool value, returning TRUE if the value was found. If the value was
591 not found, {\it b} is not changed.
592
593 \constfunc{bool}{Read}{\param{const wxString\& }{ key}, \param{bool*}{ d},
594 \param{bool}{ defaultVal}}
595
596 Reads a bool value, returning TRUE if the value was found. If the value was
597 not found, {\it defaultVal} is used instead.
598
599 \pythonnote{In place of a single overloaded method name, wxPython
600 implements the following methods:\par
601 \indented{2cm}{\begin{twocollist}
602 \twocolitem{\bf{Read(key, default="")}}{Returns a string.}
603 \twocolitem{\bf{ReadInt(key, default=0)}}{Returns an int.}
604 \twocolitem{\bf{ReadFloat(key, default=0.0)}}{Returns a floating point number.}
605 \end{twocollist}}
606 }
607
608 \membersection{wxConfigBase::RenameEntry}\label{wxconfigbaserenameentry}
609
610 \func{bool}{RenameEntry}{\param{const wxString\& }{ oldName}, \param{const wxString\& }{ newName}}
611
612 Renames an entry in the current group. The entries names (both the old and
613 the new one) shouldn't contain backslashes, i.e. only simple names and not
614 arbitrary paths are accepted by this function.
615
616 Returns FALSE if the {\it oldName} doesn't exist or if {\it newName} already
617 exists.
618
619 \membersection{wxConfigBase::RenameGroup}\label{wxconfigbaserenamegroup}
620
621 \func{bool}{RenameGroup}{\param{const wxString\& }{ oldName}, \param{const wxString\& }{ newName}}
622
623 Renames a subgroup of the current group. The subgroup names (both the old and
624 the new one) shouldn't contain backslashes, i.e. only simple names and not
625 arbitrary paths are accepted by this function.
626
627 Returns FALSE if the {\it oldName} doesn't exist or if {\it newName} already
628 exists.
629
630 \membersection{wxConfigBase::Set}\label{wxconfigbaseset}
631
632 \func{wxConfigBase *}{Set}{\param{wxConfigBase *}{pConfig}}
633
634 Sets the config object as the current one, returns the pointer to the previous
635 current object (both the parameter and returned value may be NULL)
636
637 \membersection{wxConfigBase::SetAppName}\label{wxconfigbasesetappname}
638
639 \func{void }{SetAppName}{\param{const wxString\&}{ appName}}
640
641 Sets the application name.
642
643 \membersection{wxConfigBase::SetExpandingEnvVars}\label{wxconfigbasesetexpandingenvvars}
644
645 \func{void}{SetExpandEnvVars }{\param{bool }{bDoIt = TRUE}}
646
647 Determine whether we wish to expand environment variables in key values.
648
649 \membersection{wxConfigBase::SetPath}\label{wxconfigbasesetpath}
650
651 \func{void}{SetPath}{\param{const wxString\& }{strPath}}
652
653 Set current path: if the first character is '/', it's the absolute path,
654 otherwise it's a relative path. '..' is supported. If the strPath doesn't
655 exist it is created.
656
657 \membersection{wxConfigBase::SetRecordDefaults}\label{wxconfigbasesetrecorddefaults}
658
659 \func{void}{SetRecordDefaults}{\param{bool }{bDoIt = TRUE}}
660
661 Sets whether defaults are written back to the config file.
662
663 If on (default is off) all default values are written back to the config file.
664 This allows the user to see what config options may be changed and is probably
665 useful only for wxFileConfig.
666
667 \membersection{wxConfigBase::SetVendorName}\label{wxconfigbasesetvendorname}
668
669 \func{void}{SetVendorName}{\param{const wxString\&}{ vendorName}}
670
671 Sets the vendor name.
672
673 \membersection{wxConfigBase::Write}\label{wxconfigbasewrite}
674
675 \func{bool}{Write}{\param{const wxString\& }{ key}, \param{const wxString\& }{
676 value}}
677
678 \func{bool}{Write}{\param{const wxString\& }{ key}, \param{long}{ value}}
679
680 \func{bool}{Write}{\param{const wxString\& }{ key}, \param{double}{ value}}
681
682 \func{bool}{Write}{\param{const wxString\& }{ key}, \param{bool}{ value}}
683
684 These functions write the specified value to the config file and return TRUE
685 on success.
686
687 \pythonnote{In place of a single overloaded method name, wxPython
688 implements the following methods:\par
689 \indented{2cm}{\begin{twocollist}
690 \twocolitem{\bf{Write(key, value)}}{Writes a string.}
691 \twocolitem{\bf{WriteInt(key, value)}}{Writes an int.}
692 \twocolitem{\bf{WriteFloat(key, value)}}{Writes a floating point number.}
693 \end{twocollist}}
694 }
695
696
697
698
699