]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/corefoundation/stdpaths.h
Added wxStandardPaths for wxMac and wxCocoa.
[wxWidgets.git] / include / wx / mac / corefoundation / stdpaths.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/corefoundation/stdpaths.h
3 // Purpose: wxStandardPaths for CoreFoundation systems
4 // Author: David Elliott
5 // Modified by:
6 // Created: 2004-10-27
7 // RCS-ID: $Id$
8 // Copyright: (c) 2004 David Elliott
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MAC_STDPATHS_H_
13 #define _WX_MAC_STDPATHS_H_
14
15 struct __CFBundle;
16
17 // ----------------------------------------------------------------------------
18 // wxStandardPaths
19 // ----------------------------------------------------------------------------
20
21 class WXDLLIMPEXP_BASE wxStandardPathsCF : public wxStandardPathsBase
22 {
23 public:
24 wxStandardPathsCF();
25 ~wxStandardPathsCF();
26
27 // return the global standard paths object
28 // Overrides wxStandardPathsBase version for GUI code.
29 static wxStandardPathsCF& Get();
30
31 // wxMac specific: allow user to specify a different bundle
32 wxStandardPathsCF(struct __CFBundle *bundle);
33 void SetBundle(struct __CFBundle *bundle);
34
35 // implement base class pure virtuals
36 virtual wxString GetConfigDir() const;
37 virtual wxString GetUserConfigDir() const;
38 virtual wxString GetDataDir() const;
39 virtual wxString GetLocalDataDir() const;
40 virtual wxString GetUserDataDir() const;
41 virtual wxString GetPluginsDir() const;
42 protected:
43 struct __CFBundle *m_bundle;
44 };
45
46 // wxMac has its own base so it always uses this version.
47 // Otherwise, we want to use this version only when compiling GUI code.
48 // The CoreFoundation version is always available by its full name to all code.
49 #if defined(__WXMAC__) || wxUSE_BASE == 0
50 #define wxStandardPaths wxStandardPathsCF
51 #else
52 #include "wx/unix/stdpaths.h"
53 #endif
54
55 #endif // _WX_MAC_STDPATHS_H_