2004-10-29 17:38:33 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/mac/corefoundation/stdpaths.h
|
|
|
|
// Purpose: wxStandardPaths for CoreFoundation systems
|
|
|
|
// Author: David Elliott
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2004-10-27
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2004 David Elliott
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MAC_STDPATHS_H_
|
|
|
|
#define _WX_MAC_STDPATHS_H_
|
|
|
|
|
|
|
|
struct __CFBundle;
|
2006-03-25 12:00:40 -05:00
|
|
|
struct __CFURL;
|
|
|
|
|
|
|
|
typedef const __CFURL * wxCFURLRef;
|
|
|
|
typedef __CFBundle * wxCFBundleRef;
|
2004-10-29 17:38:33 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStandardPaths
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxStandardPathsCF : public wxStandardPathsBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStandardPathsCF();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxStandardPathsCF();
|
2004-10-29 17:38:33 -04:00
|
|
|
|
|
|
|
// wxMac specific: allow user to specify a different bundle
|
2006-03-25 12:00:40 -05:00
|
|
|
wxStandardPathsCF(wxCFBundleRef bundle);
|
|
|
|
void SetBundle(wxCFBundleRef bundle);
|
2004-10-29 17:38:33 -04:00
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual wxString GetConfigDir() const;
|
|
|
|
virtual wxString GetUserConfigDir() const;
|
|
|
|
virtual wxString GetDataDir() const;
|
|
|
|
virtual wxString GetLocalDataDir() const;
|
|
|
|
virtual wxString GetUserDataDir() const;
|
|
|
|
virtual wxString GetPluginsDir() const;
|
2006-03-25 12:00:40 -05:00
|
|
|
virtual wxString GetResourcesDir() const;
|
|
|
|
virtual wxString GetLocalizedResourcesDir(const wxChar *lang,
|
|
|
|
ResourceCat category) const;
|
2006-04-16 21:12:04 -04:00
|
|
|
virtual wxString GetDocumentsDir() const;
|
2006-03-25 12:00:40 -05:00
|
|
|
|
2004-10-29 17:38:33 -04:00
|
|
|
protected:
|
2006-03-25 12:00:40 -05:00
|
|
|
// this function can be called with any of CFBundleCopyXXXURL function
|
|
|
|
// pointer as parameter
|
|
|
|
wxString GetFromFunc(wxCFURLRef (*func)(wxCFBundleRef)) const;
|
|
|
|
|
|
|
|
wxCFBundleRef m_bundle;
|
2004-10-29 17:38:33 -04:00
|
|
|
};
|
|
|
|
|
2004-11-12 16:21:00 -05:00
|
|
|
// If using UNIX (i.e. darwin) then use UNIX standard paths
|
|
|
|
#if defined(__UNIX__)
|
2004-10-29 17:38:33 -04:00
|
|
|
#include "wx/unix/stdpaths.h"
|
2004-11-12 16:21:00 -05:00
|
|
|
#else
|
|
|
|
// If compiling wxMac for CarbonLib then we are wxStandardPaths
|
|
|
|
class WXDLLIMPEXP_BASE wxStandardPaths: public wxStandardPathsCF
|
|
|
|
{
|
|
|
|
};
|
2004-10-29 17:38:33 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // _WX_MAC_STDPATHS_H_
|