2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-05-30 23:57:54 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_TRAY_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_TRAY_H_
|
|
|
|
|
2014-06-01 10:20:06 +08:00
|
|
|
#include <string>
|
2015-07-19 12:12:28 +08:00
|
|
|
#include <vector>
|
2014-06-01 10:20:06 +08:00
|
|
|
|
2014-05-30 23:57:54 +08:00
|
|
|
#include "atom/browser/api/event_emitter.h"
|
2014-06-02 11:08:29 +08:00
|
|
|
#include "atom/browser/ui/tray_icon_observer.h"
|
2014-05-30 23:57:54 +08:00
|
|
|
#include "base/memory/scoped_ptr.h"
|
|
|
|
|
|
|
|
namespace gfx {
|
2015-01-02 18:43:56 -08:00
|
|
|
class Image;
|
2014-05-30 23:57:54 +08:00
|
|
|
}
|
|
|
|
|
2014-11-28 18:06:51 +08:00
|
|
|
namespace mate {
|
|
|
|
class Arguments;
|
2014-11-28 18:39:30 +08:00
|
|
|
class Dictionary;
|
2014-11-28 18:06:51 +08:00
|
|
|
}
|
|
|
|
|
2014-05-30 23:57:54 +08:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class TrayIcon;
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
class Menu;
|
|
|
|
|
2014-06-02 11:08:29 +08:00
|
|
|
class Tray : public mate::EventEmitter,
|
|
|
|
public TrayIconObserver {
|
2014-05-30 23:57:54 +08:00
|
|
|
public:
|
2015-06-10 14:21:09 +08:00
|
|
|
static mate::Wrappable* New(v8::Isolate* isolate, const gfx::Image& image);
|
2014-05-30 23:57:54 +08:00
|
|
|
|
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2015-05-22 19:11:22 +08:00
|
|
|
v8::Local<v8::ObjectTemplate> prototype);
|
2014-05-30 23:57:54 +08:00
|
|
|
|
|
|
|
protected:
|
2015-01-02 18:43:56 -08:00
|
|
|
explicit Tray(const gfx::Image& image);
|
2014-05-30 23:57:54 +08:00
|
|
|
virtual ~Tray();
|
|
|
|
|
2014-11-28 17:54:38 +08:00
|
|
|
// TrayIconObserver:
|
2015-07-19 12:12:28 +08:00
|
|
|
void OnClicked(const gfx::Rect& bounds) override;
|
2015-07-25 20:56:35 -07:00
|
|
|
void OnDoubleClicked(const gfx::Rect& bounds) override;
|
2014-11-28 19:42:57 +08:00
|
|
|
void OnBalloonShow() override;
|
2014-11-28 18:50:31 +08:00
|
|
|
void OnBalloonClicked() override;
|
2014-11-28 19:42:57 +08:00
|
|
|
void OnBalloonClosed() override;
|
2015-07-19 12:12:28 +08:00
|
|
|
void OnRightClicked(const gfx::Rect& bounds) override;
|
|
|
|
void OnDropFiles(const std::vector<std::string>& files) override;
|
2014-06-02 11:08:29 +08:00
|
|
|
|
2015-07-06 18:24:40 +08:00
|
|
|
// mate::Wrappable:
|
|
|
|
bool IsDestroyed() const override;
|
|
|
|
|
2014-11-28 18:06:51 +08:00
|
|
|
void Destroy();
|
2015-01-02 18:43:56 -08:00
|
|
|
void SetImage(mate::Arguments* args, const gfx::Image& image);
|
|
|
|
void SetPressedImage(mate::Arguments* args, const gfx::Image& image);
|
2014-11-28 18:06:51 +08:00
|
|
|
void SetToolTip(mate::Arguments* args, const std::string& tool_tip);
|
|
|
|
void SetTitle(mate::Arguments* args, const std::string& title);
|
|
|
|
void SetHighlightMode(mate::Arguments* args, bool highlight);
|
2014-11-28 18:39:30 +08:00
|
|
|
void DisplayBalloon(mate::Arguments* args, const mate::Dictionary& options);
|
2015-07-16 11:39:49 +08:00
|
|
|
void PopContextMenu(mate::Arguments* args);
|
2014-11-28 18:06:51 +08:00
|
|
|
void SetContextMenu(mate::Arguments* args, Menu* menu);
|
2014-05-30 23:57:54 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
scoped_ptr<TrayIcon> tray_icon_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Tray);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_TRAY_H_
|