2013-05-02 12:09:19 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#import "atom/browser/atom_application_delegate_mac.h"
|
2013-05-02 12:09:19 +00:00
|
|
|
|
2013-05-30 11:12:14 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#import "atom/browser/atom_application_mac.h"
|
|
|
|
#include "atom/browser/browser.h"
|
2013-05-02 12:09:19 +00:00
|
|
|
|
|
|
|
@implementation AtomApplicationDelegate
|
|
|
|
|
2013-06-03 07:31:46 +00:00
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification*)notify {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
if (flag) {
|
|
|
|
return YES;
|
|
|
|
} else {
|
|
|
|
browser->ActivateWithNoOpenWindows();
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
@end
|