electron/atom/browser/api/atom_api_app.cc

202 lines
5.3 KiB
C++
Raw Normal View History

2013-05-02 16:05:09 +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
#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"
#include "atom/common/v8/native_type_conversions.h"
#include "atom/common/node_includes.h"
2013-05-02 16:05:09 +00:00
namespace atom {
namespace api {
App::App(v8::Handle<v8::Object> wrapper)
: EventEmitter(wrapper) {
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);
*prevent_default = Emit("open-file", &args);
}
void App::OnOpenURL(const std::string& url) {
base::ListValue args;
args.AppendString(url);
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");
}
// static
void App::New(const v8::FunctionCallbackInfo<v8::Value>& args) {
v8::HandleScope scope(args.GetIsolate());
if (!args.IsConstructCall())
return node::ThrowError("Require constructor call");
new App(args.This());
}
2013-05-02 16:05:09 +00:00
// static
void App::Quit(const v8::FunctionCallbackInfo<v8::Value>& args) {
2013-05-02 16:05:09 +00:00
Browser::Get()->Quit();
}
2013-05-30 11:24:47 +00:00
// static
void App::Focus(const v8::FunctionCallbackInfo<v8::Value>& args) {
2013-05-30 11:24:47 +00:00
Browser::Get()->Focus();
}
2013-06-19 05:43:48 +00:00
// static
void App::GetVersion(const v8::FunctionCallbackInfo<v8::Value>& args) {
args.GetReturnValue().Set(ToV8Value(Browser::Get()->GetVersion()));
2013-06-19 05:43:48 +00:00
}
2013-12-05 02:26:01 +00:00
// static
void App::SetVersion(const v8::FunctionCallbackInfo<v8::Value>& args) {
2013-12-05 02:26:01 +00:00
std::string version;
if (!FromV8Arguments(args, &version))
return node::ThrowError("Bad argument");
Browser::Get()->SetVersion(version);
}
// static
void App::GetName(const v8::FunctionCallbackInfo<v8::Value>& args) {
return args.GetReturnValue().Set(ToV8Value(Browser::Get()->GetName()));
}
// static
void App::SetName(const v8::FunctionCallbackInfo<v8::Value>& args) {
std::string name;
if (!FromV8Arguments(args, &name))
return node::ThrowError("Bad argument");
Browser::Get()->SetName(name);
}
// static
void App::AppendSwitch(const v8::FunctionCallbackInfo<v8::Value>& args) {
std::string switch_string;
if (!FromV8Arguments(args, &switch_string))
return node::ThrowError("Bad argument");
if (args.Length() == 1) {
CommandLine::ForCurrentProcess()->AppendSwitch(switch_string);
} else {
std::string value = FromV8Value(args[1]);
CommandLine::ForCurrentProcess()->AppendSwitchASCII(
switch_string, value);
}
}
// static
void App::AppendArgument(const v8::FunctionCallbackInfo<v8::Value>& args) {
std::string value;
if (!FromV8Arguments(args, &value))
return node::ThrowError("Bad argument");
CommandLine::ForCurrentProcess()->AppendArg(value);
}
2013-08-06 08:19:56 +00:00
#if defined(OS_MACOSX)
// static
void App::DockBounce(const v8::FunctionCallbackInfo<v8::Value>& args) {
2013-12-05 02:35:57 +00:00
std::string type;
if (!FromV8Arguments(args, &type))
return node::ThrowError("Bad argument");
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);
else
return node::ThrowTypeError("Invalid bounce type");
args.GetReturnValue().Set(request_id);
2013-08-06 08:19:56 +00:00
}
// static
void App::DockCancelBounce(const v8::FunctionCallbackInfo<v8::Value>& args) {
Browser::Get()->DockCancelBounce(FromV8Value(args[0]));
2013-08-06 08:19:56 +00:00
}
// static
void App::DockSetBadgeText(const v8::FunctionCallbackInfo<v8::Value>& args) {
Browser::Get()->DockSetBadgeText(FromV8Value(args[0]));
2013-08-06 08:19:56 +00:00
}
2013-08-06 08:39:31 +00:00
// static
void App::DockGetBadgeText(const v8::FunctionCallbackInfo<v8::Value>& args) {
2013-08-06 08:39:31 +00:00
std::string text(Browser::Get()->DockGetBadgeText());
args.GetReturnValue().Set(ToV8Value(text));
2013-08-06 08:39:31 +00:00
}
2013-08-06 08:19:56 +00:00
#endif // defined(OS_MACOSX)
2013-05-02 16:05:09 +00:00
// static
void App::Initialize(v8::Handle<v8::Object> target) {
v8::Local<v8::FunctionTemplate> t = v8::FunctionTemplate::New(New);
t->InstanceTemplate()->SetInternalFieldCount(1);
t->SetClassName(v8::String::NewSymbol("Application"));
NODE_SET_PROTOTYPE_METHOD(t, "quit", Quit);
2013-05-30 11:24:47 +00:00
NODE_SET_PROTOTYPE_METHOD(t, "focus", Focus);
2013-06-19 05:43:48 +00:00
NODE_SET_PROTOTYPE_METHOD(t, "getVersion", GetVersion);
2013-12-05 02:26:01 +00:00
NODE_SET_PROTOTYPE_METHOD(t, "setVersion", SetVersion);
NODE_SET_PROTOTYPE_METHOD(t, "getName", GetName);
NODE_SET_PROTOTYPE_METHOD(t, "setName", SetName);
target->Set(v8::String::NewSymbol("Application"), t->GetFunction());
NODE_SET_METHOD(target, "appendSwitch", AppendSwitch);
NODE_SET_METHOD(target, "appendArgument", AppendArgument);
2013-08-06 08:19:56 +00:00
#if defined(OS_MACOSX)
NODE_SET_METHOD(target, "dockBounce", DockBounce);
NODE_SET_METHOD(target, "dockCancelBounce", DockCancelBounce);
NODE_SET_METHOD(target, "dockSetBadgeText", DockSetBadgeText);
2013-08-06 08:39:31 +00:00
NODE_SET_METHOD(target, "dockGetBadgeText", DockGetBadgeText);
2013-08-06 08:19:56 +00:00
#endif // defined(OS_MACOSX)
2013-05-02 16:05:09 +00:00
}
} // namespace api
} // namespace atom
NODE_MODULE(atom_browser_app, atom::api::App::Initialize)