accessory in openwith width to styles

This commit is contained in:
John Preston 2014-12-08 12:45:13 +03:00
parent a96e90003b
commit 87fdb5d0f9
2 changed files with 15 additions and 15 deletions

View File

@ -1573,7 +1573,7 @@ overviewPhotoSelectOverlay: #0a7bb03f;
// Mac specific // Mac specific
macAccessoryHeight: 90; macAccessory: size(450, 90);
macEnableFilterAdd: 2; macEnableFilterAdd: 2;
macEnableFilterTop: 5; macEnableFilterTop: 5;
macSelectorTop: 6; macSelectorTop: 6;

View File

@ -490,14 +490,10 @@ void objc_openFile(const QString &f, bool openwith) {
NSArray *apps = (NSArray*)LSCopyApplicationURLsForURL(CFURLRef(url), kLSRolesAll); NSArray *apps = (NSArray*)LSCopyApplicationURLsForURL(CFURLRef(url), kLSRolesAll);
NSOpenPanel *openPanel = [NSOpenPanel openPanel]; NSOpenPanel *openPanel = [NSOpenPanel openPanel];
NSView *accessory = [[NSView alloc] init]; NSRect fullRect = { { 0., 0. }, { st::macAccessory.width() * 1., st::macAccessory.height() * 1. } };
NSView *accessory = [[NSView alloc] initWithFrame:fullRect];
[openPanel setAccessoryView:accessory];
NSRect fullRect = [[accessory superview] frame];
fullRect.origin = NSMakePoint(0, 0);
fullRect.size.height = st::macAccessoryHeight;
[accessory setFrame:fullRect];
[accessory setAutoresizesSubviews:YES]; [accessory setAutoresizesSubviews:YES];
NSPopUpButton *selector = [[NSPopUpButton alloc] init]; NSPopUpButton *selector = [[NSPopUpButton alloc] init];
@ -571,7 +567,9 @@ void objc_openFile(const QString &f, bool openwith) {
badIconFrame.origin.y = badFrame.origin.y; badIconFrame.origin.y = badFrame.origin.y;
[badLabel setFrame:badFrame]; [badLabel setFrame:badFrame];
[badIcon setFrame:badIconFrame]; [badIcon setFrame:badIconFrame];
[openPanel setAccessoryView:accessory];
ChooseApplicationDelegate *delegate = [[ChooseApplicationDelegate alloc] init:apps withPanel:openPanel withSelector:selector withGood:goodLabel withBad:badLabel withIcon:badIcon withAccessory:accessory]; ChooseApplicationDelegate *delegate = [[ChooseApplicationDelegate alloc] init:apps withPanel:openPanel withSelector:selector withGood:goodLabel withBad:badLabel withIcon:badIcon withAccessory:accessory];
[openPanel setDelegate:delegate]; [openPanel setDelegate:delegate];
@ -594,11 +592,12 @@ void objc_openFile(const QString &f, bool openwith) {
(CFStringRef)ext, (CFStringRef)ext,
nil); nil);
for (NSString *UTI in UTIs) { for (NSString *UTI in UTIs) {
LSSetDefaultRoleHandlerForContentType((CFStringRef)UTI, OSStatus result = LSSetDefaultRoleHandlerForContentType((CFStringRef)UTI,
kLSRolesEditor, kLSRolesAll,
(CFStringRef)[[NSBundle bundleWithPath:path] bundleIdentifier]); (CFStringRef)[[NSBundle bundleWithPath:path] bundleIdentifier]);
DEBUG_LOG(("App Info: set default handler for '%1' UTI result: %2").arg([UTI cStringUsingEncoding:NSUTF8StringEncoding]).arg(result));
} }
[UTIs release]; [UTIs release];
} }
[[NSWorkspace sharedWorkspace] openFile:file withApplication:[app path]]; [[NSWorkspace sharedWorkspace] openFile:file withApplication:[app path]];
@ -638,7 +637,8 @@ void objc_finish() {
} }
void objc_registerCustomScheme() { void objc_registerCustomScheme() {
LSSetDefaultHandlerForURLScheme(CFSTR("tg"), (CFStringRef)[[NSBundle mainBundle] bundleIdentifier]); OSStatus result = LSSetDefaultHandlerForURLScheme(CFSTR("tg"), (CFStringRef)[[NSBundle mainBundle] bundleIdentifier]);
DEBUG_LOG(("App Info: set default handler for 'tg' scheme result: %1").arg(result));
} }
BOOL _execUpdater(BOOL update = YES) { BOOL _execUpdater(BOOL update = YES) {