X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/df91131cb0f90ee8bfb194926a13b1a108ca3c6e..2190f6aa153416d1c225532bb026df98b3e273ad:/src/common/sysopt.cpp diff --git a/src/common/sysopt.cpp b/src/common/sysopt.cpp index a5967226a8..d27f46c726 100644 --- a/src/common/sysopt.cpp +++ b/src/common/sysopt.cpp @@ -29,12 +29,12 @@ #include "wx/sysopt.h" #ifndef WX_PRECOMP + #include "wx/app.h" #include "wx/list.h" #include "wx/string.h" + #include "wx/arrstr.h" #endif -#include "wx/arrstr.h" - // ---------------------------------------------------------------------------- // private globals // ---------------------------------------------------------------------------- @@ -69,21 +69,48 @@ void wxSystemOptions::SetOption(const wxString& name, int value) wxString wxSystemOptions::GetOption(const wxString& name) { + wxString val; + int idx = gs_optionNames.Index(name, false); - if (idx == wxNOT_FOUND) - return wxEmptyString; - else - return gs_optionValues[idx]; + if ( idx != wxNOT_FOUND ) + { + val = gs_optionValues[idx]; + } + else // not set explicitely + { + // look in the environment: first for a variable named "wx_appname_name" + // which can be set to affect the behaviour or just this application + // and then for "wx_name" which can be set to change the option globally + wxString var(name); + var.Replace(_T("."), _T("_")); // '.'s not allowed in env var names + + wxString appname; + if ( wxTheApp ) + appname = wxTheApp->GetAppName(); + + if ( !appname.empty() ) + val = wxGetenv(_T("wx_") + appname + _T('_') + var); + + if ( val.empty() ) + val = wxGetenv(_T("wx_") + var); + } + + return val; } int wxSystemOptions::GetOptionInt(const wxString& name) { - return wxAtoi(GetOption(name)); +#ifdef _PACC_VER + // work around the PalmOS pacc compiler bug + return wxAtoi (GetOption(name).data()); +#else + return wxAtoi (GetOption(name)); +#endif } bool wxSystemOptions::HasOption(const wxString& name) { - return gs_optionNames.Index(name, false) != wxNOT_FOUND; + return !GetOption(name).empty(); } #endif // wxUSE_SYSTEM_OPTIONS