1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of wxStandardPaths class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STDPATHS_H_
13 #define _WX_STDPATHS_H_
19 #include "wx/string.h"
21 // ----------------------------------------------------------------------------
22 // wxStandardPaths returns the standard locations in the file system
23 // ----------------------------------------------------------------------------
25 class WXDLLIMPEXP_BASE wxStandardPathsBase
28 // possible resources categorires
31 // no special category
34 // message catalog resources
42 // return the global standard paths object
43 static wxStandardPathsBase
& Get();
46 // return the directory with system config files:
47 // /etc under Unix, c:\Documents and Settings\All Users\Application Data
48 // under Windows, /Library/Preferences for Mac
49 virtual wxString
GetConfigDir() const = 0;
51 // return the directory for the user config files:
52 // $HOME under Unix, c:\Documents and Settings\username under Windows,
53 // ~/Library/Preferences under Mac
55 // only use this if you have a single file to put there, otherwise
56 // GetUserDataDir() is more appropriate
57 virtual wxString
GetUserConfigDir() const = 0;
59 // return the location of the applications global, i.e. not user-specific,
62 // prefix/share/appname under Unix, c:\Program Files\appname under Windows,
63 // appname.app/Contents/SharedSupport app bundle directory under Mac
64 virtual wxString
GetDataDir() const = 0;
66 // return the location for application data files which are host-specific
68 // same as GetDataDir() except under Unix where it is /etc/appname
69 virtual wxString
GetLocalDataDir() const;
71 // return the directory for the user-dependent application data files
73 // $HOME/.appname under Unix,
74 // c:\Documents and Settings\username\Application Data\appname under Windows
75 // and ~/Library/Application Support/appname under Mac
76 virtual wxString
GetUserDataDir() const = 0;
78 // return the directory for user data files which shouldn't be shared with
81 // same as GetUserDataDir() for all platforms except Windows where it is
82 // the "Local Settings\Application Data\appname" directory
83 virtual wxString
GetUserLocalDataDir() const;
85 // return the directory where the loadable modules (plugins) live
87 // prefix/lib/appname under Unix, program directory under Windows and
88 // Contents/Plugins app bundle subdirectory under Mac
89 virtual wxString
GetPluginsDir() const = 0;
91 // get resources directory: resources are auxiliary files used by the
92 // application and include things like image and sound files
94 // same as GetDataDir() for all platforms except Mac where it returns
95 // Contents/Resources subdirectory of the app bundle
96 virtual wxString
GetResourcesDir() const { return GetDataDir(); }
98 // get localized resources directory containing the resource files of the
99 // specified category for the given language
101 // in general this is just GetResourcesDir()/lang under Windows and Unix
102 // and GetResourcesDir()/lang.lproj under Mac but is something quite
103 // different under Unix for message catalog category (namely the standard
104 // prefix/share/locale/lang/LC_MESSAGES)
106 GetLocalizedResourcesDir(const wxChar
*lang
,
107 ResourceCat
WXUNUSED(category
)
108 = ResourceCat_None
) const
110 return GetResourcesDir() + wxFILE_SEP_PATH
+ lang
;
114 // virtual dtor for the base class
115 virtual ~wxStandardPathsBase();
118 // append "/appname" suffix if the app name is set (doesn't append the
119 // slash if dir already ends with a slash or dot)
120 static wxString
AppendAppName(const wxString
& dir
);
123 #if defined(__WXMSW__)
124 #include "wx/msw/stdpaths.h"
125 // We want CoreFoundation paths on both CarbonLib and Darwin (for all ports)
126 #elif defined(__WXMAC__) || defined(__DARWIN__)
127 #include "wx/mac/corefoundation/stdpaths.h"
128 #elif defined(__OS2__)
129 #include "wx/os2/stdpaths.h"
130 #elif defined(__UNIX__)
131 #include "wx/unix/stdpaths.h"
132 #elif defined(__PALMOS__)
133 #include "wx/palmos/stdpaths.h"
136 // ----------------------------------------------------------------------------
137 // Minimal generic implementation
138 // ----------------------------------------------------------------------------
140 class WXDLLIMPEXP_BASE wxStandardPaths
: public wxStandardPathsBase
143 void SetInstallPrefix(const wxString
& prefix
) { m_prefix
= prefix
; }
144 wxString
GetInstallPrefix() const { return m_prefix
; }
145 virtual wxString
GetConfigDir() const { return m_prefix
; }
146 virtual wxString
GetUserConfigDir() const { return m_prefix
; }
147 virtual wxString
GetDataDir() const { return m_prefix
; }
148 virtual wxString
GetLocalDataDir() const { return m_prefix
; }
149 virtual wxString
GetUserDataDir() const { return m_prefix
; }
150 virtual wxString
GetPluginsDir() const { return m_prefix
; }
158 #endif // wxUSE_STDPATHS
160 #endif // _WX_STDPATHS_H_