]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/config.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of the base class of all config implementations
4 // (see also: fileconf.h and msw/regconf.h)
5 // Author: Karsten Ballüder & Vadim Zeitlin
7 // Created: 07.04.98 (adapted from appconf.h)
9 // Copyright: (c) 1997 Karsten Ballüder Ballueder@usa.net
10 // Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
11 // Licence: wxWindows license
12 ///////////////////////////////////////////////////////////////////////////////
18 #pragma interface "config.h"
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 // it won't compile without it anyhow
27 #error "Please define USE_WXCONFIG or remove config.cpp from your makefile"
28 #endif // USE_WXCONFIG
30 // ----------------------------------------------------------------------------
32 // ----------------------------------------------------------------------------
34 /// shall we be case sensitive in parsing variable names?
35 #ifndef APPCONF_CASE_SENSITIVE
36 #define APPCONF_CASE_SENSITIVE FALSE
39 /// separates group and entry names
40 #ifndef APPCONF_PATH_SEPARATOR
41 #define APPCONF_PATH_SEPARATOR '/'
44 /// introduces immutable entries
45 #ifndef APPCONF_IMMUTABLE_PREFIX
46 #define APPCONF_IMMUTABLE_PREFIX '!'
49 /// should we use registry instead of configuration files under Win32?
50 #ifndef APPCONF_WIN32_NATIVE
51 #define APPCONF_WIN32_NATIVE TRUE
54 // ----------------------------------------------------------------------------
55 // various helper global functions
56 // ----------------------------------------------------------------------------
59 Replace environment variables ($SOMETHING) with their values. The format is
60 $VARNAME or ${VARNAME} where VARNAME contains alphanumeric characters and
61 '_' only. '$' must be escaped ('\$') in order to be taken literally.
63 extern wxString
wxExpandEnvVars(const wxString
&sz
);
66 Split path into parts removing '..' in progress
68 extern void wxSplitPath(wxArrayString
& aParts
, const char *sz
);
70 // ----------------------------------------------------------------------------
71 // abstract base class wxConfig which defines the interface for derived classes
73 // wxConfig organizes the items in a tree-like structure (modeled after the
74 // Unix/Dos filesystem). There are groups (directories) and keys (files).
75 // There is always one current group given by the current path.
77 // Keys are pairs "key_name = value" where value may be of string or integer
78 // (long) type (@@@ doubles and other types such as wxDate coming soon).
79 // ----------------------------------------------------------------------------
84 // sets the config object, returns the previous pointer
85 static wxConfig
*Set(wxConfig
*pConfig
);
86 // get the config object, creates it on demand
87 static wxConfig
*Get() { if ( !ms_pConfig
) Create(); return ms_pConfig
; }
88 // create a new config object
91 // ctor & virtual dtor
92 wxConfig() { m_bExpandEnvVars
= TRUE
; }
96 // set current path: if the first character is '/', it's the absolute path,
97 // otherwise it's a relative path. '..' is supported. If the strPath
98 // doesn't exist it is created.
99 virtual void SetPath(const wxString
& strPath
) = 0;
100 // retrieve the current path (always as absolute path)
101 virtual const wxString
& GetPath() const = 0;
103 // enumeration: all functions here return false when there are no more items.
104 // you must pass the same lIndex to GetNext and GetFirst (don't modify it)
105 // enumerate subgroups
106 virtual bool GetFirstGroup(wxString
& str
, long& lIndex
) = 0;
107 virtual bool GetNextGroup (wxString
& str
, long& lIndex
) = 0;
109 virtual bool GetFirstEntry(wxString
& str
, long& lIndex
) = 0;
110 virtual bool GetNextEntry (wxString
& str
, long& lIndex
) = 0;
111 // get number of entries/subgroups in the current group, with or without
113 virtual uint
GetNumberOfEntries(bool bRecursive
= FALSE
) const = 0;
114 virtual uint
GetNumberOfGroups(bool bRecursive
= FALSE
) const = 0;
116 // tests of existence
117 // returns TRUE if the group by this name exists
118 virtual bool HasGroup(const wxString
& strName
) const = 0;
119 // same as above, but for an entry
120 virtual bool HasEntry(const wxString
& strName
) const = 0;
121 // returns TRUE if either a group or an entry with a given name exist
122 bool Exists(const wxString
& strName
) const
123 { return HasGroup(strName
) || HasEntry(strName
); }
125 // key access: returns TRUE if value was really read, FALSE if default used
126 // (and if the key is not found the default value is returned.)
127 // read a string from the key
128 virtual bool Read(wxString
*pStr
, const char *szKey
,
129 const char *szDefault
= NULL
) const = 0;
130 // another version using statis buffer - it means it will be overwritten
131 // after each call to this function!
132 virtual const char *Read(const char *szKey
,
133 const char *szDefault
= NULL
) const;
134 // the same for longs
135 virtual long Read(const char *szKey
, long lDefault
) const
136 { long l
; Read(&l
, szKey
, lDefault
); return l
; }
137 // and another version: returns true if default value is returned
138 virtual bool Read(long *pl
, const char *szKey
, long lDefault
= 0) const = 0;
140 // write the value (return true on success)
141 virtual bool Write(const char *szKey
, const char *szValue
) = 0;
142 virtual bool Write(const char *szKey
, long lValue
) = 0;
143 // permanently writes all changes
144 virtual bool Flush(bool bCurrentOnly
= FALSE
) = 0;
146 // delete entries/groups
147 // deletes the specified entry and the group it belongs to if
148 // it was the last key in it and the second parameter is true
149 virtual bool DeleteEntry(const char *szKey
,
150 bool bDeleteGroupIfEmpty
= TRUE
) = 0;
151 // delete the group (with all subgroups)
152 virtual bool DeleteGroup(const char *szKey
) = 0;
153 // delete the whole underlying object (disk file, registry key, ...)
154 // primarly for use by desinstallation routine.
155 virtual bool DeleteAll() = 0;
158 // we can automatically expand environment variables in the config entries
159 // (this option is on by default, you can turn it on/off at any time)
160 bool IsExpandingEnvVars() const { return m_bExpandEnvVars
; }
161 void SetExpandEnvVars(bool bDoIt
= TRUE
) { m_bExpandEnvVars
= bDoIt
; }
162 // does expansion only if needed
163 wxString
ExpandEnvVars(const wxString
& str
) const
164 { return IsExpandingEnvVars() ? wxExpandEnvVars(str
) : str
; }
167 static bool IsImmutable(const char *szKey
)
168 { return *szKey
== APPCONF_IMMUTABLE_PREFIX
; }
170 // a handy little class which changes current path to the path of given entry
171 // and restores it in dtor: so if you declare a local variable of this type,
172 // you work in the entry directory and the path is automatically restored
173 // when the function returns
177 // ctor/dtor do path changing/restorin
178 PathChanger(const wxConfig
*pContainer
, const wxString
& strEntry
);
182 const wxString
& Name() const { return m_strName
; }
185 wxConfig
*m_pContainer
; // object we live in
186 wxString m_strName
, // name of entry (i.e. name only)
187 m_strOldPath
; // saved path
188 bool m_bChanged
; // was the path changed?
192 // are we doing automatic environment variable expansion?
193 bool m_bExpandEnvVars
;
196 static wxConfig
*ms_pConfig
;