2014-10-31 21:17:05 +03:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-05-30 19:57:54 +04: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_
|
|
|
|
|
2016-07-04 09:08:55 +03:00
|
|
|
#include <memory>
|
2014-06-01 06:20:06 +04:00
|
|
|
#include <string>
|
2015-07-19 07:12:28 +03:00
|
|
|
#include <vector>
|
2014-06-01 06:20:06 +04:00
|
|
|
|
2015-11-04 13:21:03 +03:00
|
|
|
#include "atom/browser/api/trackable_object.h"
|
2016-07-26 23:51:43 +03:00
|
|
|
#include "atom/browser/ui/tray_icon.h"
|
2014-06-02 07:08:29 +04:00
|
|
|
#include "atom/browser/ui/tray_icon_observer.h"
|
2016-05-20 10:14:40 +03:00
|
|
|
#include "native_mate/handle.h"
|
2014-05-30 19:57:54 +04:00
|
|
|
|
|
|
|
namespace gfx {
|
2015-01-03 05:43:56 +03:00
|
|
|
class Image;
|
2014-05-30 19:57:54 +04:00
|
|
|
}
|
|
|
|
|
2014-11-28 13:06:51 +03:00
|
|
|
namespace mate {
|
|
|
|
class Arguments;
|
2014-11-28 13:39:30 +03:00
|
|
|
class Dictionary;
|
2018-04-18 04:44:10 +03:00
|
|
|
} // namespace mate
|
2014-11-28 13:06:51 +03:00
|
|
|
|
2014-05-30 19:57:54 +04:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class TrayIcon;
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
class Menu;
|
2016-05-20 10:14:40 +03:00
|
|
|
class NativeImage;
|
2014-05-30 19:57:54 +04:00
|
|
|
|
2018-04-18 04:44:10 +03:00
|
|
|
class Tray : public mate::TrackableObject<Tray>, public TrayIconObserver {
|
2014-05-30 19:57:54 +04:00
|
|
|
public:
|
2016-08-02 09:15:40 +03:00
|
|
|
static mate::WrappableBase* New(mate::Handle<NativeImage> image,
|
|
|
|
mate::Arguments* args);
|
2014-05-30 19:57:54 +04:00
|
|
|
|
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 12:08:12 +03:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2014-05-30 19:57:54 +04:00
|
|
|
|
|
|
|
protected:
|
2018-04-18 04:44:10 +03:00
|
|
|
Tray(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> wrapper,
|
2016-08-02 09:15:40 +03:00
|
|
|
mate::Handle<NativeImage> image);
|
2015-11-04 13:21:03 +03:00
|
|
|
~Tray() override;
|
2014-05-30 19:57:54 +04:00
|
|
|
|
2014-11-28 12:54:38 +03:00
|
|
|
// TrayIconObserver:
|
2017-10-05 05:49:26 +03:00
|
|
|
void OnClicked(const gfx::Rect& bounds,
|
|
|
|
const gfx::Point& location,
|
|
|
|
int modifiers) override;
|
2015-07-27 13:15:51 +03:00
|
|
|
void OnDoubleClicked(const gfx::Rect& bounds, int modifiers) override;
|
2015-07-29 09:25:12 +03:00
|
|
|
void OnRightClicked(const gfx::Rect& bounds, int modifiers) override;
|
2014-11-28 14:42:57 +03:00
|
|
|
void OnBalloonShow() override;
|
2014-11-28 13:50:31 +03:00
|
|
|
void OnBalloonClicked() override;
|
2014-11-28 14:42:57 +03:00
|
|
|
void OnBalloonClosed() override;
|
2015-11-10 19:02:50 +03:00
|
|
|
void OnDrop() override;
|
2015-07-19 07:12:28 +03:00
|
|
|
void OnDropFiles(const std::vector<std::string>& files) override;
|
2016-07-14 20:21:39 +03:00
|
|
|
void OnDropText(const std::string& text) override;
|
2015-11-06 03:45:43 +03:00
|
|
|
void OnDragEntered() override;
|
|
|
|
void OnDragExited() override;
|
2015-11-10 19:02:50 +03:00
|
|
|
void OnDragEnded() override;
|
2017-06-28 22:09:12 +03:00
|
|
|
void OnMouseEntered(const gfx::Point& location, int modifiers) override;
|
|
|
|
void OnMouseExited(const gfx::Point& location, int modifiers) override;
|
2017-08-26 21:04:58 +03:00
|
|
|
void OnMouseMoved(const gfx::Point& location, int modifiers) override;
|
2014-06-02 07:08:29 +04:00
|
|
|
|
2016-05-20 10:14:40 +03:00
|
|
|
void SetImage(v8::Isolate* isolate, mate::Handle<NativeImage> image);
|
|
|
|
void SetPressedImage(v8::Isolate* isolate, mate::Handle<NativeImage> image);
|
|
|
|
void SetToolTip(const std::string& tool_tip);
|
|
|
|
void SetTitle(const std::string& title);
|
2016-07-26 23:51:43 +03:00
|
|
|
void SetHighlightMode(TrayIcon::HighlightMode mode);
|
2018-04-02 04:07:26 +03:00
|
|
|
void SetIgnoreDoubleClickEvents(bool ignore);
|
2018-05-03 10:43:46 +03:00
|
|
|
bool GetIgnoreDoubleClickEvents();
|
2014-11-28 13:39:30 +03:00
|
|
|
void DisplayBalloon(mate::Arguments* args, const mate::Dictionary& options);
|
2015-08-10 08:00:15 +03:00
|
|
|
void PopUpContextMenu(mate::Arguments* args);
|
2016-05-20 10:18:38 +03:00
|
|
|
void SetContextMenu(v8::Isolate* isolate, mate::Handle<Menu> menu);
|
2016-06-21 09:40:30 +03:00
|
|
|
gfx::Rect GetBounds();
|
2014-05-30 19:57:54 +04:00
|
|
|
|
|
|
|
private:
|
2016-05-20 10:18:38 +03:00
|
|
|
v8::Global<v8::Object> menu_;
|
2016-05-23 04:59:39 +03:00
|
|
|
std::unique_ptr<TrayIcon> tray_icon_;
|
2014-05-30 19:57:54 +04:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Tray);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_TRAY_H_
|