]> git.saurik.com Git - wxWidgets.git/blame - include/wx/stdpaths.h
Theme fix for Mac
[wxWidgets.git] / include / wx / stdpaths.h
CommitLineData
1ee445c7 1///////////////////////////////////////////////////////////////////////////////
96e2aec5
VZ
2// Name: wx/stdpaths.h
3// Purpose: declaration of wxStandardPaths class
1ee445c7
VZ
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 2004-10-17
7// RCS-ID: $Id$
8// Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
0b75a1e0
VZ
12#ifndef _WX_STDPATHS_H_
13#define _WX_STDPATHS_H_
1ee445c7 14
07158944
VZ
15#include "wx/defs.h"
16
17#if wxUSE_STDPATHS
18
6cb5e50b 19#include "wx/string.h"
f45bffb6 20#include "wx/filefn.h"
6cb5e50b 21
1ee445c7 22// ----------------------------------------------------------------------------
96e2aec5 23// wxStandardPaths returns the standard locations in the file system
1ee445c7
VZ
24// ----------------------------------------------------------------------------
25
6cb5e50b 26class WXDLLIMPEXP_BASE wxStandardPathsBase
1ee445c7
VZ
27{
28public:
3af9f2de
VZ
29 // possible resources categorires
30 enum ResourceCat
31 {
32 // no special category
33 ResourceCat_None,
34
35 // message catalog resources
36 ResourceCat_Messages,
37
38 // end of enum marker
39 ResourceCat_Max
40 };
41
42
6cb5e50b 43 // return the global standard paths object
fc480dc1 44 static wxStandardPathsBase& Get();
48713afd
VZ
45
46
1ee445c7 47 // return the directory with system config files:
6cb5e50b
VZ
48 // /etc under Unix, c:\Documents and Settings\All Users\Application Data
49 // under Windows, /Library/Preferences for Mac
50 virtual wxString GetConfigDir() const = 0;
1ee445c7
VZ
51
52 // return the directory for the user config files:
53 // $HOME under Unix, c:\Documents and Settings\username under Windows,
54 // ~/Library/Preferences under Mac
55 //
56 // only use this if you have a single file to put there, otherwise
57 // GetUserDataDir() is more appropriate
6cb5e50b 58 virtual wxString GetUserConfigDir() const = 0;
1ee445c7
VZ
59
60 // return the location of the applications global, i.e. not user-specific,
61 // data files
62 //
48713afd
VZ
63 // prefix/share/appname under Unix, c:\Program Files\appname under Windows,
64 // appname.app/Contents/SharedSupport app bundle directory under Mac
6cb5e50b 65 virtual wxString GetDataDir() const = 0;
1ee445c7
VZ
66
67 // return the location for application data files which are host-specific
68 //
69 // same as GetDataDir() except under Unix where it is /etc/appname
6cb5e50b 70 virtual wxString GetLocalDataDir() const;
1ee445c7
VZ
71
72 // return the directory for the user-dependent application data files
73 //
74 // $HOME/.appname under Unix,
75 // c:\Documents and Settings\username\Application Data\appname under Windows
48713afd 76 // and ~/Library/Application Support/appname under Mac
6cb5e50b 77 virtual wxString GetUserDataDir() const = 0;
1ee445c7
VZ
78
79 // return the directory for user data files which shouldn't be shared with
80 // the other machines
81 //
82 // same as GetUserDataDir() for all platforms except Windows where it is
83 // the "Local Settings\Application Data\appname" directory
6cb5e50b 84 virtual wxString GetUserLocalDataDir() const;
1ee445c7
VZ
85
86 // return the directory where the loadable modules (plugins) live
87 //
48713afd 88 // prefix/lib/appname under Unix, program directory under Windows and
1ee445c7 89 // Contents/Plugins app bundle subdirectory under Mac
6cb5e50b
VZ
90 virtual wxString GetPluginsDir() const = 0;
91
3af9f2de
VZ
92 // get resources directory: resources are auxiliary files used by the
93 // application and include things like image and sound files
94 //
95 // same as GetDataDir() for all platforms except Mac where it returns
96 // Contents/Resources subdirectory of the app bundle
97 virtual wxString GetResourcesDir() const { return GetDataDir(); }
98
99 // get localized resources directory containing the resource files of the
100 // specified category for the given language
101 //
102 // in general this is just GetResourcesDir()/lang under Windows and Unix
103 // and GetResourcesDir()/lang.lproj under Mac but is something quite
104 // different under Unix for message catalog category (namely the standard
105 // prefix/share/locale/lang/LC_MESSAGES)
106 virtual wxString
107 GetLocalizedResourcesDir(const wxChar *lang,
8c943368
VZ
108 ResourceCat WXUNUSED(category)
109 = ResourceCat_None) const
3af9f2de
VZ
110 {
111 return GetResourcesDir() + wxFILE_SEP_PATH + lang;
112 }
113
17af82fb
VZ
114 // return the "Documents" directory for the current user
115 //
116 // C:\Documents and Settings\username\Documents under Windows,
117 // $HOME under Unix and ~/Documents under Mac
118 virtual wxString GetDocumentsDir() const;
119
ecf9559d
JS
120 // return the temporary directory for the current user
121 virtual wxString GetTempDir() const;
122
6cb5e50b
VZ
123
124 // virtual dtor for the base class
125 virtual ~wxStandardPathsBase();
ce336c6d
VZ
126
127protected:
128 // append "/appname" suffix if the app name is set (doesn't append the
129 // slash if dir already ends with a slash or dot)
130 static wxString AppendAppName(const wxString& dir);
1ee445c7
VZ
131};
132
6cb5e50b
VZ
133#if defined(__WXMSW__)
134 #include "wx/msw/stdpaths.h"
fc480dc1
DE
135// We want CoreFoundation paths on both CarbonLib and Darwin (for all ports)
136#elif defined(__WXMAC__) || defined(__DARWIN__)
726b98e9 137 #include "wx/mac/corefoundation/stdpaths.h"
175bb578
SN
138#elif defined(__OS2__)
139 #include "wx/os2/stdpaths.h"
6cb5e50b
VZ
140#elif defined(__UNIX__)
141 #include "wx/unix/stdpaths.h"
a809b45d
WS
142#elif defined(__PALMOS__)
143 #include "wx/palmos/stdpaths.h"
46a28273
MW
144#else
145
146// ----------------------------------------------------------------------------
d6f42b1b 147// Minimal generic implementation
46a28273
MW
148// ----------------------------------------------------------------------------
149
150class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase
151{
152public:
153 void SetInstallPrefix(const wxString& prefix) { m_prefix = prefix; }
154 wxString GetInstallPrefix() const { return m_prefix; }
155 virtual wxString GetConfigDir() const { return m_prefix; }
156 virtual wxString GetUserConfigDir() const { return m_prefix; }
157 virtual wxString GetDataDir() const { return m_prefix; }
158 virtual wxString GetLocalDataDir() const { return m_prefix; }
159 virtual wxString GetUserDataDir() const { return m_prefix; }
160 virtual wxString GetPluginsDir() const { return m_prefix; }
17af82fb 161 virtual wxString GetDocumentsDir() const { return m_prefix; }
46a28273
MW
162
163private:
164 wxString m_prefix;
165};
166
6cb5e50b
VZ
167#endif
168
07158944
VZ
169#endif // wxUSE_STDPATHS
170
0b75a1e0 171#endif // _WX_STDPATHS_H_
1ee445c7 172