electron/atom/browser/api/atom_api_tray.h

72 lines
1.7 KiB
C
Raw Normal View History

// 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.
#ifndef ATOM_BROWSER_API_ATOM_API_TRAY_H_
#define ATOM_BROWSER_API_ATOM_API_TRAY_H_
#include <string>
2014-05-30 15:57:54 +00:00
#include "atom/browser/api/event_emitter.h"
2014-06-02 03:08:29 +00:00
#include "atom/browser/ui/tray_icon_observer.h"
2014-05-30 15:57:54 +00:00
#include "base/memory/scoped_ptr.h"
namespace gfx {
class Image;
2014-05-30 15:57:54 +00:00
}
2014-11-28 10:06:51 +00:00
namespace mate {
class Arguments;
2014-11-28 10:39:30 +00:00
class Dictionary;
2014-11-28 10:06:51 +00:00
}
2014-05-30 15:57:54 +00:00
namespace atom {
class TrayIcon;
namespace api {
class Menu;
2014-06-02 03:08:29 +00:00
class Tray : public mate::EventEmitter,
public TrayIconObserver {
2014-05-30 15:57:54 +00:00
public:
static mate::Wrappable* New(const gfx::Image& image);
2014-05-30 15:57:54 +00:00
static void BuildPrototype(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::ObjectTemplate> prototype);
2014-05-30 15:57:54 +00:00
protected:
explicit Tray(const gfx::Image& image);
2014-05-30 15:57:54 +00:00
virtual ~Tray();
// TrayIconObserver:
2015-05-04 03:43:05 +00:00
void OnClicked(const gfx::Rect&) override;
void OnDoubleClicked() override;
void OnBalloonShow() override;
void OnBalloonClicked() override;
void OnBalloonClosed() override;
2014-06-02 03:08:29 +00:00
2014-11-28 10:06:51 +00:00
void Destroy();
void SetImage(mate::Arguments* args, const gfx::Image& image);
void SetPressedImage(mate::Arguments* args, const gfx::Image& image);
2014-11-28 10:06:51 +00: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 10:39:30 +00:00
void DisplayBalloon(mate::Arguments* args, const mate::Dictionary& options);
2014-11-28 10:06:51 +00:00
void SetContextMenu(mate::Arguments* args, Menu* menu);
2014-05-30 15:57:54 +00:00
private:
2014-11-28 10:06:51 +00:00
bool CheckTrayLife(mate::Arguments* args);
2014-05-30 15:57:54 +00:00
scoped_ptr<TrayIcon> tray_icon_;
DISALLOW_COPY_AND_ASSIGN(Tray);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_TRAY_H_