2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-05-30 15:57:54 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/browser/api/atom_api_tray.h"
|
|
|
|
|
2014-06-01 02:20:06 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-05-30 15:57:54 +00:00
|
|
|
#include "atom/browser/api/atom_api_menu.h"
|
2015-03-25 14:40:01 +00:00
|
|
|
#include "atom/browser/browser.h"
|
2014-05-30 15:57:54 +00:00
|
|
|
#include "atom/browser/ui/tray_icon.h"
|
|
|
|
#include "atom/common/native_mate_converters/image_converter.h"
|
2014-11-28 10:39:30 +00:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
2014-05-30 15:57:54 +00:00
|
|
|
#include "native_mate/constructor.h"
|
|
|
|
#include "native_mate/dictionary.h"
|
2015-01-03 02:43:56 +00:00
|
|
|
#include "ui/gfx/image/image.h"
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2015-01-03 02:43:56 +00:00
|
|
|
Tray::Tray(const gfx::Image& image)
|
2014-05-30 15:57:54 +00:00
|
|
|
: tray_icon_(TrayIcon::Create()) {
|
|
|
|
tray_icon_->SetImage(image);
|
2014-06-02 03:28:23 +00:00
|
|
|
tray_icon_->AddObserver(this);
|
2014-05-30 15:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Tray::~Tray() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2015-01-03 02:43:56 +00:00
|
|
|
mate::Wrappable* Tray::New(const gfx::Image& image) {
|
2015-03-25 14:40:01 +00:00
|
|
|
if (!Browser::Get()->is_ready()) {
|
|
|
|
node::ThrowError("Cannot create Tray before app is ready");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-05-30 15:57:54 +00:00
|
|
|
return new Tray(image);
|
|
|
|
}
|
|
|
|
|
2014-06-02 03:08:29 +00:00
|
|
|
void Tray::OnClicked() {
|
|
|
|
Emit("clicked");
|
|
|
|
}
|
|
|
|
|
2014-09-09 11:45:21 +00:00
|
|
|
void Tray::OnDoubleClicked() {
|
|
|
|
Emit("double-clicked");
|
|
|
|
}
|
|
|
|
|
2014-11-28 11:42:57 +00:00
|
|
|
void Tray::OnBalloonShow() {
|
|
|
|
Emit("balloon-show");
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:50:31 +00:00
|
|
|
void Tray::OnBalloonClicked() {
|
|
|
|
Emit("balloon-clicked");
|
|
|
|
}
|
|
|
|
|
2014-11-28 11:42:57 +00:00
|
|
|
void Tray::OnBalloonClosed() {
|
|
|
|
Emit("balloon-closed");
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:06:51 +00:00
|
|
|
void Tray::Destroy() {
|
|
|
|
tray_icon_.reset();
|
|
|
|
}
|
|
|
|
|
2015-01-03 02:43:56 +00:00
|
|
|
void Tray::SetImage(mate::Arguments* args, const gfx::Image& image) {
|
2014-11-28 10:06:51 +00:00
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
2014-05-30 15:57:54 +00:00
|
|
|
tray_icon_->SetImage(image);
|
|
|
|
}
|
|
|
|
|
2015-01-03 02:43:56 +00:00
|
|
|
void Tray::SetPressedImage(mate::Arguments* args, const gfx::Image& image) {
|
2014-11-28 10:06:51 +00:00
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
2014-05-30 15:57:54 +00:00
|
|
|
tray_icon_->SetPressedImage(image);
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:06:51 +00:00
|
|
|
void Tray::SetToolTip(mate::Arguments* args, const std::string& tool_tip) {
|
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
2014-05-30 15:57:54 +00:00
|
|
|
tray_icon_->SetToolTip(tool_tip);
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:06:51 +00:00
|
|
|
void Tray::SetTitle(mate::Arguments* args, const std::string& title) {
|
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
2014-09-09 11:33:58 +00:00
|
|
|
tray_icon_->SetTitle(title);
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:06:51 +00:00
|
|
|
void Tray::SetHighlightMode(mate::Arguments* args, bool highlight) {
|
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
2014-09-09 11:39:39 +00:00
|
|
|
tray_icon_->SetHighlightMode(highlight);
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:39:30 +00:00
|
|
|
void Tray::DisplayBalloon(mate::Arguments* args,
|
|
|
|
const mate::Dictionary& options) {
|
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
|
|
|
|
2015-01-03 02:43:56 +00:00
|
|
|
gfx::Image icon;
|
2014-11-28 10:39:30 +00:00
|
|
|
options.Get("icon", &icon);
|
|
|
|
base::string16 title, content;
|
|
|
|
if (!options.Get("title", &title) ||
|
|
|
|
!options.Get("content", &content)) {
|
|
|
|
args->ThrowError("'title' and 'content' must be defined");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tray_icon_->DisplayBalloon(icon, title, content);
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:06:51 +00:00
|
|
|
void Tray::SetContextMenu(mate::Arguments* args, Menu* menu) {
|
|
|
|
if (!CheckTrayLife(args))
|
|
|
|
return;
|
2014-05-30 15:57:54 +00:00
|
|
|
tray_icon_->SetContextMenu(menu->model());
|
|
|
|
}
|
|
|
|
|
2014-11-28 10:06:51 +00:00
|
|
|
bool Tray::CheckTrayLife(mate::Arguments* args) {
|
|
|
|
if (!tray_icon_) {
|
|
|
|
args->ThrowError("Tray is already destroyed");
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 15:57:54 +00:00
|
|
|
// static
|
|
|
|
void Tray::BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Handle<v8::ObjectTemplate> prototype) {
|
|
|
|
mate::ObjectTemplateBuilder(isolate, prototype)
|
2014-11-28 10:06:51 +00:00
|
|
|
.SetMethod("destroy", &Tray::Destroy)
|
2014-05-30 15:57:54 +00:00
|
|
|
.SetMethod("setImage", &Tray::SetImage)
|
|
|
|
.SetMethod("setPressedImage", &Tray::SetPressedImage)
|
|
|
|
.SetMethod("setToolTip", &Tray::SetToolTip)
|
2014-09-09 11:33:58 +00:00
|
|
|
.SetMethod("setTitle", &Tray::SetTitle)
|
2014-09-09 11:39:39 +00:00
|
|
|
.SetMethod("setHighlightMode", &Tray::SetHighlightMode)
|
2014-11-28 10:39:30 +00:00
|
|
|
.SetMethod("displayBalloon", &Tray::DisplayBalloon)
|
2014-05-30 15:57:54 +00:00
|
|
|
.SetMethod("_setContextMenu", &Tray::SetContextMenu);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2014-06-29 12:48:44 +00:00
|
|
|
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
|
|
|
|
v8::Handle<v8::Context> context, void* priv) {
|
2014-05-30 15:57:54 +00:00
|
|
|
using atom::api::Tray;
|
2014-06-29 12:48:44 +00:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2014-05-30 15:57:54 +00:00
|
|
|
v8::Handle<v8::Function> constructor = mate::CreateConstructor<Tray>(
|
|
|
|
isolate, "Tray", base::Bind(&Tray::New));
|
|
|
|
mate::Dictionary dict(isolate, exports);
|
|
|
|
dict.Set("Tray", static_cast<v8::Handle<v8::Value>>(constructor));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-06-29 12:48:44 +00:00
|
|
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_tray, Initialize)
|