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-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2013-05-02 12:09:19 +00:00
|
|
|
|
2018-10-24 10:49:10 +00:00
|
|
|
#include "atom/browser/atom_paths.h"
|
2015-04-14 06:15:53 +00:00
|
|
|
#include "atom/browser/mac/atom_application_delegate.h"
|
|
|
|
#include "base/mac/bundle_locations.h"
|
|
|
|
#include "base/mac/foundation_util.h"
|
2018-10-23 20:15:55 +00:00
|
|
|
#include "base/path_service.h"
|
2014-05-29 07:54:25 +00:00
|
|
|
#include "ui/base/l10n/l10n_util_mac.h"
|
2013-05-02 12:09:19 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopStart() {
|
2016-01-08 04:06:06 +00:00
|
|
|
// Set our own application delegate.
|
2014-11-16 15:04:31 +00:00
|
|
|
AtomApplicationDelegate* delegate = [[AtomApplicationDelegate alloc] init];
|
2016-08-05 20:57:33 +00:00
|
|
|
[NSApp setDelegate:delegate];
|
2013-05-02 12:09:19 +00:00
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
PreMainMessageLoopStartCommon();
|
2013-05-31 02:17:40 +00:00
|
|
|
|
|
|
|
// Prevent Cocoa from turning command-line arguments into
|
|
|
|
// |-application:openFiles:|, since we already handle them directly.
|
|
|
|
[[NSUserDefaults standardUserDefaults]
|
2018-04-20 18:47:04 +00:00
|
|
|
setObject:@"NO"
|
|
|
|
forKey:@"NSTreatUnknownArgumentsAsOpen"];
|
2013-05-02 12:09:19 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 09:23:27 +00:00
|
|
|
void AtomBrowserMainParts::FreeAppDelegate() {
|
2014-11-17 01:52:24 +00:00
|
|
|
[[NSApp delegate] release];
|
|
|
|
[NSApp setDelegate:nil];
|
2013-05-30 08:03:10 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 20:15:55 +00:00
|
|
|
void AtomBrowserMainParts::OverrideAppLogsPath() {
|
|
|
|
base::FilePath path;
|
|
|
|
NSString* bundleName =
|
|
|
|
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"];
|
|
|
|
NSString* logsPath =
|
|
|
|
[NSString stringWithFormat:@"Library/Logs/%@", bundleName];
|
|
|
|
NSString* libraryPath =
|
|
|
|
[NSHomeDirectory() stringByAppendingPathComponent:logsPath];
|
|
|
|
|
2018-10-24 10:49:10 +00:00
|
|
|
base::PathService::Override(DIR_APP_LOGS,
|
2018-10-23 20:15:55 +00:00
|
|
|
base::FilePath([libraryPath UTF8String]));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replicates NSApplicationMain, but doesn't start a run loop.
|
|
|
|
void AtomBrowserMainParts::InitializeMainNib() {
|
|
|
|
auto infoDictionary = base::mac::OuterBundle().infoDictionary;
|
|
|
|
|
|
|
|
auto principalClass =
|
|
|
|
NSClassFromString([infoDictionary objectForKey:@"NSPrincipalClass"]);
|
|
|
|
auto application = [principalClass sharedApplication];
|
|
|
|
|
|
|
|
NSString* mainNibName = [infoDictionary objectForKey:@"NSMainNibFile"];
|
|
|
|
auto mainNib = [[NSNib alloc] initWithNibNamed:mainNibName
|
|
|
|
bundle:base::mac::FrameworkBundle()];
|
|
|
|
[mainNib instantiateWithOwner:application topLevelObjects:nil];
|
|
|
|
[mainNib release];
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
} // namespace atom
|