1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxStandardPaths documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxStandardPaths
}}\label{wxstandardpaths
}
14 wxStandardPaths returns the standard locations in the file system and should be
15 used by applications to find their data files in a portable way.
17 In the description of the methods below, the example return values are given
18 for the Unix, Windows and Mac OS X systems, however please note that these are
19 just the examples and the actual values may differ. For example, under Windows:
20 the system administrator may change the standard directories locations, i.e.
21 the Windows directory may be named
\texttt{W:$
\backslash$Win2003
} instead of
22 the default
\texttt{C:$
\backslash$Windows
}.
24 The strings
\texttt{\textit{appname
}} and
\texttt{\textit{username
}} should be
25 replaced with the value returned by
\helpref{wxApp::GetAppName
}{wxappgetappname
}
26 and the name of the currently logged in user, respectively. The string
27 \texttt{\textit{prefix
}} is only used under Unix and is
\texttt{/usr/local
} by
28 default but may be changed using
\helpref{SetInstallPrefix
}{wxstandardpathssetinstallprefix
}.
30 The directories returned by the methods of this class may or may not exist. If
31 they don't exist, it's up to the caller to create them, wxStandardPaths doesn't
34 Finally note that these functions only work with standardly packaged
35 applications. I.e. under Unix you should follow the standard installation
36 conventions and under Mac you should create your application bundle according
37 to the Apple guidelines. Again, this class doesn't help you to do it.
39 This class is MT-safe: its methods may be called concurrently from different
40 threads without additional locking.
42 \wxheading{Derived from
}
46 \wxheading{Include files
}
52 \helpref{wxBase
}{librarieslist
}
55 \latexignore{\rtfignore{\wxheading{Members
}}}
58 \membersection{wxStandardPaths::Get
}\label{wxstandardpathsget
}
60 \func{static wxStandardPathsBase\&
}{Get
}{\void}
62 Returns reference to the unique global standard paths object.
65 \membersection{wxStandardPaths::GetConfigDir
}\label{wxstandardpathsgetconfigdir
}
67 \constfunc{wxString
}{GetConfigDir
}{\void}
69 Return the directory containing the system config files.
71 Example return values:
73 \item Unix:
\texttt{/etc
}
74 \item Windows:
\texttt{C:$
\backslash$Documents and Settings$
\backslash$All Users$
\backslash$Application Data
}
75 \item Mac:
\texttt{/Library/Preferences
}
80 \helpref{wxFileConfig
}{wxfileconfig
}
83 \membersection{wxStandardPaths::GetDataDir
}\label{wxstandardpathsgetdatadir
}
85 \constfunc{wxString
}{GetDataDir
}{\void}
87 Return the location of the applications global, i.e. not user-specific,
90 Example return values:
92 \item Unix:
\texttt{\textit{prefix
}/share/
\textit{appname
}}
93 \item Windows: the directory where the executable file is located
94 \item Mac:
\texttt{\textit{appname
}.app/Contents/SharedSupport
} bundle subdirectory
99 \helpref{GetLocalDataDir
}{wxstandardpathsgetlocaldatadir
}
102 \membersection{wxStandardPaths::GetDocumentsDir
}\label{wxstandardpathsgetdocumentsdir
}
104 \constfunc{wxString
}{GetDocumentsDir
}{\void}
106 Return the directory containing the current user's documents.
108 Example return values:
110 \item Unix:
\tt{~
} (the home directory)
111 \item Windows:
\texttt{C:$
\backslash$Documents and Settings$
\backslash$
\textit{username
}$
\backslash$Documents
}
112 \item Mac:
\texttt{~/Documents
}
118 \membersection{wxStandardPaths::GetExecutablePath
}\label{wxstandardpathsgetexecutablepath
}
120 \constfunc{wxString
}{GetExecutablePath
}{\void}
122 Return the directory and the filename for the current executable.
124 Example return values:
126 \item Unix:
\texttt{/usr/local/bin/exename
}
127 \item Windows:
\texttt{C:$
\backslash$Programs$
\backslash$AppFolder$
\backslash$exename.exe
}
128 \item Mac:
\texttt{/Programs/exename
}
133 \membersection{wxStandardPaths::GetInstallPrefix
}\label{wxstandardpathsgetinstallprefix
}
135 \constfunc{wxString
}{GetInstallPrefix
}{\void}
137 \textbf{Note:
} This function is only available under Unix.
139 Return the program installation prefix, e.g.
\texttt{/usr
},
\texttt{/opt
} or
140 \texttt{/home/zeitlin
}.
142 If the prefix had been previously by
143 \helpref{SetInstallPrefix
}{wxstandardpathssetinstallprefix
}, returns that
144 value, otherwise tries to determine it automatically (Linux only right
145 now) and finally returns the default
\texttt{/usr/local
} value if it failed.
148 \membersection{wxStandardPaths::GetLocalDataDir
}\label{wxstandardpathsgetlocaldatadir
}
150 \constfunc{wxString
}{GetLocalDataDir
}{\void}
152 Return the location for application data files which are host-specific and
153 can't, or shouldn't, be shared with the other machines.
155 This is the same as
\helpref{GetDataDir()
}{wxstandardpathsgetdatadir
} except
156 under Unix where it returns
\texttt{/etc/
\textit{appname
}}.
159 \membersection{wxStandardPaths::GetLocalizedResourcesDir
}\label{wxstandardpathsgetlocalizedresourcesdir
}
161 \constfunc{wxString
}{GetLocalizedResourcesDir
}{\param{const wxString\&
}{ lang
},
\param{ResourceCat
}{ category = ResourceCat
\_None}}
163 Return the localized resources directory containing the resource files of the
164 specified category for the given language.
166 In general this is just the same as
\arg{lang
} subdirectory of
167 \helpref{GetResourcesDir()
}{wxstandardpathsgetresourcesdir
} (or
168 \texttt{\arg{lang
}.lproj
} under Mac OS X) but is something quite
169 different for message catalog category under Unix where it returns the standard
170 \texttt{\textit{prefix
}/share/locale/
\arg{lang
}/LC
\_MESSAGES} directory.
175 \membersection{wxStandardPaths::GetPluginsDir
}\label{wxstandardpathsgetpluginsdir
}
177 \constfunc{wxString
}{GetPluginsDir
}{\void}
179 Return the directory where the loadable modules (plugins) live.
181 Example return values:
183 \item Unix:
\texttt{\textit{prefix
}/lib/
\textit{appname
}}
184 \item Windows: the directory of the executable file
185 \item Mac:
\texttt{\textit{appname
}.app/Contents/PlugIns
} bundle subdirectory
190 \helpref{wxDynamicLibrary
}{wxdynamiclibrary
}
193 \membersection{wxStandardPaths::GetResourcesDir
}\label{wxstandardpathsgetresourcesdir
}
195 \constfunc{wxString
}{GetResourcesDir
}{\void}
197 Return the directory where the application resource files are located. The
198 resources are the auxiliary data files needed for the application to run and
199 include, for example, image and sound files it might use.
201 This function is the same as
\helpref{GetDataDir
}{wxstandardpathsgetdatadir
} for
202 all platforms except Mac OS X.
204 Example return values:
206 \item Unix:
\texttt{\textit{prefix
}/share/
\textit{appname
}}
207 \item Windows: the directory where the executable file is located
208 \item Mac:
\texttt{\textit{appname
}.app/Contents/Resources
} bundle subdirectory
216 \helpref{GetLocalizedResourcesDir
}{wxstandardpathsgetlocalizedresourcesdir
}
218 \membersection{wxStandardPaths::GetTempDir
}\label{wxstandardpathsgettempdir
}
220 \constfunc{wxString
}{GetTempDir
}{\void}
222 Return the directory for storing temporary files. To create unique temporary files,
223 it is best to use
\helpref{wxFileName::CreateTempFileName
}{wxfilenamecreatetempfilename
} for correct behaviour when
224 multiple processes are attempting to create temporary files.
228 \membersection{wxStandardPaths::GetUserConfigDir
}\label{wxstandardpathsgetuserconfigdir
}
230 \constfunc{wxString
}{GetUserConfigDir
}{\void}
232 Return the directory for the user config files:
234 \item Unix:
\tt{~
} (the home directory)
235 \item Windows:
\tt{C:$
\backslash$Documents and Settings$
\backslash$
\textit{username
}$
\backslash$Application Data
}
236 \item Mac:
\tt{~/Library/Preferences
}
239 Only use this method if you have a single configuration file to put in this
240 directory, otherwise
\helpref{GetUserDataDir()
}{wxstandardpathsgetuserdatadir
} is
244 \membersection{wxStandardPaths::GetUserDataDir
}\label{wxstandardpathsgetuserdatadir
}
246 \constfunc{wxString
}{GetUserDataDir
}{\void}
248 Return the directory for the user-dependent application data files:
250 \item Unix:
\tt{~/.
\textit{appname
}}
251 \item Windows:
\tt{C:$
\backslash$Documents and Settings$
\backslash$
\textit{username
}$
\backslash$Application Data$
\backslash$
\textit{appname
}}
252 \item Mac:
\tt{~/Library/Application Support/
\textit{appname
}}
256 \membersection{wxStandardPaths::GetUserLocalDataDir
}\label{wxstandardpathsgetuserlocaldatadir
}
258 \constfunc{wxString
}{GetUserLocalDataDir
}{\void}
260 Return the directory for user data files which shouldn't be shared with
263 This is the same as
\helpref{GetUserDataDir()
}{wxstandardpathsgetuserdatadir
} for
264 all platforms except Windows where it returns
265 \texttt{C:$
\backslash$Documents and Settings$
\backslash$
\textit{username
}$
\backslash$Local Settings$
\backslash$Application Data$
\backslash$
\textit{appname
}}
268 \membersection{wxStandardPaths::SetInstallPrefix
}\label{wxstandardpathssetinstallprefix
}
270 \func{void
}{SetInstallPrefix
}{\param{const wxString\&
}{prefix
}}
272 \textbf{Note:
} This function is only available under Unix.
274 Lets wxStandardPaths know about the real program installation prefix on a Unix
275 system. By default, the value returned by
276 \helpref{GetInstallPrefix
}{wxstandardpathsgetinstallprefix
} is used.
278 Although under Linux systems the program prefix may usually be determined
279 automatically, portable programs should call this function. Usually the prefix
280 is set during program configuration if using GNU autotools and so it is enough
281 to pass its value defined in
\texttt{config.h
} to this function.