X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce336c6d76d8c513487af08857c1cd3cbe806d30..7c562ad9aa6bc343e99cbc01d6c747613b6717b2:/include/wx/msw/stdpaths.h diff --git a/include/wx/msw/stdpaths.h b/include/wx/msw/stdpaths.h index e89e80b227..cb141af92c 100644 --- a/include/wx/msw/stdpaths.h +++ b/include/wx/msw/stdpaths.h @@ -19,17 +19,29 @@ class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase { public: + wxStandardPaths() + { + UseAppInfo(AppInfo_AppName | AppInfo_VendorName); + } + + ~wxStandardPaths() { } + // implement base class pure virtuals + virtual wxString GetExecutablePath() const; virtual wxString GetConfigDir() const; virtual wxString GetUserConfigDir() const; virtual wxString GetDataDir() const; virtual wxString GetUserDataDir() const; virtual wxString GetUserLocalDataDir() const; virtual wxString GetPluginsDir() const; + virtual wxString GetDocumentsDir() const; protected: // get the path corresponding to the given standard CSIDL_XXX constant static wxString DoGetDirectory(int csidl); + + // return the directory of the application itself + static wxString GetAppDir(); }; // ----------------------------------------------------------------------------