///////////////////////////////////////////////////////////////////////////////
-// Name: mac/corefoundation/stdpaths.cpp
+// Name: src/osx/core/stdpaths_cf.cpp
// Purpose: wxStandardPaths implementation for CoreFoundation systems
// Author: David Elliott
// Modified by:
: m_bundle(CFBundleGetMainBundle())
{
CFRetain(m_bundle);
- UseAppInfo(AppInfo_AppName | AppInfo_VendorName);
}
wxStandardPathsCF::wxStandardPathsCF(wxCFBundleRef bundle)
: m_bundle(bundle)
{
CFRetain(m_bundle);
- UseAppInfo(AppInfo_AppName | AppInfo_VendorName);
}
wxStandardPathsCF::~wxStandardPathsCF()
wxString wxStandardPathsCF::GetDocumentsDir() const
{
-#if defined( __WXMAC__ ) && !defined(__WXOSX_IPHONE__)
+#if defined( __WXMAC__ ) && wxOSX_USE_CARBON
return wxMacFindFolderNoSeparator
(
kUserDomain,
wxString wxStandardPathsCF::GetConfigDir() const
{
-#if defined( __WXMAC__ ) && !defined(__WXOSX_IPHONE__)
- return wxMacFindFolder((short)kLocalDomain, kPreferencesFolderType, kCreateFolder);
+#if defined( __WXMAC__ ) && wxOSX_USE_CARBON
+ return wxMacFindFolderNoSeparator((short)kLocalDomain, kPreferencesFolderType, kCreateFolder);
#else
return wxT("/Library/Preferences");
#endif
wxString wxStandardPathsCF::GetUserConfigDir() const
{
-#if defined( __WXMAC__ ) && !defined(__WXOSX_IPHONE__)
- return wxMacFindFolder((short)kUserDomain, kPreferencesFolderType, kCreateFolder);
+#if defined( __WXMAC__ ) && wxOSX_USE_CARBON
+ return wxMacFindFolderNoSeparator((short)kUserDomain, kPreferencesFolderType, kCreateFolder);
#else
return wxFileName::GetHomeDir() + wxT("/Library/Preferences");
#endif
wxString wxStandardPathsCF::GetExecutablePath() const
{
#ifdef __WXMAC__
-#if 1
- return GetFromFunc(CFBundleCopyBundleURL);
-#else
- // TODO remove if cf implementation ok
- ProcessInfoRec processinfo;
- ProcessSerialNumber procno ;
-#ifdef __LP64__
- FSRef fsRef;
-#else
- FSSpec fsSpec;
-#endif
-
- procno.highLongOfPSN = 0 ;
- procno.lowLongOfPSN = kCurrentProcess ;
- processinfo.processInfoLength = sizeof(ProcessInfoRec);
- processinfo.processName = NULL;
-#ifdef __LP64__
- processinfo.processAppRef = &fsRef;
-#else
- processinfo.processAppSpec = &fsSpec;
-#endif
-
- GetProcessInformation( &procno , &processinfo ) ;
-#ifdef __LP64__
- return wxMacFSRefToPath(&fsRef);
-#else
- return wxMacFSSpec2MacFilename(&fsSpec);
-#endif
-#endif
-
+ return GetFromFunc(CFBundleCopyExecutableURL);
#else
return wxStandardPathsBase::GetExecutablePath();
#endif
wxString wxStandardPathsCF::GetLocalDataDir() const
{
-#if defined( __WXMAC__ ) && !defined(__WXOSX_IPHONE__)
- return AppendAppInfo(wxMacFindFolder((short)kLocalDomain, kApplicationSupportFolderType, kCreateFolder));
+#if defined( __WXMAC__ ) && wxOSX_USE_CARBON
+ return AppendAppInfo(wxMacFindFolderNoSeparator((short)kLocalDomain, kApplicationSupportFolderType, kCreateFolder));
#else
return AppendAppInfo(wxT("/Library/Application Support"));
#endif
wxString wxStandardPathsCF::GetUserDataDir() const
{
-#if defined( __WXMAC__ ) && !defined(__WXOSX_IPHONE__)
- return AppendAppInfo(wxMacFindFolder((short)kUserDomain, kApplicationSupportFolderType, kCreateFolder));
+#if defined( __WXMAC__ ) && wxOSX_USE_CARBON
+ return AppendAppInfo(wxMacFindFolderNoSeparator((short)kUserDomain, kApplicationSupportFolderType, kCreateFolder));
#else
- return AppendAppInfo(wxFileName::GetHomeDir() + _T("/Library/Application Support"));
+ return AppendAppInfo(wxFileName::GetHomeDir() + wxT("/Library/Application Support"));
#endif
}
ResourceCat category) const
{
return wxStandardPathsBase::
- GetLocalizedResourcesDir(lang, category) + _T(".lproj");
+ GetLocalizedResourcesDir(lang, category) + wxT(".lproj");
}
#endif // wxUSE_STDPATHS