62 lines
1.8 KiB
Text
62 lines
1.8 KiB
Text
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#import "atom/browser/mac/atom_application_delegate.h"
|
|
|
|
#import "atom/browser/mac/atom_application.h"
|
|
#include "atom/browser/browser.h"
|
|
#include "base/strings/sys_string_conversions.h"
|
|
|
|
@implementation AtomApplicationDelegate
|
|
|
|
- (id)init {
|
|
self = [super init];
|
|
menu_controller_.reset([[AtomMenuController alloc] init]);
|
|
return self;
|
|
}
|
|
|
|
- (void)setApplicationDockMenu:(ui::MenuModel*)model {
|
|
[menu_controller_ populateWithModel:model];
|
|
}
|
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification*)notify {
|
|
// Don't add the "Enter Full Screen" menu item automatically.
|
|
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
|
|
|
|
atom::Browser::Get()->WillFinishLaunching();
|
|
}
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)notify {
|
|
atom::Browser::Get()->DidFinishLaunching();
|
|
}
|
|
|
|
- (NSMenu*)applicationDockMenu:(NSApplication*)sender {
|
|
return [menu_controller_ menu];
|
|
}
|
|
|
|
- (BOOL)application:(NSApplication*)sender
|
|
openFile:(NSString*)filename {
|
|
std::string filename_str(base::SysNSStringToUTF8(filename));
|
|
return atom::Browser::Get()->OpenFile(filename_str) ? YES : NO;
|
|
}
|
|
|
|
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication*)sender {
|
|
atom::Browser* browser = atom::Browser::Get();
|
|
if (browser->is_quiting()) {
|
|
return NSTerminateNow;
|
|
} else {
|
|
// System started termination.
|
|
atom::Browser::Get()->Quit();
|
|
return NSTerminateCancel;
|
|
}
|
|
}
|
|
|
|
- (BOOL)applicationShouldHandleReopen:(NSApplication*)theApplication
|
|
hasVisibleWindows:(BOOL)flag {
|
|
atom::Browser* browser = atom::Browser::Get();
|
|
browser->Activate(static_cast<bool>(flag));
|
|
return flag;
|
|
}
|
|
|
|
@end
|