X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6da1d056caddb65254f37129e6f652df5bb362e9..4b263e5ef358411a345dee9ffef3ba69c19be40e:/src/osx/core/stdpaths_cf.cpp diff --git a/src/osx/core/stdpaths_cf.cpp b/src/osx/core/stdpaths_cf.cpp index df8a8db610..86b34e646c 100644 --- a/src/osx/core/stdpaths_cf.cpp +++ b/src/osx/core/stdpaths_cf.cpp @@ -1,10 +1,9 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: mac/corefoundation/stdpaths.cpp +// Name: src/osx/core/stdpaths_cf.cpp // Purpose: wxStandardPaths implementation for CoreFoundation systems // Author: David Elliott // Modified by: // Created: 2004-10-27 -// RCS-ID: $Id$ // Copyright: (c) 2004 David Elliott // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -83,7 +82,7 @@ static wxString BundleRelativeURLToPath(CFURLRef relativeURL) wxCHECK_MSG(absoluteURL, wxEmptyString, wxT("Failed to resolve relative URL to absolute URL")); CFStringRef cfStrPath = CFURLCopyFileSystemPath(absoluteURL,kDefaultPathStyle); CFRelease(absoluteURL); - return wxCFStringRef(cfStrPath).AsString(wxLocale::GetSystemEncoding()); + return wxCFStringRef::AsStringWithNormalizationFormC(cfStrPath); } wxString wxStandardPathsCF::GetFromFunc(wxCFURLRef (*func)(wxCFBundleRef)) const @@ -118,7 +117,7 @@ wxString wxStandardPathsCF::GetDocumentsDir() const wxString wxStandardPathsCF::GetConfigDir() const { #if defined( __WXMAC__ ) && wxOSX_USE_CARBON - return wxMacFindFolder((short)kLocalDomain, kPreferencesFolderType, kCreateFolder); + return wxMacFindFolderNoSeparator((short)kLocalDomain, kPreferencesFolderType, kCreateFolder); #else return wxT("/Library/Preferences"); #endif @@ -127,7 +126,7 @@ wxString wxStandardPathsCF::GetConfigDir() const wxString wxStandardPathsCF::GetUserConfigDir() const { #if defined( __WXMAC__ ) && wxOSX_USE_CARBON - return wxMacFindFolder((short)kUserDomain, kPreferencesFolderType, kCreateFolder); + return wxMacFindFolderNoSeparator((short)kUserDomain, kPreferencesFolderType, kCreateFolder); #else return wxFileName::GetHomeDir() + wxT("/Library/Preferences"); #endif @@ -141,36 +140,7 @@ wxString wxStandardPathsCF::GetDataDir() const 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 @@ -179,7 +149,7 @@ wxString wxStandardPathsCF::GetExecutablePath() const wxString wxStandardPathsCF::GetLocalDataDir() const { #if defined( __WXMAC__ ) && wxOSX_USE_CARBON - return AppendAppInfo(wxMacFindFolder((short)kLocalDomain, kApplicationSupportFolderType, kCreateFolder)); + return AppendAppInfo(wxMacFindFolderNoSeparator((short)kLocalDomain, kApplicationSupportFolderType, kCreateFolder)); #else return AppendAppInfo(wxT("/Library/Application Support")); #endif @@ -188,7 +158,7 @@ wxString wxStandardPathsCF::GetLocalDataDir() const wxString wxStandardPathsCF::GetUserDataDir() const { #if defined( __WXMAC__ ) && wxOSX_USE_CARBON - return AppendAppInfo(wxMacFindFolder((short)kUserDomain, kApplicationSupportFolderType, kCreateFolder)); + return AppendAppInfo(wxMacFindFolderNoSeparator((short)kUserDomain, kApplicationSupportFolderType, kCreateFolder)); #else return AppendAppInfo(wxFileName::GetHomeDir() + wxT("/Library/Application Support")); #endif