2016-11-28 15:45:07 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-11-28 15:45:07 +00:00
|
|
|
*/
|
2017-02-28 10:51:00 +00:00
|
|
|
#include "platform/mac/file_utilities_mac.h"
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2019-09-26 10:20:34 +00:00
|
|
|
#include "base/platform/mac/base_utilities_mac.h"
|
2019-06-19 15:09:03 +00:00
|
|
|
#include "lang/lang_keys.h"
|
2020-11-04 15:50:17 +00:00
|
|
|
#include "base/qt_adapters.h"
|
2017-02-28 14:05:30 +00:00
|
|
|
#include "styles/style_window.h"
|
2016-11-28 15:45:07 +00:00
|
|
|
|
2019-09-08 20:04:21 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
2020-11-04 15:50:17 +00:00
|
|
|
#include <QtGui/QScreen>
|
2019-09-08 20:04:21 +00:00
|
|
|
|
2016-11-28 15:45:07 +00:00
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
#include <CoreFoundation/CFURL.h>
|
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
using namespace Platform;
|
|
|
|
|
|
|
|
QString strNeedToReload() {
|
2017-11-15 15:02:50 +00:00
|
|
|
const uint32 letters[] = { 0xAD92C02B, 0xA2217C97, 0x5E55F4F5, 0x2207DAAC, 0xD18BA536, 0x03E41869, 0xB96D2BFD, 0x810C7284, 0xE412099E, 0x5AAD0837, 0xE6637AEE, 0x8E5E2FF5, 0xE3BDA123, 0x94A5CE38, 0x4A42F7D1, 0xCE4677DC, 0x40A81701, 0x9C5B38CD, 0x61801E1A, 0x6FF16179 };
|
|
|
|
return MakeFromLetters(letters);
|
2017-02-28 14:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString strNeedToRefresh1() {
|
2017-11-15 15:02:50 +00:00
|
|
|
const uint32 letters[] = { 0xEDDFCD66, 0x434DF1FB, 0x820B76AB, 0x48CE7965, 0x3609C0BA, 0xFC9A990C, 0x3EDD1C51, 0xE2BDA036, 0x7140CEE9, 0x65DB414D, 0x88592EC3, 0x2CB2613A };
|
|
|
|
return MakeFromLetters(letters);
|
2017-02-28 14:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString strNeedToRefresh2() {
|
2017-11-15 15:02:50 +00:00
|
|
|
const uint32 letters[] = { 0x8AE4915D, 0x7159D7EF, 0x79C74167, 0x29B7611C, 0x0E6B9ADD, 0x0D93610F, 0xEBEAFE7A, 0x5BD17540, 0x121EF3B7, 0x61B02E26, 0x2174AAEE, 0x61AD3325 };
|
|
|
|
return MakeFromLetters(letters);
|
2017-02-28 14:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
@interface OpenWithApp : NSObject {
|
|
|
|
NSString *fullname;
|
|
|
|
NSURL *app;
|
|
|
|
NSImage *icon;
|
2017-04-12 11:58:37 +00:00
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
}
|
2017-04-12 11:58:37 +00:00
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
@property (nonatomic, retain) NSString *fullname;
|
|
|
|
@property (nonatomic, retain) NSURL *app;
|
|
|
|
@property (nonatomic, retain) NSImage *icon;
|
2017-04-12 11:58:37 +00:00
|
|
|
|
|
|
|
@end // @interface OpenWithApp
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@implementation OpenWithApp
|
2017-04-12 11:58:37 +00:00
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
@synthesize fullname, app, icon;
|
|
|
|
|
|
|
|
- (void) dealloc {
|
|
|
|
[fullname release];
|
|
|
|
[app release];
|
|
|
|
[icon release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @implementation OpenWithApp
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@interface OpenFileWithInterface : NSObject {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init:(NSString *)file;
|
|
|
|
- (BOOL) popupAtX:(int)x andY:(int)y;
|
|
|
|
- (void) itemChosen:(id)sender;
|
|
|
|
- (void) dealloc;
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @interface OpenFileWithInterface
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@implementation OpenFileWithInterface {
|
|
|
|
NSString *toOpen;
|
|
|
|
|
|
|
|
NSURL *defUrl;
|
|
|
|
NSString *defBundle, *defName, *defVersion;
|
|
|
|
NSImage *defIcon;
|
|
|
|
|
|
|
|
NSMutableArray *apps;
|
|
|
|
|
|
|
|
NSMenu *menu;
|
2017-04-12 11:58:37 +00:00
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) fillAppByUrl:(NSURL*)url bundle:(NSString**)bundle name:(NSString**)name version:(NSString**)version icon:(NSImage**)icon {
|
|
|
|
NSBundle *b = [NSBundle bundleWithURL:url];
|
|
|
|
if (b) {
|
|
|
|
NSString *path = [url path];
|
|
|
|
*name = [[NSFileManager defaultManager] displayNameAtPath: path];
|
|
|
|
if (!*name) *name = (NSString*)[b objectForInfoDictionaryKey:@"CFBundleDisplayName"];
|
|
|
|
if (!*name) *name = (NSString*)[b objectForInfoDictionaryKey:@"CFBundleName"];
|
|
|
|
if (*name) {
|
|
|
|
*bundle = [b bundleIdentifier];
|
|
|
|
if (bundle) {
|
|
|
|
*version = (NSString*)[b objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
|
|
|
|
*icon = [[NSWorkspace sharedWorkspace] iconForFile: path];
|
|
|
|
if (*icon && [*icon isValid]) [*icon setSize: CGSizeMake(16., 16.)];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*bundle = *name = *version = nil;
|
|
|
|
*icon = nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init:(NSString*)file {
|
|
|
|
toOpen = [file retain];
|
|
|
|
if (self = [super init]) {
|
|
|
|
NSURL *url = [NSURL fileURLWithPath:file];
|
|
|
|
defUrl = [[NSWorkspace sharedWorkspace] URLForApplicationToOpenURL:url];
|
|
|
|
if (defUrl) {
|
|
|
|
[self fillAppByUrl:defUrl bundle:&defBundle name:&defName version:&defVersion icon:&defIcon];
|
|
|
|
if (!defBundle || !defName) {
|
|
|
|
defUrl = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NSArray *appsList = (NSArray*)LSCopyApplicationURLsForURL(CFURLRef(url), kLSRolesAll);
|
|
|
|
NSMutableDictionary *data = [NSMutableDictionary dictionaryWithCapacity:16];
|
|
|
|
int fullcount = 0;
|
|
|
|
for (id app in appsList) {
|
|
|
|
if (fullcount > 15) break;
|
|
|
|
|
|
|
|
NSString *bundle = nil, *name = nil, *version = nil;
|
|
|
|
NSImage *icon = nil;
|
|
|
|
[self fillAppByUrl:(NSURL*)app bundle:&bundle name:&name version:&version icon:&icon];
|
|
|
|
if (bundle && name) {
|
|
|
|
if ([bundle isEqualToString:defBundle] && [version isEqualToString:defVersion]) continue;
|
|
|
|
NSString *key = [[NSArray arrayWithObjects:bundle, name, nil] componentsJoinedByString:@"|"];
|
|
|
|
if (!version) version = @"";
|
|
|
|
|
|
|
|
NSMutableDictionary *versions = (NSMutableDictionary*)[data objectForKey:key];
|
|
|
|
if (!versions) {
|
|
|
|
versions = [NSMutableDictionary dictionaryWithCapacity:2];
|
|
|
|
[data setValue:versions forKey:key];
|
|
|
|
}
|
|
|
|
if (![versions objectForKey:version]) {
|
|
|
|
[versions setValue:[NSArray arrayWithObjects:name, icon, app, nil] forKey:version];
|
|
|
|
++fullcount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fullcount || defUrl) {
|
|
|
|
apps = [NSMutableArray arrayWithCapacity:fullcount];
|
|
|
|
for (id key in data) {
|
|
|
|
NSMutableDictionary *val = (NSMutableDictionary*)[data objectForKey:key];
|
|
|
|
for (id ver in val) {
|
|
|
|
NSArray *app = (NSArray*)[val objectForKey:ver];
|
|
|
|
OpenWithApp *a = [[OpenWithApp alloc] init];
|
|
|
|
NSString *fullname = (NSString*)[app objectAtIndex:0], *version = (NSString*)ver;
|
|
|
|
BOOL showVersion = ([val count] > 1);
|
|
|
|
if (!showVersion) {
|
|
|
|
NSError *error = NULL;
|
|
|
|
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"^\\d+\\.\\d+\\.\\d+(\\.\\d+)?$" options:NSRegularExpressionCaseInsensitive error:&error];
|
|
|
|
showVersion = ![regex numberOfMatchesInString:version options:NSMatchingWithoutAnchoringBounds range:{0,[version length]}];
|
|
|
|
}
|
|
|
|
if (showVersion) fullname = [[NSArray arrayWithObjects:fullname, @" (", version, @")", nil] componentsJoinedByString:@""];
|
|
|
|
[a setFullname:fullname];
|
|
|
|
[a setIcon:(NSImage*)[app objectAtIndex:1]];
|
|
|
|
[a setApp:(NSURL*)[app objectAtIndex:2]];
|
|
|
|
[apps addObject:a];
|
|
|
|
[a release];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[apps sortUsingDescriptors:[NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"fullname" ascending:YES]]];
|
|
|
|
[appsList release];
|
|
|
|
menu = nil;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) popupAtX:(int)x andY:(int)y {
|
|
|
|
if (![apps count] && !defName) return NO;
|
|
|
|
menu = [[NSMenu alloc] initWithTitle:@"Open With"];
|
|
|
|
|
|
|
|
int index = 0;
|
|
|
|
if (defName) {
|
|
|
|
NSMenuItem *item = [menu insertItemWithTitle:[[NSArray arrayWithObjects:defName, @" (default)", nil] componentsJoinedByString:@""] action:@selector(itemChosen:) keyEquivalent:@"" atIndex:index++];
|
|
|
|
if (defIcon) [item setImage:defIcon];
|
|
|
|
[item setTarget:self];
|
|
|
|
[menu insertItem:[NSMenuItem separatorItem] atIndex:index++];
|
|
|
|
}
|
|
|
|
if ([apps count]) {
|
|
|
|
for (id a in apps) {
|
|
|
|
OpenWithApp *app = (OpenWithApp*)a;
|
|
|
|
NSMenuItem *item = [menu insertItemWithTitle:[a fullname] action:@selector(itemChosen:) keyEquivalent:@"" atIndex:index++];
|
|
|
|
if ([app icon]) [item setImage:[app icon]];
|
|
|
|
[item setTarget:self];
|
|
|
|
}
|
|
|
|
[menu insertItem:[NSMenuItem separatorItem] atIndex:index++];
|
|
|
|
}
|
2019-06-19 15:09:03 +00:00
|
|
|
NSMenuItem *item = [menu insertItemWithTitle:Q2NSString(tr::lng_mac_choose_program_menu(tr::now)) action:@selector(itemChosen:) keyEquivalent:@"" atIndex:index++];
|
2017-02-28 14:05:30 +00:00
|
|
|
[item setTarget:self];
|
|
|
|
|
|
|
|
[menu popUpMenuPositioningItem:nil atLocation:CGPointMake(x, y) inView:nil];
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) itemChosen:(id)sender {
|
|
|
|
NSArray *items = [menu itemArray];
|
|
|
|
NSURL *url = nil;
|
|
|
|
for (int i = 0, l = [items count]; i < l; ++i) {
|
|
|
|
if ([items objectAtIndex:i] == sender) {
|
|
|
|
if (defName) i -= 2;
|
|
|
|
if (i < 0) {
|
|
|
|
url = defUrl;
|
|
|
|
} else if (i < int([apps count])) {
|
|
|
|
url = [(OpenWithApp*)[apps objectAtIndex:i] app];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (url) {
|
|
|
|
[[NSWorkspace sharedWorkspace] openFile:toOpen withApplication:[url path]];
|
|
|
|
} else if (!Platform::File::UnsafeShowOpenWith(NS2QString(toOpen))) {
|
|
|
|
Platform::File::UnsafeLaunch(NS2QString(toOpen));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) dealloc {
|
|
|
|
[toOpen release];
|
|
|
|
if (menu) [menu release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @implementation OpenFileWithInterface
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@interface NSURL(CompareUrls)
|
|
|
|
|
|
|
|
- (BOOL) isEquivalent:(NSURL *)aURL;
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @interface NSURL(CompareUrls)
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@implementation NSURL(CompareUrls)
|
|
|
|
|
|
|
|
- (BOOL) isEquivalent:(NSURL *)aURL {
|
|
|
|
if ([self isEqual:aURL]) return YES;
|
|
|
|
if ([[self scheme] caseInsensitiveCompare:[aURL scheme]] != NSOrderedSame) return NO;
|
|
|
|
if ([[self host] caseInsensitiveCompare:[aURL host]] != NSOrderedSame) return NO;
|
|
|
|
if ([[self path] compare:[aURL path]] != NSOrderedSame) return NO;
|
|
|
|
if ([[self port] compare:[aURL port]] != NSOrderedSame) return NO;
|
|
|
|
if ([[self query] compare:[aURL query]] != NSOrderedSame) return NO;
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @implementation NSURL(CompareUrls)
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@interface ChooseApplicationDelegate : NSObject<NSOpenSavePanelDelegate> {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init:(NSArray *)recommendedApps withPanel:(NSOpenPanel *)creator withSelector:(NSPopUpButton *)menu withGood:(NSTextField *)goodLabel withBad:(NSTextField *)badLabel withIcon:(NSImageView *)badIcon withAccessory:(NSView *)acc;
|
|
|
|
- (BOOL) panel:(id)sender shouldEnableURL:(NSURL *)url;
|
|
|
|
- (void) panelSelectionDidChange:(id)sender;
|
|
|
|
- (void) menuDidClose;
|
|
|
|
- (void) dealloc;
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @interface ChooseApplicationDelegate
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
@implementation ChooseApplicationDelegate {
|
|
|
|
BOOL onlyRecommended;
|
|
|
|
NSArray *apps;
|
|
|
|
NSOpenPanel *panel;
|
|
|
|
NSPopUpButton *selector;
|
|
|
|
NSTextField *good, *bad;
|
|
|
|
NSImageView *icon;
|
|
|
|
NSString *recom;
|
|
|
|
NSView *accessory;
|
2017-04-12 11:58:37 +00:00
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init:(NSArray *)recommendedApps withPanel:(NSOpenPanel *)creator withSelector:(NSPopUpButton *)menu withGood:(NSTextField *)goodLabel withBad:(NSTextField *)badLabel withIcon:(NSImageView *)badIcon withAccessory:(NSView *)acc {
|
|
|
|
if (self = [super init]) {
|
|
|
|
onlyRecommended = YES;
|
2019-06-19 15:09:03 +00:00
|
|
|
recom = [Q2NSString(tr::lng_mac_recommended_apps(tr::now)) copy];
|
2017-02-28 14:05:30 +00:00
|
|
|
apps = recommendedApps;
|
|
|
|
panel = creator;
|
|
|
|
selector = menu;
|
|
|
|
good = goodLabel;
|
|
|
|
bad = badLabel;
|
|
|
|
icon = badIcon;
|
|
|
|
accessory = acc;
|
|
|
|
[selector setAction:@selector(menuDidClose)];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) isRecommended:(NSURL *)url {
|
|
|
|
if (apps) {
|
|
|
|
for (id app in apps) {
|
|
|
|
if ([(NSURL*)app isEquivalent:url]) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) panel:(id)sender shouldEnableURL:(NSURL *)url {
|
|
|
|
NSNumber *isDirectory;
|
|
|
|
if ([url getResourceValue:&isDirectory forKey:NSURLIsDirectoryKey error:nil] && isDirectory != nil && [isDirectory boolValue]) {
|
|
|
|
if (onlyRecommended) {
|
|
|
|
CFStringRef ext = CFURLCopyPathExtension((CFURLRef)url);
|
|
|
|
NSNumber *isPackage;
|
|
|
|
if ([url getResourceValue:&isPackage forKey:NSURLIsPackageKey error:nil] && isPackage != nil && [isPackage boolValue]) {
|
|
|
|
return [self isRecommended:url];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) panelSelectionDidChange:(id)sender {
|
|
|
|
NSArray *urls = [panel URLs];
|
|
|
|
if ([urls count]) {
|
|
|
|
if ([self isRecommended:[urls firstObject]]) {
|
|
|
|
[bad removeFromSuperview];
|
|
|
|
[icon removeFromSuperview];
|
|
|
|
[accessory addSubview:good];
|
|
|
|
} else {
|
|
|
|
[good removeFromSuperview];
|
|
|
|
[accessory addSubview:bad];
|
|
|
|
[accessory addSubview:icon];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
[good removeFromSuperview];
|
|
|
|
[bad removeFromSuperview];
|
|
|
|
[icon removeFromSuperview];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) menuDidClose {
|
|
|
|
onlyRecommended = [[[selector selectedItem] title] isEqualToString:recom];
|
|
|
|
[self refreshPanelTable];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) refreshDataInViews: (NSArray*)subviews {
|
|
|
|
for (id view in subviews) {
|
|
|
|
NSString *cls = [view className];
|
|
|
|
if ([cls isEqualToString:Q2NSString(strNeedToReload())]) {
|
|
|
|
[view reloadData];
|
|
|
|
} else if ([cls isEqualToString:Q2NSString(strNeedToRefresh1())] || [cls isEqualToString:Q2NSString(strNeedToRefresh2())]) {
|
|
|
|
[view reloadData];
|
|
|
|
return YES;
|
|
|
|
} else {
|
|
|
|
NSArray *next = [view subviews];
|
|
|
|
if ([next count] && [self refreshDataInViews:next]) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (void) refreshPanelTable {
|
|
|
|
@autoreleasepool {
|
|
|
|
|
|
|
|
[self refreshDataInViews:[[panel contentView] subviews]];
|
|
|
|
[panel validateVisibleColumns];
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) dealloc {
|
|
|
|
if (apps) {
|
|
|
|
[apps release];
|
|
|
|
[recom release];
|
|
|
|
}
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2017-04-12 11:58:37 +00:00
|
|
|
@end // @implementation ChooseApplicationDelegate
|
2017-02-28 14:05:30 +00:00
|
|
|
|
2016-11-28 15:45:07 +00:00
|
|
|
namespace Platform {
|
2017-02-28 10:51:00 +00:00
|
|
|
namespace File {
|
2016-11-28 15:45:07 +00:00
|
|
|
|
|
|
|
QString UrlToLocal(const QUrl &url) {
|
|
|
|
auto result = url.toLocalFile();
|
|
|
|
if (result.startsWith(qsl("/.file/id="))) {
|
|
|
|
NSString *nsurl = [[[NSURL URLWithString: [NSString stringWithUTF8String: (qsl("file://") + result).toUtf8().constData()]] filePathURL] path];
|
|
|
|
if (!nsurl) return QString();
|
|
|
|
|
|
|
|
return NS2QString(nsurl);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-02-28 14:05:30 +00:00
|
|
|
bool UnsafeShowOpenWithDropdown(const QString &filepath, QPoint menuPosition) {
|
|
|
|
@autoreleasepool {
|
|
|
|
|
|
|
|
NSString *file = Q2NSString(filepath);
|
|
|
|
@try {
|
|
|
|
OpenFileWithInterface *menu = [[[OpenFileWithInterface alloc] init:file] autorelease];
|
2020-11-04 15:50:17 +00:00
|
|
|
const auto screen = base::QScreenNearestTo(menuPosition);
|
|
|
|
if (!screen) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-17 12:06:36 +00:00
|
|
|
const auto r = screen->geometry();
|
2017-02-28 14:05:30 +00:00
|
|
|
auto x = menuPosition.x();
|
|
|
|
auto y = r.y() + r.height() - menuPosition.y();
|
|
|
|
return !![menu popupAtX:x andY:y];
|
|
|
|
}
|
|
|
|
@catch (NSException *exception) {
|
|
|
|
}
|
|
|
|
@finally {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UnsafeShowOpenWith(const QString &filepath) {
|
|
|
|
@autoreleasepool {
|
|
|
|
|
|
|
|
NSString *file = Q2NSString(filepath);
|
|
|
|
@try {
|
|
|
|
NSURL *url = [NSURL fileURLWithPath:file];
|
|
|
|
NSString *ext = [url pathExtension];
|
|
|
|
NSArray *names = [url pathComponents];
|
|
|
|
NSString *name = [names count] ? [names lastObject] : @"";
|
|
|
|
NSArray *apps = (NSArray*)LSCopyApplicationURLsForURL(CFURLRef(url), kLSRolesAll);
|
|
|
|
|
|
|
|
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
|
|
|
|
|
|
|
|
NSRect fullRect = { { 0., 0. }, { st::macAccessoryWidth, st::macAccessoryHeight } };
|
|
|
|
NSView *accessory = [[NSView alloc] initWithFrame:fullRect];
|
|
|
|
|
|
|
|
[accessory setAutoresizesSubviews:YES];
|
|
|
|
|
|
|
|
NSPopUpButton *selector = [[NSPopUpButton alloc] init];
|
|
|
|
[accessory addSubview:selector];
|
2019-06-19 15:09:03 +00:00
|
|
|
[selector addItemWithTitle:Q2NSString(tr::lng_mac_recommended_apps(tr::now))];
|
|
|
|
[selector addItemWithTitle:Q2NSString(tr::lng_mac_all_apps(tr::now))];
|
2017-02-28 14:05:30 +00:00
|
|
|
[selector sizeToFit];
|
|
|
|
|
|
|
|
NSTextField *enableLabel = [[NSTextField alloc] init];
|
|
|
|
[accessory addSubview:enableLabel];
|
2019-06-19 15:09:03 +00:00
|
|
|
[enableLabel setStringValue:Q2NSString(tr::lng_mac_enable_filter(tr::now))];
|
2017-02-28 14:05:30 +00:00
|
|
|
[enableLabel setFont:[selector font]];
|
|
|
|
[enableLabel setBezeled:NO];
|
|
|
|
[enableLabel setDrawsBackground:NO];
|
|
|
|
[enableLabel setEditable:NO];
|
|
|
|
[enableLabel setSelectable:NO];
|
|
|
|
[enableLabel sizeToFit];
|
|
|
|
|
|
|
|
NSRect selectorFrame = [selector frame], enableFrame = [enableLabel frame];
|
|
|
|
enableFrame.size.width += st::macEnableFilterAdd;
|
|
|
|
enableFrame.origin.x = (fullRect.size.width - selectorFrame.size.width - enableFrame.size.width) / 2.;
|
|
|
|
selectorFrame.origin.x = (fullRect.size.width - selectorFrame.size.width + enableFrame.size.width) / 2.;
|
|
|
|
enableFrame.origin.y = fullRect.size.height - selectorFrame.size.height - st::macEnableFilterTop + (selectorFrame.size.height - enableFrame.size.height) / 2.;
|
|
|
|
selectorFrame.origin.y = fullRect.size.height - selectorFrame.size.height - st::macSelectorTop;
|
|
|
|
[enableLabel setFrame:enableFrame];
|
|
|
|
[enableLabel setAutoresizingMask:NSViewMinXMargin|NSViewMaxXMargin];
|
|
|
|
[selector setFrame:selectorFrame];
|
|
|
|
[selector setAutoresizingMask:NSViewMinXMargin|NSViewMaxXMargin];
|
|
|
|
|
|
|
|
NSButton *button = [[NSButton alloc] init];
|
|
|
|
[accessory addSubview:button];
|
|
|
|
[button setButtonType:NSSwitchButton];
|
|
|
|
[button setFont:[selector font]];
|
2019-06-19 15:09:03 +00:00
|
|
|
[button setTitle:Q2NSString(tr::lng_mac_always_open_with(tr::now))];
|
2017-02-28 14:05:30 +00:00
|
|
|
[button sizeToFit];
|
|
|
|
NSRect alwaysRect = [button frame];
|
|
|
|
alwaysRect.origin.x = (fullRect.size.width - alwaysRect.size.width) / 2;
|
|
|
|
alwaysRect.origin.y = selectorFrame.origin.y - alwaysRect.size.height - st::macAlwaysThisAppTop;
|
|
|
|
[button setFrame:alwaysRect];
|
|
|
|
[button setAutoresizingMask:NSViewMinXMargin|NSViewMaxXMargin];
|
|
|
|
#ifdef OS_MAC_STORE
|
|
|
|
[button setHidden:YES];
|
|
|
|
#endif // OS_MAC_STORE
|
|
|
|
NSTextField *goodLabel = [[NSTextField alloc] init];
|
2019-06-19 16:39:25 +00:00
|
|
|
[goodLabel setStringValue:Q2NSString(tr::lng_mac_this_app_can_open(tr::now, lt_file, NS2QString(name)))];
|
2017-02-28 14:05:30 +00:00
|
|
|
[goodLabel setFont:[NSFont systemFontOfSize:[NSFont smallSystemFontSize]]];
|
|
|
|
[goodLabel setBezeled:NO];
|
|
|
|
[goodLabel setDrawsBackground:NO];
|
|
|
|
[goodLabel setEditable:NO];
|
|
|
|
[goodLabel setSelectable:NO];
|
|
|
|
[goodLabel sizeToFit];
|
|
|
|
NSRect goodFrame = [goodLabel frame];
|
|
|
|
goodFrame.origin.x = (fullRect.size.width - goodFrame.size.width) / 2.;
|
|
|
|
goodFrame.origin.y = alwaysRect.origin.y - goodFrame.size.height - st::macAppHintTop;
|
|
|
|
[goodLabel setFrame:goodFrame];
|
|
|
|
|
|
|
|
NSTextField *badLabel = [[NSTextField alloc] init];
|
2019-06-19 16:39:25 +00:00
|
|
|
[badLabel setStringValue:Q2NSString(tr::lng_mac_not_known_app(tr::now, lt_file, NS2QString(name)))];
|
2017-02-28 14:05:30 +00:00
|
|
|
[badLabel setFont:[goodLabel font]];
|
|
|
|
[badLabel setBezeled:NO];
|
|
|
|
[badLabel setDrawsBackground:NO];
|
|
|
|
[badLabel setEditable:NO];
|
|
|
|
[badLabel setSelectable:NO];
|
|
|
|
[badLabel sizeToFit];
|
|
|
|
NSImageView *badIcon = [[NSImageView alloc] init];
|
|
|
|
NSImage *badImage = [NSImage imageNamed:NSImageNameCaution];
|
|
|
|
[badIcon setImage:badImage];
|
|
|
|
[badIcon setFrame:NSMakeRect(0, 0, st::macCautionIconSize, st::macCautionIconSize)];
|
|
|
|
|
|
|
|
NSRect badFrame = [badLabel frame], badIconFrame = [badIcon frame];
|
|
|
|
badFrame.origin.x = (fullRect.size.width - badFrame.size.width + badIconFrame.size.width) / 2.;
|
|
|
|
badIconFrame.origin.x = (fullRect.size.width - badFrame.size.width - badIconFrame.size.width) / 2.;
|
|
|
|
badFrame.origin.y = alwaysRect.origin.y - badFrame.size.height - st::macAppHintTop;
|
|
|
|
badIconFrame.origin.y = badFrame.origin.y;
|
|
|
|
[badLabel setFrame:badFrame];
|
|
|
|
[badIcon setFrame:badIconFrame];
|
|
|
|
|
|
|
|
[openPanel setAccessoryView:accessory];
|
|
|
|
|
|
|
|
ChooseApplicationDelegate *delegate = [[ChooseApplicationDelegate alloc] init:apps withPanel:openPanel withSelector:selector withGood:goodLabel withBad:badLabel withIcon:badIcon withAccessory:accessory];
|
|
|
|
[openPanel setDelegate:delegate];
|
|
|
|
|
|
|
|
[openPanel setCanChooseDirectories:NO];
|
|
|
|
[openPanel setCanChooseFiles:YES];
|
|
|
|
[openPanel setAllowsMultipleSelection:NO];
|
|
|
|
[openPanel setResolvesAliases:YES];
|
2019-06-19 15:09:03 +00:00
|
|
|
[openPanel setTitle:Q2NSString(tr::lng_mac_choose_app(tr::now))];
|
|
|
|
[openPanel setMessage:Q2NSString(tr::lng_mac_choose_text(tr::now, lt_file, NS2QString(name)))];
|
2017-02-28 14:05:30 +00:00
|
|
|
|
|
|
|
NSArray *appsPaths = [[NSFileManager defaultManager] URLsForDirectory:NSApplicationDirectory inDomains:NSLocalDomainMask];
|
|
|
|
if ([appsPaths count]) [openPanel setDirectoryURL:[appsPaths firstObject]];
|
|
|
|
[openPanel beginWithCompletionHandler:^(NSInteger result){
|
|
|
|
if (result == NSFileHandlingPanelOKButton) {
|
|
|
|
if ([[openPanel URLs] count] > 0) {
|
|
|
|
NSURL *app = [[openPanel URLs] objectAtIndex:0];
|
|
|
|
NSString *path = [app path];
|
|
|
|
if ([button state] == NSOnState) {
|
|
|
|
NSArray *UTIs = (NSArray *)UTTypeCreateAllIdentifiersForTag(kUTTagClassFilenameExtension,
|
|
|
|
(CFStringRef)ext,
|
|
|
|
nil);
|
|
|
|
for (NSString *UTI in UTIs) {
|
|
|
|
OSStatus result = LSSetDefaultRoleHandlerForContentType((CFStringRef)UTI,
|
|
|
|
kLSRolesAll,
|
|
|
|
(CFStringRef)[[NSBundle bundleWithPath:path] bundleIdentifier]);
|
|
|
|
DEBUG_LOG(("App Info: set default handler for '%1' UTI result: %2").arg(NS2QString(UTI)).arg(result));
|
|
|
|
}
|
|
|
|
|
|
|
|
[UTIs release];
|
|
|
|
}
|
|
|
|
[[NSWorkspace sharedWorkspace] openFile:file withApplication:[app path]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[selector release];
|
|
|
|
[button release];
|
|
|
|
[enableLabel release];
|
|
|
|
[goodLabel release];
|
|
|
|
[badLabel release];
|
|
|
|
[badIcon release];
|
|
|
|
[accessory release];
|
|
|
|
[delegate release];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
@catch (NSException *exception) {
|
|
|
|
[[NSWorkspace sharedWorkspace] openFile:file];
|
|
|
|
}
|
|
|
|
@finally {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnsafeLaunch(const QString &filepath) {
|
|
|
|
@autoreleasepool {
|
|
|
|
|
|
|
|
NSString *file = Q2NSString(filepath);
|
|
|
|
if ([[NSWorkspace sharedWorkspace] openFile:file] == NO) {
|
|
|
|
UnsafeShowOpenWith(filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-28 10:51:00 +00:00
|
|
|
} // namespace File
|
2016-11-28 15:45:07 +00:00
|
|
|
} // namespace Platform
|