]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/stdpaths.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStandardPaths
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxStandardPaths
12 wxStandardPaths returns the standard locations in the file system and should be
13 used by applications to find their data files in a portable way.
15 In the description of the methods below, the example return values are given
16 for the Unix, Windows and Mac OS X systems, however please note that these are
17 just the examples and the actual values may differ. For example, under Windows:
18 the system administrator may change the standard directories locations, i.e.
19 the Windows directory may be named @c "W:\Win2003" instead of
20 the default @c "C:\Windows".
22 The strings @c appname and @c username should be replaced with the value
23 returned by wxApp::GetAppName() and the name of the currently logged in user,
24 respectively. The string @c prefix is only used under Unix and is @c /usr/local by
25 default but may be changed using wxStandardPaths::SetInstallPrefix.
27 The directories returned by the methods of this class may or may not exist.
28 If they don't exist, it's up to the caller to create them, wxStandardPaths doesn't
31 Finally note that these functions only work with standardly packaged
32 applications. I.e. under Unix you should follow the standard installation
33 conventions and under Mac you should create your application bundle according
34 to the Apple guidelines. Again, this class doesn't help you to do it.
36 This class is MT-safe: its methods may be called concurrently from different
37 threads without additional locking.
39 Note that you don't allocate an instance of class wxStandardPaths, but retrieve the
40 global standard paths object using @c wxStandardPaths::Get on which you call the
52 Returns reference to the unique global standard paths object.
54 static wxStandardPathsBase
& Get();
57 Return the directory for the document files used by this application.
59 If the application-specific directory doesn't exist, this function
60 returns GetDocumentsDir().
62 Example return values:
64 - Windows: @c "C:\Documents and Settings\username\My Documents\appname"
65 - Mac: @c ~/Documents/appname
69 @see GetAppDocumentsDir()
71 virtual wxString
GetAppDocumentsDir() const;
74 Return the directory containing the system config files.
75 Example return values:
77 - Windows: @c "C:\Documents and Settings\All Users\Application Data"
78 - Mac: @c /Library/Preferences
82 virtual wxString
GetConfigDir() const;
85 Return the location of the applications global, i.e. not user-specific,
87 Example return values:
88 - Unix: @c prefix/share/appname
89 - Windows: the directory where the executable file is located
90 - Mac: @c appname.app/Contents/SharedSupport bundle subdirectory
92 @see GetLocalDataDir()
94 virtual wxString
GetDataDir() const;
97 Return the directory containing the current user's documents.
99 Example return values:
100 - Unix: @c ~ (the home directory)
101 - Windows: @c "C:\Documents and Settings\username\My Documents"
102 - Mac: @c ~/Documents
106 @see GetAppDocumentsDir()
108 virtual wxString
GetDocumentsDir() const;
111 Return the directory and the filename for the current executable.
112 Example return values:
113 - Unix: @c /usr/local/bin/exename
114 - Windows: @c "C:\Programs\AppFolder\exename.exe"
115 - Mac: @c /Programs/exename
117 virtual wxString
GetExecutablePath() const;
120 Return the program installation prefix, e.g. @c /usr, @c /opt or @c /home/zeitlin.
122 If the prefix had been previously by SetInstallPrefix(), returns that
123 value, otherwise tries to determine it automatically (Linux only right now)
124 and finally returns the default @c /usr/local value if it failed.
126 @note This function is only available under Unix.
128 wxString
GetInstallPrefix() const;
131 Return the location for application data files which are host-specific and
132 can't, or shouldn't, be shared with the other machines.
134 This is the same as GetDataDir() except under Unix where it returns @c /etc/appname.
136 virtual wxString
GetLocalDataDir() const;
139 Return the localized resources directory containing the resource files of the
140 specified category for the given language.
142 In general this is just the same as @a lang subdirectory of GetResourcesDir()
143 (or @c lang.lproj under Mac OS X) but is something quite different for
144 message catalog category under Unix where it returns the standard
145 @c prefix/share/locale/lang/LC_MESSAGES directory.
149 virtual wxString
GetLocalizedResourcesDir(const wxString
& lang
,
150 ResourceCat category
) const;
153 Return the directory where the loadable modules (plugins) live.
154 Example return values:
155 - Unix: @c prefix/lib/appname
156 - Windows: the directory of the executable file
157 - Mac: @c appname.app/Contents/PlugIns bundle subdirectory
159 @see wxDynamicLibrary
161 virtual wxString
GetPluginsDir() const;
164 Return the directory where the application resource files are located.
166 The resources are the auxiliary data files needed for the application to run
167 and include, for example, image and sound files it might use.
169 This function is the same as GetDataDir() for all platforms except Mac OS X.
170 Example return values:
171 - Unix: @c prefix/share/appname
172 - Windows: the directory where the executable file is located
173 - Mac: @c appname.app/Contents/Resources bundle subdirectory
177 @see GetLocalizedResourcesDir()
179 virtual wxString
GetResourcesDir() const;
182 Return the directory for storing temporary files.
183 To create unique temporary files, it is best to use wxFileName::CreateTempFileName
184 for correct behaviour when multiple processes are attempting to create temporary files.
188 virtual wxString
GetTempDir() const;
191 Return the directory for the user config files:
192 - Unix: @c ~ (the home directory)
193 - Windows: @c "C:\Documents and Settings\username\Application Data"
194 - Mac: @c ~/Library/Preferences
196 Only use this method if you have a single configuration file to put in this
197 directory, otherwise GetUserDataDir() is more appropriate.
199 virtual wxString
GetUserConfigDir() const;
202 Return the directory for the user-dependent application data files:
203 - Unix: @c ~/.appname
204 - Windows: @c "C:\Documents and Settings\username\Application Data\appname"
205 - Mac: @c "~/Library/Application Support/appname"
207 virtual wxString
GetUserDataDir() const;
210 Return the directory for user data files which shouldn't be shared with
213 This is the same as GetUserDataDir() for all platforms except Windows where it returns
214 @c "C:\Documents and Settings\username\Local Settings\Application Data\appname"
216 virtual wxString
GetUserLocalDataDir() const;
219 Lets wxStandardPaths know about the real program installation prefix on a Unix
220 system. By default, the value returned by GetInstallPrefix() is used.
222 Although under Linux systems the program prefix may usually be determined
223 automatically, portable programs should call this function. Usually the prefix
224 is set during program configuration if using GNU autotools and so it is enough
225 to pass its value defined in @c config.h to this function.
227 @note This function is only available under Unix.
229 void SetInstallPrefix(const wxString
& prefix
);
232 Controls what application information is used when constructing paths that
233 should be unique to this program, such as the application data directory, the
234 plugins directory on Unix, etc.
236 Valid values for @a info are @c AppInfo_None and either one or combination
237 of @c AppInfo_AppName and @c AppInfo_VendorName. The first one tells this
238 class to not use neither application nor vendor name in the paths.
240 By default, only the application name is used under Unix systems but both
241 application and vendor names are used under Windows and Mac.
243 void UseAppInfo(int info
);