]>
Commit | Line | Data |
---|---|---|
45c28815 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/regconf.h | |
8f494e5d | 3 | // Purpose: Registry based implementation of wxConfigBase |
45c28815 VZ |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 27.04.98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
bbcdf8bc | 9 | // Licence: wxWindows licence |
45c28815 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _REGCONF_H | |
13 | #define _REGCONF_H | |
14 | ||
0d3820b3 JS |
15 | #ifdef __GNUG__ |
16 | #pragma interface "regconf.h" | |
17 | #endif | |
18 | ||
8f494e5d VZ |
19 | #ifndef _REGISTRY_H |
20 | #include <wx/msw/registry.h> | |
21 | #endif | |
22 | ||
45c28815 VZ |
23 | // ---------------------------------------------------------------------------- |
24 | // wxRegConfig | |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
6c905cb7 | 27 | class WXDLLEXPORT wxRegConfig : public wxConfigBase |
45c28815 VZ |
28 | { |
29 | public: | |
30 | // ctor & dtor | |
18244936 | 31 | // will store data in HKLM\appName and HKCU\appName |
a7ee1343 VZ |
32 | wxRegConfig(const wxString& appName = "", const wxString& vendorName = "", |
33 | const wxString& localFilename = "", const wxString& globalFilename = "", | |
34 | long style = 0); | |
18244936 | 35 | |
45c28815 VZ |
36 | // dtor will save unsaved data |
37 | virtual ~wxRegConfig(); | |
38 | ||
39 | // implement inherited pure virtual functions | |
40 | // ------------------------------------------ | |
41 | ||
42 | // path management | |
43 | virtual void SetPath(const wxString& strPath); | |
44 | virtual const wxString& GetPath() const { return m_strPath; } | |
45 | ||
8f494e5d VZ |
46 | // entry/subgroup info |
47 | // enumerate all of them | |
48 | virtual bool GetFirstGroup(wxString& str, long& lIndex) const; | |
49 | virtual bool GetNextGroup (wxString& str, long& lIndex) const; | |
50 | virtual bool GetFirstEntry(wxString& str, long& lIndex) const; | |
51 | virtual bool GetNextEntry (wxString& str, long& lIndex) const; | |
45c28815 | 52 | |
8f494e5d | 53 | // tests for existence |
6d833566 VZ |
54 | virtual bool HasGroup(const wxString& strName) const; |
55 | virtual bool HasEntry(const wxString& strName) const; | |
56 | ||
a37e8836 JS |
57 | // get number of entries/subgroups in the current group, with or without |
58 | // it's subgroups | |
3cda6353 VZ |
59 | virtual size_t GetNumberOfEntries(bool bRecursive = FALSE) const; |
60 | virtual size_t GetNumberOfGroups(bool bRecursive = FALSE) const; | |
a37e8836 | 61 | |
45c28815 | 62 | // read/write |
18244936 JS |
63 | bool Read(const wxString& key, wxString *pStr) const; |
64 | bool Read(const wxString& key, wxString *pStr, const wxString& szDefault) const; | |
65 | bool Read(const wxString& key, long *plResult) const; | |
66 | ||
67 | // The following are necessary to satisfy the compiler | |
68 | wxString Read(const wxString& key, const wxString& defVal) const | |
a7ee1343 | 69 | { return wxConfigBase::Read(key, defVal); } |
18244936 | 70 | bool Read(const wxString& key, long *pl, long defVal) const |
a7ee1343 | 71 | { return wxConfigBase::Read(key, pl, defVal); } |
dfad0599 JS |
72 | bool Read(const wxString& key, int *pi, int defVal) const |
73 | { return wxConfigBase::Read(key, pi, defVal); } | |
74 | bool Read(const wxString& key, int *pi) const | |
75 | { return wxConfigBase::Read(key, pi); } | |
18244936 | 76 | long Read(const wxString& key, long defVal) const |
a7ee1343 | 77 | { return wxConfigBase::Read(key, defVal); } |
18244936 | 78 | bool Read(const wxString& key, double* val) const |
a7ee1343 | 79 | { return wxConfigBase::Read(key, val); } |
18244936 | 80 | bool Read(const wxString& key, double* val, double defVal) const |
a7ee1343 | 81 | { return wxConfigBase::Read(key, val, defVal); } |
18244936 JS |
82 | |
83 | bool Write(const wxString& key, const wxString& szValue); | |
84 | bool Write(const wxString& key, long lValue); | |
85 | ||
cf447356 | 86 | virtual bool Flush(bool /* bCurrentOnly = FALSE */ ) { return TRUE; } |
45c28815 | 87 | |
5d1902d6 VZ |
88 | // rename |
89 | virtual bool RenameEntry(const wxString& oldName, const wxString& newName); | |
90 | virtual bool RenameGroup(const wxString& oldName, const wxString& newName); | |
91 | ||
45c28815 | 92 | // delete |
18244936 JS |
93 | virtual bool DeleteEntry(const wxString& key, bool bGroupIfEmptyAlso); |
94 | virtual bool DeleteGroup(const wxString& key); | |
45c28815 VZ |
95 | virtual bool DeleteAll(); |
96 | ||
97 | private: | |
fd3f686c VZ |
98 | // no copy ctor/assignment operator |
99 | wxRegConfig(const wxRegConfig&); | |
100 | wxRegConfig& operator=(const wxRegConfig&); | |
101 | ||
45c28815 VZ |
102 | // these keys are opened during all lifetime of wxRegConfig object |
103 | wxRegKey m_keyLocalRoot, m_keyLocal, | |
104 | m_keyGlobalRoot, m_keyGlobal; | |
105 | ||
106 | // current path (not '/' terminated) | |
107 | wxString m_strPath; | |
108 | }; | |
109 | ||
cf447356 | 110 | #endif //_REGCONF_H |