1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/stdpaths.h
3 // Purpose: wxStandardPaths for Unix systems
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIX_STDPATHS_H_
13 #define _WX_UNIX_STDPATHS_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_BASE wxStandardPaths
: public wxStandardPathsBase
22 // set the program installation directory which is /usr/local by default
24 // under some systems (currently only Linux) the program directory can be
25 // determined automatically but for portable programs you should always set
27 void SetInstallPrefix(const wxString
& prefix
);
29 // get the program installation prefix
31 // if the prefix had been previously by SetInstallPrefix, returns that
32 // value, otherwise tries to determine it automatically (Linux only right
33 // now) and returns /usr/local if it failed
34 wxString
GetInstallPrefix() const;
37 // implement base class pure virtuals
38 virtual wxString
GetConfigDir() const;
39 virtual wxString
GetUserConfigDir() const;
40 virtual wxString
GetDataDir() const;
41 virtual wxString
GetLocalDataDir() const;
42 virtual wxString
GetUserDataDir() const;
43 virtual wxString
GetPluginsDir() const;
49 #endif // _WX_UNIX_STDPATHS_H_