mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 19:30:21 +02:00
remove helper functions we don't use yet. can re-add later if we need.
This commit is contained in:
@@ -166,55 +166,3 @@ void CheckForUpdates() {
|
|||||||
[[SUUpdater sharedUpdater] checkForUpdates: NSApp];
|
[[SUUpdater sharedUpdater] checkForUpdates: NSApp];
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
QString GetBundlePath() {
|
|
||||||
CFURLRef app_url = CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
|
||||||
CFStringRef mac_path = CFURLCopyFileSystemPath(app_url, kCFURLPOSIXPathStyle);
|
|
||||||
const char* path = CFStringGetCStringPtr(mac_path, CFStringGetSystemEncoding());
|
|
||||||
QString bundle_path = QString::fromUtf8(path);
|
|
||||||
CFRelease(app_url);
|
|
||||||
CFRelease(mac_path);
|
|
||||||
return bundle_path;
|
|
||||||
}
|
|
||||||
|
|
||||||
QString GetResourcesPath() {
|
|
||||||
QString bundle_path = GetBundlePath();
|
|
||||||
return bundle_path + "/Contents/Resources";
|
|
||||||
}
|
|
||||||
|
|
||||||
QString GetApplicationSupportPath() {
|
|
||||||
NSAutoreleasePool* pool = [NSAutoreleasePool alloc];
|
|
||||||
[pool init];
|
|
||||||
NSArray* paths = NSSearchPathForDirectoriesInDomains(
|
|
||||||
NSApplicationSupportDirectory,
|
|
||||||
NSUserDomainMask,
|
|
||||||
YES);
|
|
||||||
QString ret;
|
|
||||||
if ([paths count] > 0) {
|
|
||||||
NSString* user_path = [paths objectAtIndex:0];
|
|
||||||
ret = QString::fromUtf8([user_path UTF8String]);
|
|
||||||
} else {
|
|
||||||
ret = "~/Library/Application Support";
|
|
||||||
}
|
|
||||||
[pool drain];
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
QString GetMusicDirectory() {
|
|
||||||
NSAutoreleasePool* pool = [NSAutoreleasePool alloc];
|
|
||||||
[pool init];
|
|
||||||
NSArray* paths = NSSearchPathForDirectoriesInDomains(
|
|
||||||
NSMusicDirectory,
|
|
||||||
NSUserDomainMask,
|
|
||||||
YES);
|
|
||||||
QString ret;
|
|
||||||
if ([paths count] > 0) {
|
|
||||||
NSString* user_path = [paths objectAtIndex:0];
|
|
||||||
ret = QString::fromUtf8([user_path UTF8String]);
|
|
||||||
} else {
|
|
||||||
ret = "~/Music";
|
|
||||||
}
|
|
||||||
[pool drain];
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user