2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-02 12:09:19 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-04-15 01:35:26 +00:00
|
|
|
#import "atom/browser/mac/atom_application_delegate.h"
|
2016-05-02 23:18:58 +00:00
|
|
|
|
2016-05-03 17:31:53 +00:00
|
|
|
#import "atom/browser/mac/atom_application.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/browser.h"
|
2014-04-15 01:35:26 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2013-05-02 12:09:19 +00:00
|
|
|
|
|
|
|
@implementation AtomApplicationDelegate
|
|
|
|
|
2014-11-16 15:04:31 +00:00
|
|
|
- (id)init {
|
|
|
|
self = [super init];
|
|
|
|
menu_controller_.reset([[AtomMenuController alloc] init]);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setApplicationDockMenu:(ui::MenuModel*)model {
|
|
|
|
[menu_controller_ populateWithModel:model];
|
|
|
|
}
|
|
|
|
|
2013-06-03 07:31:46 +00:00
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification*)notify {
|
2015-12-10 03:27:41 +00:00
|
|
|
// Don't add the "Enter Full Screen" menu item automatically.
|
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
|
|
|
|
|
2013-06-03 07:31:46 +00:00
|
|
|
atom::Browser::Get()->WillFinishLaunching();
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)notify {
|
2013-05-30 11:12:14 +00:00
|
|
|
atom::Browser::Get()->DidFinishLaunching();
|
2013-05-02 12:09:19 +00:00
|
|
|
}
|
|
|
|
|
2014-11-16 15:04:31 +00:00
|
|
|
- (NSMenu*)applicationDockMenu:(NSApplication*)sender {
|
|
|
|
return [menu_controller_ menu];
|
|
|
|
}
|
|
|
|
|
2013-05-30 08:03:10 +00:00
|
|
|
- (BOOL)application:(NSApplication*)sender
|
|
|
|
openFile:(NSString*)filename {
|
2013-05-30 11:12:14 +00:00
|
|
|
std::string filename_str(base::SysNSStringToUTF8(filename));
|
|
|
|
return atom::Browser::Get()->OpenFile(filename_str) ? YES : NO;
|
2013-05-30 08:03:10 +00:00
|
|
|
}
|
|
|
|
|
2013-06-26 09:22:24 +00:00
|
|
|
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication*)sender {
|
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
|
|
|
if (browser->is_quiting()) {
|
|
|
|
return NSTerminateNow;
|
|
|
|
} else {
|
|
|
|
// System started termination.
|
|
|
|
atom::Browser::Get()->Quit();
|
2014-04-14 16:02:33 +00:00
|
|
|
return NSTerminateCancel;
|
2013-06-26 09:22:24 +00:00
|
|
|
}
|
2013-05-02 12:09:19 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 10:09:44 +00:00
|
|
|
- (BOOL)applicationShouldHandleReopen:(NSApplication*)theApplication
|
|
|
|
hasVisibleWindows:(BOOL)flag {
|
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
2015-09-15 01:34:27 +00:00
|
|
|
browser->Activate(static_cast<bool>(flag));
|
2015-09-15 02:05:53 +00:00
|
|
|
return flag;
|
2014-03-05 10:09:44 +00:00
|
|
|
}
|
|
|
|
|
2016-04-30 00:37:01 +00:00
|
|
|
- (BOOL)application:(NSApplication *)sender
|
|
|
|
continueUserActivity:(NSUserActivity *)userActivity
|
|
|
|
restorationHandler:(void (^)(NSArray *restorableObjects))restorationHandler {
|
|
|
|
std::string activity_type(base::SysNSStringToUTF8(userActivity.activityType));
|
2016-05-03 22:51:31 +00:00
|
|
|
|
2016-05-03 17:31:53 +00:00
|
|
|
std::map<std::string, std::string> user_info;
|
2016-05-04 18:28:49 +00:00
|
|
|
base::scoped_nsobject<NSArray> keys([userActivity.userInfo allKeys]);
|
2016-05-03 22:51:31 +00:00
|
|
|
|
2016-05-04 18:28:49 +00:00
|
|
|
for (NSString* key in keys.get()) {
|
2016-05-03 17:31:53 +00:00
|
|
|
NSString* value = [userActivity.userInfo objectForKey:key];
|
|
|
|
std::string key_str(base::SysNSStringToUTF8(key));
|
|
|
|
std::string value_str(base::SysNSStringToUTF8(value));
|
|
|
|
user_info[key_str] = value_str;
|
|
|
|
}
|
2016-04-30 00:37:01 +00:00
|
|
|
|
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
2016-05-03 17:31:53 +00:00
|
|
|
return browser->ContinueUserActivity(activity_type, user_info) ? YES : NO;
|
2016-04-30 00:37:01 +00:00
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
@end
|