electron/atom/browser/api/atom_api_app.cc

144 lines
4.2 KiB
C++
Raw Normal View History

2013-05-02 16:05:09 +00:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
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 16:05:09 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/browser/api/atom_api_app.h"
2013-05-02 16:05:09 +00:00
#include <string>
#include "base/values.h"
#include "base/command_line.h"
2014-03-16 00:30:26 +00:00
#include "atom/browser/browser.h"
2014-04-17 09:13:46 +00:00
#include "native_mate/dictionary.h"
#include "native_mate/object_template_builder.h"
#include "atom/common/node_includes.h"
2013-05-02 16:05:09 +00:00
2014-04-17 09:13:46 +00:00
using atom::Browser;
2013-05-02 16:05:09 +00:00
namespace atom {
namespace api {
2014-04-17 09:13:46 +00:00
App::App() {
Browser::Get()->AddObserver(this);
}
App::~App() {
Browser::Get()->RemoveObserver(this);
}
void App::OnWillQuit(bool* prevent_default) {
*prevent_default = Emit("will-quit");
}
void App::OnWindowAllClosed() {
Emit("window-all-closed");
}
void App::OnOpenFile(bool* prevent_default, const std::string& file_path) {
base::ListValue args;
args.AppendString(file_path);
2014-04-17 09:13:46 +00:00
*prevent_default = Emit("open-file", args);
}
void App::OnOpenURL(const std::string& url) {
base::ListValue args;
args.AppendString(url);
2014-04-17 09:13:46 +00:00
Emit("open-url", args);
}
void App::OnActivateWithNoOpenWindows() {
Emit("activate-with-no-open-windows");
}
void App::OnWillFinishLaunching() {
Emit("will-finish-launching");
}
void App::OnFinishLaunching() {
Emit("ready");
}
2014-04-17 09:13:46 +00:00
mate::ObjectTemplateBuilder App::GetObjectTemplateBuilder(
v8::Isolate* isolate) {
Browser* browser = Browser::Get();
return mate::ObjectTemplateBuilder(isolate)
.SetMethod("quit", base::Bind(&Browser::Quit,
base::Unretained(browser)))
.SetMethod("focus", base::Bind(&Browser::Focus,
base::Unretained(browser)))
.SetMethod("getVersion", base::Bind(&Browser::GetVersion,
base::Unretained(browser)))
.SetMethod("setVersion", base::Bind(&Browser::SetVersion,
base::Unretained(browser)))
.SetMethod("getName", base::Bind(&Browser::GetName,
base::Unretained(browser)))
.SetMethod("setName", base::Bind(&Browser::SetName,
base::Unretained(browser)));
2013-05-30 11:24:47 +00:00
}
2013-06-19 05:43:48 +00:00
// static
2014-04-17 09:13:46 +00:00
mate::Handle<App> App::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new App);
2013-12-05 02:26:01 +00:00
}
2014-04-17 09:13:46 +00:00
} // namespace api
2014-04-17 09:13:46 +00:00
} // namespace atom
2014-04-17 09:13:46 +00:00
namespace {
2014-04-17 09:13:46 +00:00
void AppendSwitch(const std::string& switch_string, mate::Arguments* args) {
std::string value;
2014-04-17 09:13:46 +00:00
if (args->GetNext(&value))
CommandLine::ForCurrentProcess()->AppendSwitchASCII(switch_string, value);
else
CommandLine::ForCurrentProcess()->AppendSwitch(switch_string);
}
2013-08-06 08:19:56 +00:00
#if defined(OS_MACOSX)
2014-04-17 09:13:46 +00:00
int DockBounce(const std::string& type) {
2013-08-06 08:19:56 +00:00
int request_id = -1;
if (type == "critical")
request_id = Browser::Get()->DockBounce(Browser::BOUNCE_CRITICAL);
else if (type == "informational")
request_id = Browser::Get()->DockBounce(Browser::BOUNCE_INFORMATIONAL);
2014-04-17 09:13:46 +00:00
return request_id;
2013-08-06 08:19:56 +00:00
}
2014-04-17 09:13:46 +00:00
#endif
2013-08-06 08:19:56 +00:00
2014-04-17 09:13:46 +00:00
void Initialize(v8::Handle<v8::Object> exports) {
v8::Isolate* isolate = v8::Isolate::GetCurrent();
Browser* browser = Browser::Get();
CommandLine* command_line = CommandLine::ForCurrentProcess();
2013-08-06 08:19:56 +00:00
2014-04-17 09:13:46 +00:00
mate::Dictionary dict(isolate, exports);
dict.Set("app", atom::api::App::Create(isolate));
dict.SetMethod("appendSwitch", &AppendSwitch);
dict.SetMethod("appendArgument",
base::Bind(&CommandLine::AppendArg,
base::Unretained(command_line)));
2013-08-06 08:19:56 +00:00
#if defined(OS_MACOSX)
2014-04-17 09:13:46 +00:00
dict.SetMethod("dockBounce", &DockBounce);
dict.SetMethod("dockCancelBounce",
base::Bind(&Browser::DockCancelBounce,
base::Unretained(browser)));
dict.SetMethod("dockSetBadgeText",
base::Bind(&Browser::DockSetBadgeText,
base::Unretained(browser)));
dict.SetMethod("dockGetBadgeText",
base::Bind(&Browser::DockGetBadgeText,
base::Unretained(browser)));
dict.SetMethod("dockHide",
base::Bind(&Browser::DockHide, base::Unretained(browser)));
dict.SetMethod("dockShow",
base::Bind(&Browser::DockShow, base::Unretained(browser)));
2014-04-17 09:13:46 +00:00
#endif
}
} // namespace
NODE_MODULE_X(atom_browser_app, Initialize, NULL, NM_F_BUILTIN)