1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/corefoundation/stdpaths.h
3 // Purpose: wxStandardPaths for CoreFoundation systems
4 // Author: David Elliott
8 // Copyright: (c) 2004 David Elliott
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_STDPATHS_H_
13 #define _WX_MAC_STDPATHS_H_
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 class WXDLLIMPEXP_BASE wxStandardPathsCF
: public wxStandardPathsBase
27 // wxMac specific: allow user to specify a different bundle
28 wxStandardPathsCF(struct __CFBundle
*bundle
);
29 void SetBundle(struct __CFBundle
*bundle
);
31 // implement base class pure virtuals
32 virtual wxString
GetConfigDir() const;
33 virtual wxString
GetUserConfigDir() const;
34 virtual wxString
GetDataDir() const;
35 virtual wxString
GetLocalDataDir() const;
36 virtual wxString
GetUserDataDir() const;
37 virtual wxString
GetPluginsDir() const;
39 struct __CFBundle
*m_bundle
;
42 // If using UNIX (i.e. darwin) then use UNIX standard paths
44 #include "wx/unix/stdpaths.h"
46 // If compiling wxMac for CarbonLib then we are wxStandardPaths
47 class WXDLLIMPEXP_BASE wxStandardPaths
: public wxStandardPathsCF
52 #endif // _WX_MAC_STDPATHS_H_