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.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_API_ATOM_API_TRAY_H_
|
|
|
|
#define SHELL_BROWSER_API_ATOM_API_TRAY_H_
|
2014-05-30 15:57:54 +00:00
|
|
|
|
2016-07-04 06:08:55 +00:00
|
|
|
#include <memory>
|
2014-06-01 02:20:06 +00:00
|
|
|
#include <string>
|
2015-07-19 04:12:28 +00:00
|
|
|
#include <vector>
|
2014-06-01 02:20:06 +00:00
|
|
|
|
2019-10-21 07:05:40 +00:00
|
|
|
#include "gin/handle.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/ui/tray_icon.h"
|
|
|
|
#include "shell/browser/ui/tray_icon_observer.h"
|
2019-10-15 01:15:23 +00:00
|
|
|
#include "shell/common/gin_helper/error_thrower.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/common/gin_helper/trackable_object.h"
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
namespace gfx {
|
2015-01-03 02:43:56 +00:00
|
|
|
class Image;
|
2014-05-30 15:57:54 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 07:05:40 +00:00
|
|
|
namespace gin_helper {
|
2014-11-28 10:39:30 +00:00
|
|
|
class Dictionary;
|
2019-10-21 07:05:40 +00:00
|
|
|
}
|
2014-11-28 10:06:51 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
class TrayIcon;
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
class Menu;
|
2016-05-20 07:14:40 +00:00
|
|
|
class NativeImage;
|
2014-05-30 15:57:54 +00:00
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
class Tray : public gin_helper::TrackableObject<Tray>, public TrayIconObserver {
|
2014-05-30 15:57:54 +00:00
|
|
|
public:
|
2019-12-05 09:46:34 +00:00
|
|
|
static gin_helper::WrappableBase* New(gin_helper::ErrorThrower thrower,
|
|
|
|
gin::Handle<NativeImage> image,
|
|
|
|
gin_helper::Arguments* args);
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 09:08:12 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
protected:
|
2019-10-21 07:05:40 +00:00
|
|
|
Tray(gin::Handle<NativeImage> image, gin_helper::Arguments* args);
|
2015-11-04 10:21:03 +00:00
|
|
|
~Tray() override;
|
2014-05-30 15:57:54 +00:00
|
|
|
|
2014-11-28 09:54:38 +00:00
|
|
|
// TrayIconObserver:
|
2017-10-05 02:49:26 +00:00
|
|
|
void OnClicked(const gfx::Rect& bounds,
|
|
|
|
const gfx::Point& location,
|
|
|
|
int modifiers) override;
|
2015-07-27 10:15:51 +00:00
|
|
|
void OnDoubleClicked(const gfx::Rect& bounds, int modifiers) override;
|
2015-07-29 06:25:12 +00:00
|
|
|
void OnRightClicked(const gfx::Rect& bounds, int modifiers) override;
|
2014-11-28 11:42:57 +00:00
|
|
|
void OnBalloonShow() override;
|
2014-11-28 10:50:31 +00:00
|
|
|
void OnBalloonClicked() override;
|
2014-11-28 11:42:57 +00:00
|
|
|
void OnBalloonClosed() override;
|
2015-11-10 16:02:50 +00:00
|
|
|
void OnDrop() override;
|
2015-07-19 04:12:28 +00:00
|
|
|
void OnDropFiles(const std::vector<std::string>& files) override;
|
2016-07-14 17:21:39 +00:00
|
|
|
void OnDropText(const std::string& text) override;
|
2015-11-06 00:45:43 +00:00
|
|
|
void OnDragEntered() override;
|
|
|
|
void OnDragExited() override;
|
2015-11-10 16:02:50 +00:00
|
|
|
void OnDragEnded() override;
|
2020-01-17 16:28:34 +00:00
|
|
|
void OnMouseUp(const gfx::Point& location, int modifiers) override;
|
|
|
|
void OnMouseDown(const gfx::Point& location, int modifiers) override;
|
2017-06-28 19:09:12 +00:00
|
|
|
void OnMouseEntered(const gfx::Point& location, int modifiers) override;
|
|
|
|
void OnMouseExited(const gfx::Point& location, int modifiers) override;
|
2017-08-26 18:04:58 +00:00
|
|
|
void OnMouseMoved(const gfx::Point& location, int modifiers) override;
|
2014-06-02 03:08:29 +00:00
|
|
|
|
2019-10-21 07:05:40 +00:00
|
|
|
void SetImage(v8::Isolate* isolate, gin::Handle<NativeImage> image);
|
|
|
|
void SetPressedImage(v8::Isolate* isolate, gin::Handle<NativeImage> image);
|
2016-05-20 07:14:40 +00:00
|
|
|
void SetToolTip(const std::string& tool_tip);
|
|
|
|
void SetTitle(const std::string& title);
|
2019-03-18 19:40:34 +00:00
|
|
|
std::string GetTitle();
|
2018-04-02 01:07:26 +00:00
|
|
|
void SetIgnoreDoubleClickEvents(bool ignore);
|
2018-05-03 07:43:46 +00:00
|
|
|
bool GetIgnoreDoubleClickEvents();
|
2019-10-21 07:05:40 +00:00
|
|
|
void DisplayBalloon(gin_helper::ErrorThrower thrower,
|
|
|
|
const gin_helper::Dictionary& options);
|
2019-08-05 15:52:47 +00:00
|
|
|
void RemoveBalloon();
|
2019-08-09 14:43:48 +00:00
|
|
|
void Focus();
|
2019-10-21 07:05:40 +00:00
|
|
|
void PopUpContextMenu(gin_helper::Arguments* args);
|
|
|
|
void SetContextMenu(gin_helper::ErrorThrower thrower,
|
|
|
|
v8::Local<v8::Value> arg);
|
2016-06-21 06:40:30 +00:00
|
|
|
gfx::Rect GetBounds();
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
private:
|
2019-10-21 07:05:40 +00:00
|
|
|
v8::Global<v8::Value> menu_;
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<TrayIcon> tray_icon_;
|
2014-05-30 15:57:54 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Tray);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-05-30 15:57:54 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_API_ATOM_API_TRAY_H_
|