1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface for wxConfig, wxFileConfig, etc.
7 // Created: 25-Nov-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
22 //---------------------------------------------------------------------------
26 static PyObject* __EnumerationHelper(bool flag, wxString& str, long index) {
27 PyObject* ret = PyTuple_New(3);
29 PyTuple_SET_ITEM(ret, 0, PyInt_FromLong(flag));
30 PyTuple_SET_ITEM(ret, 1, wx2PyString(str));
31 PyTuple_SET_ITEM(ret, 2, PyInt_FromLong(index));
40 wxCONFIG_USE_LOCAL_FILE,
41 wxCONFIG_USE_GLOBAL_FILE,
42 wxCONFIG_USE_RELATIVE_PATH,
43 wxCONFIG_USE_NO_ESCAPE_CHARACTERS
49 "wx.ConfigBase class defines the basic interface of all config
50 classes. It can not be used by itself (it is an abstract base
51 class) and you will always use one of its derivations: wx.Config
54 wx.ConfigBase organizes the items in a tree-like structure,
55 modeled after the Unix/Dos filesystem. There are groups that act
56 like directories and entries, key/value pairs that act like
57 files. There is always one current group given by the current
58 path. As in the file system case, to specify a key in the config
59 class you must use a path to it. Config classes also support the
60 notion of the current group, which makes it possible to use
63 Keys are pairs \"key_name = value\" where value may be of string,
64 integer floating point or boolean, you can not store binary data
65 without first encoding it as a string. For performance reasons
66 items should be kept small, no more than a couple kilobytes.
72 // wxConfigBase(const wxString& appName = wxPyEmptyString, **** An ABC
73 // const wxString& vendorName = wxPyEmptyString,
74 // const wxString& localFilename = wxPyEmptyString,
75 // const wxString& globalFilename = wxPyEmptyString,
84 Type_Integer, // use Read(long *)
85 Type_Float // use Read(double *)
90 static wxConfigBase *, Set(wxConfigBase *config),
91 "Sets the global config object (the one returned by Get) and\n"
92 "returns a reference to the previous global config object.");
96 static wxConfigBase *, Get(bool createOnDemand = True),
97 "Returns the current global config object, creating one if neccessary.");
101 static wxConfigBase *, Create(),
102 "Create and return a new global config object. This function will\n"
103 "create the \"best\" implementation of wx.Config available for the\n"
104 "current platform.");
109 static void , DontCreateOnDemand(),
110 "Should Get() try to create a new log object if there isn't a current one?");
116 virtual void , SetPath(const wxString& path),
117 "Set current path: if the first character is '/', it's the absolute path,\n"
118 "otherwise it's a relative path. '..' is supported. If the strPath\n"
119 "doesn't exist it is created.");
123 virtual const wxString& , GetPath() const,
124 "Retrieve the current path (always as absolute path)");
129 DocAStr(GetFirstGroup,
130 "GetFirstGroup() -> (more, value, index)",
131 "Allows enumerating the subgroups in a config object. Returns\n"
132 "a tuple containing a flag indicating there are more items, the\n"
133 "name of the current item, and an index to pass to GetNextGroup to\n"
134 "fetch the next item.");
135 PyObject* GetFirstGroup() {
140 cont = self->GetFirstGroup(value, index);
141 return __EnumerationHelper(cont, value, index);
146 DocAStr(GetNextGroup,
147 "GetNextGroup(long index) -> (more, value, index)",
148 "Allows enumerating the subgroups in a config object. Returns\n"
149 "a tuple containing a flag indicating there are more items, the\n"
150 "name of the current item, and an index to pass to GetNextGroup to\n"
151 "fetch the next item.");
152 PyObject* GetNextGroup(long index) {
156 cont = self->GetNextGroup(value, index);
157 return __EnumerationHelper(cont, value, index);
161 DocAStr(GetFirstEntry,
162 "GetFirstEntry() -> (more, value, index)",
163 "Allows enumerating the entries in the current group in a config\n"
164 "object. Returns a tuple containing a flag indicating there are\n"
165 "more items, the name of the current item, and an index to pass to\n"
166 "GetNextGroup to fetch the next item.");
167 PyObject* GetFirstEntry() {
172 cont = self->GetFirstEntry(value, index);
173 return __EnumerationHelper(cont, value, index);
177 DocAStr(GetNextEntry,
178 "GetNextEntry(long index) -> (more, value, index)",
179 "Allows enumerating the entries in the current group in a config\n"
180 "object. Returns a tuple containing a flag indicating there are\n"
181 "more items, the name of the current item, and an index to pass to\n"
182 "GetNextGroup to fetch the next item.");
183 PyObject* GetNextEntry(long index) {
187 cont = self->GetNextEntry(value, index);
188 return __EnumerationHelper(cont, value, index);
195 virtual size_t , GetNumberOfEntries(bool recursive = False) const,
196 "Get the number of entries in the current group, with or\n"
197 "without its subgroups.");
200 virtual size_t , GetNumberOfGroups(bool recursive = False) const,
201 "Get the number of subgroups in the current group, with or\n"
202 "without its subgroups.");
207 virtual bool , HasGroup(const wxString& name) const,
208 "Returns True if the group by this name exists");
212 virtual bool , HasEntry(const wxString& name) const,
213 "Returns True if the entry by this name exists");
217 bool , Exists(const wxString& name) const,
218 "Returns True if either a group or an entry with a given name exists");
221 // get the entry type
223 virtual EntryType , GetEntryType(const wxString& name) const,
224 "Get the type of the entry. Returns one of the wx.Config.Type_XXX values.");
229 wxString , Read(const wxString& key, const wxString& defaultVal = wxPyEmptyString),
230 "Returns the value of key if it exists, defaultVal otherwise.");
235 "Returns the value of key if it exists, defaultVal otherwise.");
236 long ReadInt(const wxString& key, long defaultVal = 0) {
238 self->Read(key, &rv, defaultVal);
243 "Returns the value of key if it exists, defaultVal otherwise.");
244 double ReadFloat(const wxString& key, double defaultVal = 0.0) {
246 self->Read(key, &rv, defaultVal);
251 "Returns the value of key if it exists, defaultVal otherwise.");
252 bool ReadBool(const wxString& key, bool defaultVal = False) {
254 self->Read(key, &rv, defaultVal);
260 // write the value (return True on success)
262 bool , Write(const wxString& key, const wxString& value),
263 "write the value (return True on success)");
266 bool, Write(const wxString& key, long value),
267 "write the value (return True on success)",
271 bool, Write(const wxString& key, double value),
272 "write the value (return True on success)",
276 bool, Write(const wxString& key, bool value),
277 "write the value (return True on success)",
282 virtual bool , Flush(bool currentOnly = False),
283 "permanently writes all changes");
287 virtual bool , RenameEntry(const wxString& oldName,
288 const wxString& newName),
289 "Rename an entry. Returns False on failure (probably because the new\n"
290 "name is already taken by an existing entry)");
293 virtual bool , RenameGroup(const wxString& oldName,
294 const wxString& newName),
295 "Rename aa group. Returns False on failure (probably because the new\n"
296 "name is already taken by an existing entry)");
299 // deletes the specified entry and the group it belongs to if
300 // it was the last key in it and the second parameter is True
302 virtual bool , DeleteEntry(const wxString& key,
303 bool deleteGroupIfEmpty = True),
304 "Deletes the specified entry and the group it belongs to if\n"
305 "it was the last key in it and the second parameter is True");
309 virtual bool , DeleteGroup(const wxString& key),
310 "Delete the group (with all subgroups)");
314 virtual bool , DeleteAll(),
315 "Delete the whole underlying object (disk file, registry key, ...)\n"
316 "primarly intended for use by desinstallation routine.");
321 void , SetExpandEnvVars(bool doIt = True),
322 "We can automatically expand environment variables in the config entries\n"
323 "(this option is on by default, you can turn it on/off at any time)");
326 bool , IsExpandingEnvVars() const,
327 "Are we currently expanding environment variables?");
331 void , SetRecordDefaults(bool doIt = True),
332 "Set whether the config objec should record default values.");
335 bool , IsRecordingDefaults() const,
336 "Are we currently recording default values?");
340 wxString , ExpandEnvVars(const wxString& str) const,
341 "Expand any environment variables in str and return the result");
345 wxString , GetAppName() const,
349 wxString , GetVendorName() const,
354 void , SetAppName(const wxString& appName),
358 void , SetVendorName(const wxString& vendorName),
363 void , SetStyle(long style),
367 long , GetStyle() const,
373 //---------------------------------------------------------------------------
376 "This ConfigBase-derived class will use the registry on Windows,
377 and will be a wx.FileConfig on other platforms.");
379 class wxConfig : public wxConfigBase {
382 wxConfig(const wxString& appName = wxPyEmptyString,
383 const wxString& vendorName = wxPyEmptyString,
384 const wxString& localFilename = wxPyEmptyString,
385 const wxString& globalFilename = wxPyEmptyString,
386 long style = wxCONFIG_USE_LOCAL_FILE | wxCONFIG_USE_GLOBAL_FILE),
396 "This config class will use a file for storage on all platforms.");
398 class wxFileConfig : public wxConfigBase {
401 wxFileConfig(const wxString& appName = wxPyEmptyString,
402 const wxString& vendorName = wxPyEmptyString,
403 const wxString& localFilename = wxPyEmptyString,
404 const wxString& globalFilename = wxPyEmptyString,
405 long style = wxCONFIG_USE_LOCAL_FILE | wxCONFIG_USE_GLOBAL_FILE),
412 //---------------------------------------------------------------------------
414 DocStr(wxConfigPathChanger,
415 "A handy little class which changes current path to the path of
416 given entry and restores it in the destructoir: so if you declare
417 a local variable of this type, you work in the entry directory
418 and the path is automatically restored when the function returns.");
420 class wxConfigPathChanger
424 wxConfigPathChanger(const wxConfigBase *config, const wxString& entry),
427 ~wxConfigPathChanger();
430 const wxString& , Name() const,
435 //---------------------------------------------------------------------------
440 wxString , wxExpandEnvVars(const wxString &sz),
441 "Replace environment variables ($SOMETHING) with their values. The\n"
442 "format is $VARNAME or ${VARNAME} where VARNAME contains\n"
443 "alphanumeric characters and '_' only. '$' must be escaped ('\$')\n"
444 "in order to be taken literally.");
448 //---------------------------------------------------------------------------