2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-02 20:09:19 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-04-15 09:35:26 +08:00
|
|
|
#import "atom/browser/mac/atom_application_delegate.h"
|
2013-05-02 20:09:19 +08:00
|
|
|
|
2014-04-15 09:35:26 +08:00
|
|
|
#import "atom/browser/mac/atom_application.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/browser.h"
|
2014-04-15 09:35:26 +08:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2013-05-02 20:09:19 +08:00
|
|
|
|
|
|
|
@implementation AtomApplicationDelegate
|
|
|
|
|
2014-11-16 23:04:31 +08: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 15:31:46 +08:00
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification*)notify {
|
2015-12-10 11:27:41 +08:00
|
|
|
// Don't add the "Enter Full Screen" menu item automatically.
|
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
|
|
|
|
|
2016-03-01 15:05:44 -05:00
|
|
|
// Add observer to monitor the system's Dark Mode theme.
|
2016-03-03 23:58:58 -05:00
|
|
|
[[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(platformThemeChanged:) name:@"AppleInterfaceThemeChangedNotification" object:nil];
|
2016-03-01 15:05:44 -05:00
|
|
|
|
2013-06-03 15:31:46 +08:00
|
|
|
atom::Browser::Get()->WillFinishLaunching();
|
|
|
|
}
|
|
|
|
|
2013-05-02 20:09:19 +08:00
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)notify {
|
2013-05-30 19:12:14 +08:00
|
|
|
atom::Browser::Get()->DidFinishLaunching();
|
2013-05-02 20:09:19 +08:00
|
|
|
}
|
|
|
|
|
2014-11-16 23:04:31 +08:00
|
|
|
- (NSMenu*)applicationDockMenu:(NSApplication*)sender {
|
|
|
|
return [menu_controller_ menu];
|
|
|
|
}
|
|
|
|
|
2013-05-30 16:03:10 +08:00
|
|
|
- (BOOL)application:(NSApplication*)sender
|
|
|
|
openFile:(NSString*)filename {
|
2013-05-30 19:12:14 +08:00
|
|
|
std::string filename_str(base::SysNSStringToUTF8(filename));
|
|
|
|
return atom::Browser::Get()->OpenFile(filename_str) ? YES : NO;
|
2013-05-30 16:03:10 +08:00
|
|
|
}
|
|
|
|
|
2013-06-26 17:22:24 +08: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-15 00:02:33 +08:00
|
|
|
return NSTerminateCancel;
|
2013-06-26 17:22:24 +08:00
|
|
|
}
|
2013-05-02 20:09:19 +08:00
|
|
|
}
|
|
|
|
|
2014-03-05 18:09:44 +08:00
|
|
|
- (BOOL)applicationShouldHandleReopen:(NSApplication*)theApplication
|
|
|
|
hasVisibleWindows:(BOOL)flag {
|
|
|
|
atom::Browser* browser = atom::Browser::Get();
|
2015-09-14 18:34:27 -07:00
|
|
|
browser->Activate(static_cast<bool>(flag));
|
2015-09-14 19:05:53 -07:00
|
|
|
return flag;
|
2014-03-05 18:09:44 +08:00
|
|
|
}
|
|
|
|
|
2016-03-03 23:58:58 -05:00
|
|
|
- (void)platformThemeChanged:(NSNotification *)notify {
|
|
|
|
atom::Browser::Get()->PlatformThemeChanged();
|
2016-03-01 15:05:44 -05:00
|
|
|
}
|
|
|
|
|
2013-05-02 20:09:19 +08:00
|
|
|
@end
|