]>
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
ExpandEnvVars(const wxString
& str
);
66 Split path into parts removing '..' in progress
68 extern void SplitPath(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
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;
112 // tests of existence
113 // returns TRUE if the group by this name exists
114 virtual bool HasGroup(const wxString
& strName
) const = 0;
115 // same as above, but for an entry
116 virtual bool HasEntry(const wxString
& strName
) const = 0;
117 // returns TRUE if either a group or an entry with a given name exist
118 bool Exists(const wxString
& strName
) const
119 { return HasGroup(strName
) || HasEntry(strName
); }
121 // key access: returns TRUE if value was really read, FALSE if default used
122 // (and if the key is not found the default value is returned.)
123 // read a string from the key
124 virtual bool Read(wxString
*pStr
, const char *szKey
,
125 const char *szDefault
= NULL
) const = 0;
126 // another version using statis buffer - it means it will be overwritten
127 // after each call to this function!
128 virtual const char *Read(const char *szKey
,
129 const char *szDefault
= NULL
) const;
130 // the same for longs
131 virtual long Read(const char *szKey
, long lDefault
) const
132 { long l
; Read(&l
, szKey
, lDefault
); return l
; }
133 // and another version: returns true if default value is returned
134 virtual bool Read(long *pl
, const char *szKey
, long lDefault
= 0) const = 0;
136 // write the value (return true on success)
137 virtual bool Write(const char *szKey
, const char *szValue
) = 0;
138 virtual bool Write(const char *szKey
, long lValue
) = 0;
139 // permanently writes all changes
140 virtual bool Flush(bool bCurrentOnly
= FALSE
) = 0;
142 // delete entries/groups
143 // deletes the specified entry and the group it belongs to if
144 // it was the last key in it and the second parameter is true
145 virtual bool DeleteEntry(const char *szKey
,
146 bool bDeleteGroupIfEmpty
= TRUE
) = 0;
147 // delete the group (with all subgroups)
148 virtual bool DeleteGroup(const char *szKey
) = 0;
149 // delete the whole underlying object (disk file, registry key, ...)
150 // primarly for use by desinstallation routine.
151 virtual bool DeleteAll() = 0;
154 static bool IsImmutable(const char *szKey
)
155 { return *szKey
== APPCONF_IMMUTABLE_PREFIX
; }
157 // a handy little class which changes current path to the path of given entry
158 // and restores it in dtor: so if you declare a local variable of this type,
159 // you work in the entry directory and the path is automatically restored
160 // when function returns
164 // ctor/dtor do path changing/restorin
165 PathChanger(const wxConfig
*pContainer
, const wxString
& strEntry
);
169 const wxString
& Name() const { return m_strName
; }
172 wxConfig
*m_pContainer
; // object we live in
173 wxString m_strName
, // name of entry (i.e. name only)
174 m_strOldPath
; // saved path
175 bool m_bChanged
; // was the path changed?
178 // are we doing automatic environment variable expansion?
179 bool m_bExpandEnvVars
;
182 static wxConfig
*ms_pConfig
;