]> git.saurik.com Git - wxWidgets.git/blame - include/wx/osx/core/stdpaths.h
Fix preprocessor definitions for wxBase build under OS X.
[wxWidgets.git] / include / wx / osx / core / stdpaths.h
CommitLineData
5c6eb3a8 1///////////////////////////////////////////////////////////////////////////////
233f5738 2// Name: wx/osx/core/stdpaths.h
5c6eb3a8
SC
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
15struct __CFBundle;
16struct __CFURL;
17
18typedef const __CFURL * wxCFURLRef;
19typedef __CFBundle * wxCFBundleRef;
20
0049c31e
VZ
21// we inherit the GUI CF-based wxStandardPaths implementation from the Unix one
22// used for console programs if possible (i.e. if we're under a Unix system at
23// all)
24#if defined(__UNIX__)
25 #include "wx/unix/stdpaths.h"
26 #define wxStandardPathsCFBase wxStandardPaths
27#else
28 #define wxStandardPathsCFBase wxStandardPathsBase
29#endif
30
5c6eb3a8
SC
31// ----------------------------------------------------------------------------
32// wxStandardPaths
33// ----------------------------------------------------------------------------
34
0049c31e 35class WXDLLIMPEXP_BASE wxStandardPathsCF : public wxStandardPathsCFBase
5c6eb3a8
SC
36{
37public:
38 wxStandardPathsCF();
39 virtual ~wxStandardPathsCF();
40
41 // wxMac specific: allow user to specify a different bundle
42 wxStandardPathsCF(wxCFBundleRef bundle);
43 void SetBundle(wxCFBundleRef bundle);
44
45 // implement base class pure virtuals
46 virtual wxString GetExecutablePath() const;
47 virtual wxString GetConfigDir() const;
48 virtual wxString GetUserConfigDir() const;
49 virtual wxString GetDataDir() const;
50 virtual wxString GetLocalDataDir() const;
51 virtual wxString GetUserDataDir() const;
52 virtual wxString GetPluginsDir() const;
53 virtual wxString GetResourcesDir() const;
54 virtual wxString
55 GetLocalizedResourcesDir(const wxString& lang,
56 ResourceCat category = ResourceCat_None) const;
57 virtual wxString GetDocumentsDir() const;
58
59protected:
60 // this function can be called with any of CFBundleCopyXXXURL function
61 // pointer as parameter
62 wxString GetFromFunc(wxCFURLRef (*func)(wxCFBundleRef)) const;
63
64 wxCFBundleRef m_bundle;
65};
66
5c6eb3a8 67#endif // _WX_MAC_STDPATHS_H_