electron/atom/browser/api/atom_api_tray.h

85 lines
2.4 KiB
C
Raw Normal View History

// 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_
2016-07-04 15:08:55 +09:00
#include <memory>
#include <string>
#include <vector>
#include "atom/browser/api/trackable_object.h"
#include "atom/browser/ui/tray_icon.h"
2014-06-02 11:08:29 +08:00
#include "atom/browser/ui/tray_icon_observer.h"
#include "native_mate/handle.h"
2014-05-30 23:57:54 +08:00
namespace gfx {
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;
class NativeImage;
2014-05-30 23:57:54 +08:00
class Tray : public mate::TrackableObject<Tray>,
2014-06-02 11:08:29 +08:00
public TrayIconObserver {
2014-05-30 23:57:54 +08:00
public:
static mate::WrappableBase* New(mate::Handle<NativeImage> image,
mate::Arguments* args);
2014-05-30 23:57:54 +08:00
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype);
2014-05-30 23:57:54 +08:00
protected:
Tray(v8::Isolate* isolate, v8::Local<v8::Object> wrapper,
mate::Handle<NativeImage> image);
~Tray() override;
2014-05-30 23:57:54 +08:00
// TrayIconObserver:
void OnClicked(const gfx::Rect& bounds, int modifiers) override;
void OnDoubleClicked(const gfx::Rect& bounds, int modifiers) override;
2015-07-29 14:25:12 +08:00
void OnRightClicked(const gfx::Rect& bounds, int modifiers) override;
void OnBalloonShow() override;
void OnBalloonClicked() override;
void OnBalloonClosed() override;
2015-11-10 10:02:50 -06:00
void OnDrop() override;
void OnDropFiles(const std::vector<std::string>& files) override;
2016-07-14 18:21:39 +01:00
void OnDropText(const std::string& text) override;
void OnDragEntered() override;
void OnDragExited() override;
2015-11-10 10:02:50 -06:00
void OnDragEnded() override;
2014-06-02 11:08:29 +08: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);
void SetHighlightMode(TrayIcon::HighlightMode mode);
2014-11-28 18:39:30 +08:00
void DisplayBalloon(mate::Arguments* args, const mate::Dictionary& options);
2015-08-10 13:00:15 +08:00
void PopUpContextMenu(mate::Arguments* args);
void SetContextMenu(v8::Isolate* isolate, mate::Handle<Menu> menu);
2016-06-21 15:40:30 +09:00
gfx::Rect GetBounds();
2014-05-30 23:57:54 +08:00
private:
v8::Global<v8::Object> menu_;
2016-05-23 10:59:39 +09:00
std::unique_ptr<TrayIcon> tray_icon_;
2014-05-30 23:57:54 +08:00
DISALLOW_COPY_AND_ASSIGN(Tray);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_TRAY_H_