Searched refs:wxFileConfig (Results 1 - 18 of 18) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dmemconf.h33 // notice that we inherit from wxFileConfig which already stores its data in
37 class wxMemoryConfig : public wxFileConfig
41 wxMemoryConfig() : wxFileConfig(wxEmptyString, // default app name
H A Dfileconf.h3 // Purpose: wxFileConfig derivation of wxConfigBase
25 // wxFileConfig
29 wxFileConfig derives from base Config and implements file based config class,
71 wxFileConfig manages not less than 2 config files for each program: global
84 wxFileConfig also may automatically expand the values of environment variables
101 class WXDLLIMPEXP_BASE wxFileConfig : public wxConfigBase class in inherits:wxConfigBase
120 wxFileConfig(const wxString& appName = wxEmptyString,
129 wxFileConfig(wxInputStream &inStream, const wxMBConv& conv = wxConvAuto());
133 virtual ~wxFileConfig();
167 // additional, wxFileConfig
[all...]
H A Dconfbase.h47 // (i.e. whether wxConfigBase::Create() will create a wxFileConfig (if it's
338 #define wxConfig wxFileConfig
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/ec/cpp/
H A DECFileConfig.h52 * Extension to wxFileConfig for reading/writing CMD4Hash values.
57 class CECFileConfig : public wxFileConfig {
61 : wxFileConfig(wxEmptyString, wxEmptyString, FinalizeFilename(localFilename),
76 bool retval = wxFileConfig::Read(key, &sHash, wxEmptyString);
95 return wxFileConfig::Write(key, hash.IsEmpty() ? wxString(wxEmptyString) : hash.Encode());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/fileconf/
H A Dfileconftest.cpp43 static wxString Dump(wxFileConfig& fc)
50 // helper macro to test wxFileConfig contents
97 static wxString ChangePath(wxFileConfig& fc, const wxChar *path)
104 void CheckGroupEntries(const wxFileConfig& fc,
108 void CheckGroupSubgroups(const wxFileConfig& fc,
125 wxFileConfig fc(sis);
137 wxFileConfig fc;
158 FileConfigTestCase::CheckGroupEntries(const wxFileConfig& fc,
185 FileConfigTestCase::CheckGroupSubgroups(const wxFileConfig& fc,
214 wxFileConfig f
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dfileconf.tex3 %% Purpose: wxFileConfig documentation
12 \section{\class{wxFileConfig}}\label{wxfileconfig}
14 wxFileConfig implements \helpref{wxConfigBase}{wxconfigbase} interface for
35 \membersection{wxFileConfig::wxFileConfig}\label{wxfileconfigctor}
37 \func{}{wxFileConfig}{\param{wxInputStream\& }{is}, \param{wxMBConv\& }{conv = wxConvUTF8}}
47 \membersection{wxFileConfig::Save}\label{wxfileconfigsave}
65 \membersection{wxFileConfig::SetUmask}\label{wxfileconfigsetumask}
H A Dconfig.tex5 of its derivations: \helpref{wxFileConfig}{wxfileconfig},
16 wxFileConfig otherwise.
32 <wx/fileconf.h> (wxFileConfig class)\\
40 // using wxConfig instead of writing wxFileConfig or wxRegConfig enhances
87 one (especially because creating a wxFileConfig object might be a time
274 just might work with wxFileConfig, you will get a system error with
380 class and is ignored by some implementations. For wxFileConfig, these styles
391 For wxFileConfig you can also add wxCONFIG\_USE\_RELATIVE\_PATH by logically
392 or'ing it to either of the \_FILE options to tell wxFileConfig to use relative
403 For wxFileConfig, yo
[all...]
H A Dstdpaths.tex80 \helpref{wxFileConfig}{wxfileconfig}
H A DwxPython.tex323 \item \helpref{wxFileConfig}{wxfileconfig}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/dfb/private/
H A Dfontmgr.h17 class wxFileConfig;
76 void AddFont(const wxString& dir, const wxString& name, wxFileConfig& cfg);
77 void SetDefaultFonts(wxFileConfig& cfg);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dfileconf.cpp3 // Purpose: implementation of wxFileConfig derivation of wxConfig
64 #define CONST_CAST ((wxFileConfig *)this)->
91 // get the name to use in wxFileConfig ctor
192 wxFileConfig *m_pConfig; // config object we belong to
209 wxFileConfigGroup(wxFileConfigGroup *pParent, const wxString& strName, wxFileConfig *);
217 wxFileConfig *Config() const { return m_pConfig; }
264 wxString wxFileConfig::GetGlobalDir()
305 wxString wxFileConfig::GetLocalDir()
332 wxString wxFileConfig::GetGlobalFileName(const wxChar *szFile)
349 wxString wxFileConfig
427 wxFileConfig::wxFileConfig(const wxString& appName, const wxString& vendorName, function in class:wxFileConfig
484 wxFileConfig::wxFileConfig(wxInputStream &inStream, const wxMBConv& conv) function in class:wxFileConfig
[all...]
H A Dconfig.cpp95 new wxFileConfig(wxTheApp->GetAppName());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/dfb/
H A Dfontmgr.cpp105 The FontsIndex file is standard wxFileConfig file text file. Each toplevel
176 wxFileConfig cfg(wxEmptyString, wxEmptyString,
194 ReadFilePath(const wxString& name, const wxString& dir, wxFileConfig& cfg)
206 wxFileConfig& cfg)
226 void wxFontsManager::SetDefaultFonts(wxFileConfig& cfg)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dutilsres.cpp35 wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename );
71 wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dutilsres.cpp33 wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename );
69 wxFileConfig conf( wxTheApp->GetAppName(), wxTheApp->GetVendorName(), filename );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/emulator/src/
H A Demulator.cpp457 wxFileConfig config(wxT("wxEmulator"), wxT("wxWidgets"),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DamuleAppCommon.cpp427 wxConfig::Set(new wxFileConfig( wxEmptyString, wxEmptyString, ConfigDir + m_configFile));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/console/
H A Dconsole.cpp744 // wxFileConfig
765 wxPuts(_T("*** testing wxFileConfig loading/reading ***"));
767 wxFileConfig fileconf(_T("test"), wxEmptyString,

Completed in 75 milliseconds