]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | /////////////////////////////////////////////////////////////////////////////// |
20d8c319 | 2 | // Name: wx/msw/registry.h |
2bda0e17 KB |
3 | // Purpose: Registry classes and functions |
4 | // Author: Vadim Zeitlin | |
23f681ec | 5 | // Modified by: |
20d8c319 | 6 | // Created: 03.04.1998 |
2bda0e17 KB |
7 | // RCS-ID: $Id$ |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
20d8c319 VZ |
12 | #ifndef _WX_MSW_REGISTRY_H_ |
13 | #define _WX_MSW_REGISTRY_H_ | |
2bda0e17 | 14 | |
20d8c319 | 15 | class WXDLLIMPEXP_BASE wxOutputStream; |
8f494e5d | 16 | |
2bda0e17 KB |
17 | // ---------------------------------------------------------------------------- |
18 | // class wxRegKey encapsulates window HKEY handle | |
19 | // ---------------------------------------------------------------------------- | |
20d8c319 | 20 | |
4d08943e | 21 | class WXDLLIMPEXP_BASE wxRegKey |
2bda0e17 KB |
22 | { |
23 | public: | |
24 | // NB: do _not_ change the values of elements in these enumerations! | |
25 | ||
26 | // registry value types (with comments from winnt.h) | |
27 | enum ValueType | |
28 | { | |
29 | Type_None, // No value type | |
30 | Type_String, // Unicode nul terminated string | |
2bda0e17 KB |
31 | Type_Expand_String, // Unicode nul terminated string |
32 | // (with environment variable references) | |
33 | Type_Binary, // Free form binary | |
34 | Type_Dword, // 32-bit number | |
23f681ec VZ |
35 | Type_Dword_little_endian // 32-bit number |
36 | = Type_Dword, // (same as Type_DWORD) | |
2bda0e17 KB |
37 | Type_Dword_big_endian, // 32-bit number |
38 | Type_Link, // Symbolic Link (unicode) | |
39 | Type_Multi_String, // Multiple Unicode strings | |
40 | Type_Resource_list, // Resource list in the resource map | |
41 | Type_Full_resource_descriptor, // Resource list in the hardware description | |
a3ef5bf5 | 42 | Type_Resource_requirements_list // ??? |
2bda0e17 KB |
43 | }; |
44 | ||
45 | // predefined registry keys | |
46 | enum StdKey | |
47 | { | |
20d8c319 | 48 | HKCR, // classes root |
23f681ec VZ |
49 | HKCU, // current user |
50 | HKLM, // local machine | |
20d8c319 VZ |
51 | HKUSR // users |
52 | #ifndef __WXWINCE__ | |
53 | , | |
23f681ec | 54 | HKPD // performance data (WinNT/2K only) |
20d8c319 | 55 | #endif |
23f681ec VZ |
56 | #if WINVER >= 0x0400 |
57 | , | |
58 | HKCC, // current config (starting from Win95/NT 4.0) | |
59 | HKDD // dynamic data (Win95/98 only) | |
2bda0e17 | 60 | #endif // Winver |
2bda0e17 KB |
61 | }; |
62 | ||
bee96abf VZ |
63 | // access mode for the key |
64 | enum AccessMode | |
65 | { | |
66 | Read, // read-only | |
67 | Write // read and write | |
68 | }; | |
69 | ||
2bda0e17 KB |
70 | // information about standard (predefined) registry keys |
71 | // number of standard keys | |
72 | static const size_t nStdKeys; | |
73 | // get the name of a standard key | |
4de6207a | 74 | static const wxChar *GetStdKeyName(size_t key); |
2bda0e17 | 75 | // get the short name of a standard key |
4de6207a | 76 | static const wxChar *GetStdKeyShortName(size_t key); |
2bda0e17 | 77 | // get StdKey from root HKEY |
0d8d91a9 | 78 | static StdKey GetStdKeyFromHkey(WXHKEY hkey); |
2bda0e17 KB |
79 | |
80 | // extacts the std key prefix from the string (return value) and | |
81 | // leaves only the part after it (i.e. modifies the string passed!) | |
82 | static StdKey ExtractKeyName(wxString& str); | |
83 | ||
84 | // ctors | |
85 | // root key is set to HKCR (the only root key under Win16) | |
86 | wxRegKey(); | |
87 | // strKey is the full name of the key (i.e. starting with HKEY_xxx...) | |
88 | wxRegKey(const wxString& strKey); | |
89 | // strKey is the name of key under (standard key) keyParent | |
2dc77646 | 90 | wxRegKey(StdKey keyParent, const wxString& strKey); |
2bda0e17 KB |
91 | // strKey is the name of key under (previously created) keyParent |
92 | wxRegKey(const wxRegKey& keyParent, const wxString& strKey); | |
bee96abf | 93 | // dtor closes the key |
2bda0e17 KB |
94 | ~wxRegKey(); |
95 | ||
96 | // change key (closes the previously opened key if any) | |
2dc77646 | 97 | // the name is absolute, i.e. should start with HKEY_xxx |
2bda0e17 | 98 | void SetName(const wxString& strKey); |
2dc77646 VZ |
99 | // the name is relative to the parent key |
100 | void SetName(StdKey keyParent, const wxString& strKey); | |
101 | // the name is relative to the parent key | |
102 | void SetName(const wxRegKey& keyParent, const wxString& strKey); | |
103 | // hKey should be opened and will be closed in wxRegKey dtor | |
0d8d91a9 | 104 | void SetHkey(WXHKEY hKey); |
2bda0e17 KB |
105 | |
106 | // get infomation about the key | |
107 | // get the (full) key name. Abbreviate std root keys if bShortPrefix. | |
4d08943e | 108 | wxString GetName(bool bShortPrefix = true) const; |
2dc77646 | 109 | // return true if the key exists |
8f494e5d VZ |
110 | bool Exists() const; |
111 | // get the info about key (any number of these pointers may be NULL) | |
3cda6353 VZ |
112 | bool GetKeyInfo(size_t *pnSubKeys, // number of subkeys |
113 | size_t *pnMaxKeyLen, // max len of subkey name | |
114 | size_t *pnValues, // number of values | |
115 | size_t *pnMaxValueLen) const; | |
2dc77646 | 116 | // return true if the key is opened |
8f494e5d | 117 | bool IsOpened() const { return m_hKey != 0; } |
2bda0e17 KB |
118 | // for "if ( !key ) wxLogError(...)" kind of expressions |
119 | operator bool() const { return m_dwLastError == 0; } | |
120 | ||
121 | // operations on the key itself | |
122 | // explicitly open the key (will be automatically done by all functions | |
123 | // which need the key to be opened if the key is not opened yet) | |
bee96abf | 124 | bool Open(AccessMode mode = Write); |
23f681ec | 125 | // create the key: will fail if the key already exists and !bOkIfExists |
4d08943e | 126 | bool Create(bool bOkIfExists = true); |
23f681ec VZ |
127 | // rename a value from old name to new one |
128 | bool RenameValue(const wxChar *szValueOld, const wxChar *szValueNew); | |
225fe9d6 VZ |
129 | // rename the key |
130 | bool Rename(const wxChar *szNewName); | |
23f681ec VZ |
131 | // copy value to another key possibly changing its name (by default it will |
132 | // remain the same) | |
133 | bool CopyValue(const wxChar *szValue, wxRegKey& keyDst, | |
134 | const wxChar *szNewName = NULL); | |
135 | // copy the entire contents of the key recursively to another location | |
225fe9d6 | 136 | bool Copy(const wxChar *szNewName); |
23f681ec VZ |
137 | // same as Copy() but using a key and not the name |
138 | bool Copy(wxRegKey& keyDst); | |
2bda0e17 KB |
139 | // close the key (will be automatically done in dtor) |
140 | bool Close(); | |
141 | ||
142 | // deleting keys/values | |
143 | // deletes this key and all of it's subkeys/values | |
144 | bool DeleteSelf(); | |
145 | // deletes the subkey with all of it's subkeys/values recursively | |
4de6207a | 146 | bool DeleteKey(const wxChar *szKey); |
2bda0e17 | 147 | // deletes the named value (may be NULL to remove the default value) |
4de6207a | 148 | bool DeleteValue(const wxChar *szValue); |
2bda0e17 KB |
149 | |
150 | // access to values and subkeys | |
151 | // get value type | |
4de6207a | 152 | ValueType GetValueType(const wxChar *szValue) const; |
4d08943e | 153 | // returns true if the value contains a number (else it's some string) |
4de6207a | 154 | bool IsNumericValue(const wxChar *szValue) const; |
2bda0e17 KB |
155 | |
156 | // assignment operators set the default value of the key | |
157 | wxRegKey& operator=(const wxString& strValue) | |
158 | { SetValue(NULL, strValue); return *this; } | |
159 | wxRegKey& operator=(long lValue) | |
160 | { SetValue(NULL, lValue); return *this; } | |
161 | ||
50e42404 VZ |
162 | // query the default value of the key: implicitly or explicitly |
163 | wxString QueryDefaultValue() const; | |
164 | operator wxString() const { return QueryDefaultValue(); } | |
165 | ||
166 | // named values | |
2bda0e17 KB |
167 | |
168 | // set the string value | |
4de6207a | 169 | bool SetValue(const wxChar *szValue, const wxString& strValue); |
6dfec4b8 VZ |
170 | // retrieve the string value |
171 | bool QueryValue(const wxChar *szValue, wxString& strValue) const | |
4d08943e | 172 | { return QueryValue(szValue, strValue, false); } |
6dfec4b8 VZ |
173 | // retrieve raw string value |
174 | bool QueryRawValue(const wxChar *szValue, wxString& strValue) const | |
4d08943e | 175 | { return QueryValue(szValue, strValue, true); } |
6dfec4b8 VZ |
176 | // retrieve either raw or expanded string value |
177 | bool QueryValue(const wxChar *szValue, wxString& strValue, bool raw) const; | |
2bda0e17 | 178 | |
2bda0e17 | 179 | // set the numeric value |
4de6207a | 180 | bool SetValue(const wxChar *szValue, long lValue); |
2bda0e17 | 181 | // return the numeric value |
4de6207a | 182 | bool QueryValue(const wxChar *szValue, long *plValue) const; |
9b386eca RG |
183 | // set the binary value |
184 | bool SetValue(const wxChar *szValue, const wxMemoryBuffer& buf); | |
185 | // return the binary value | |
186 | bool QueryValue(const wxChar *szValue, wxMemoryBuffer& buf) const; | |
2bda0e17 | 187 | |
2dc77646 VZ |
188 | // query existence of a key/value |
189 | // return true if value exists | |
92049cd4 | 190 | bool HasValue(const wxChar *szKey) const; |
2dc77646 | 191 | // return true if given subkey exists |
92049cd4 | 192 | bool HasSubKey(const wxChar *szKey) const; |
2dc77646 | 193 | // return true if any subkeys exist |
92049cd4 VZ |
194 | bool HasSubkeys() const; |
195 | // return true if any values exist | |
196 | bool HasValues() const; | |
197 | // return true if the key is empty (nothing under this key) | |
198 | bool IsEmpty() const { return !HasSubkeys() && !HasValues(); } | |
2bda0e17 KB |
199 | |
200 | // enumerate values and subkeys | |
2bda0e17 KB |
201 | bool GetFirstValue(wxString& strValueName, long& lIndex); |
202 | bool GetNextValue (wxString& strValueName, long& lIndex) const; | |
2bda0e17 KB |
203 | |
204 | bool GetFirstKey (wxString& strKeyName , long& lIndex); | |
205 | bool GetNextKey (wxString& strKeyName , long& lIndex) const; | |
206 | ||
20d8c319 VZ |
207 | // export the contents of this key and all its subkeys to the given file |
208 | // (which won't be overwritten, it's an error if it already exists) | |
209 | // | |
210 | // note that we export the key in REGEDIT4 format, not RegSaveKey() binary | |
211 | // format nor newer REGEDIT5 one | |
212 | bool Export(const wxString& filename) const; | |
213 | ||
214 | // same as above but write to the given (opened) stream | |
215 | bool Export(wxOutputStream& ostr) const; | |
216 | ||
217 | ||
807a903e VZ |
218 | // for wxRegConfig usage only: preallocate some memory for the name |
219 | void ReserveMemoryForName(size_t bytes) { m_strKey.reserve(bytes); } | |
220 | ||
2bda0e17 | 221 | private: |
807a903e VZ |
222 | // common part of all ctors |
223 | void Init() | |
224 | { | |
225 | m_hKey = (WXHKEY) NULL; | |
226 | m_dwLastError = 0; | |
227 | } | |
228 | ||
20d8c319 VZ |
229 | // recursive helper for Export() |
230 | bool DoExport(wxOutputStream& ostr) const; | |
231 | ||
232 | // export a single value | |
233 | bool DoExportValue(wxOutputStream& ostr, const wxString& name) const; | |
234 | ||
235 | // return the text representation (in REGEDIT4 format) of the value with the | |
236 | // given name | |
237 | wxString FormatValue(const wxString& name) const; | |
238 | ||
2bda0e17 | 239 | |
c085e333 | 240 | WXHKEY m_hKey, // our handle |
2bda0e17 KB |
241 | m_hRootKey; // handle of the top key (i.e. StdKey) |
242 | wxString m_strKey; // key name (relative to m_hRootKey) | |
243 | ||
fb5e0dcf | 244 | AccessMode m_mode; // valid only if key is opened |
807a903e | 245 | long m_dwLastError; // last error (0 if none) |
20d8c319 VZ |
246 | |
247 | ||
248 | DECLARE_NO_COPY_CLASS(wxRegKey) | |
2bda0e17 KB |
249 | }; |
250 | ||
20d8c319 | 251 | #endif // _WX_MSW_REGISTRY_H_ |
2dc77646 | 252 |