]>
git.saurik.com Git - wxWidgets.git/blob - interface/fileconf.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxFileConfig
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 wxFileConfig implements wxConfigBase interface for
14 storing and retrieving configuration information using plain text files. The
15 files have a simple format reminiscent of Windows INI files with lines of the
16 form @c key = value defining the keys and lines of special form
17 @c [group] indicating the start of each group.
19 This class is used by default for wxConfig on Unix platforms but may also be
20 used explicitly if you want to use files and not the registry even under
26 @see wxFileConfig::Save
28 class wxFileConfig
: public wxConfigBase
33 Read the config data from the specified stream instead of the associated file,
38 wxFileConfig(wxInputStream
& is
);
41 Return the full path to the file which would be used by wxFileConfig as global,
42 system-wide, file if it were constructed with @a basename as "global
43 filename'' parameter in the constructor. Notice that this function cannot be
44 used if @a basename is already a full path name.
46 static wxFileName
GetGlobalFile(const wxString
& basename
);
49 Return the full path to the file which would be used by wxFileConfig as local,
50 user-specific, file if it were constructed with @a basename as "local
51 filename'' parameter in the constructor.
52 @a style has the same meaning as in @ref wxConfigBase::ctor constructor
53 and can contain any combination of styles but only wxCONFIG_USE_SUBDIR bit is
54 examined by this function.
55 Notice that this function cannot be used if @a basename is already a full
58 static wxFileName
GetLocalFile(const wxString
& basename
,
63 Saves all config data to the given stream, returns @true if data was saved
64 successfully or @false on error.
65 Note the interaction of this function with the internal "dirty flag'': the
66 data is saved unconditionally, i.e. even if the object is not dirty. However
67 after saving it successfully, the dirty flag is reset so no changes will be
68 written back to the file this object is associated with until you change its
71 @see wxConfigBase::Flush
73 bool Save(wxOutputStream
& os
);
76 Allows to set the mode to be used for the config file creation. For example, to
77 create a config file which is not readable by other users (useful if it stores
78 some sensitive information, such as passwords), you could use
80 This function doesn't do anything on non-Unix platforms.
84 void SetUmask(int mode
);