2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-05-30 10:31:27 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#ifndef SHELL_BROWSER_UI_TRAY_ICON_H_
|
|
|
|
#define SHELL_BROWSER_UI_TRAY_ICON_H_
|
2014-05-30 10:31:27 +08:00
|
|
|
|
|
|
|
#include <string>
|
2015-07-19 12:12:28 +08:00
|
|
|
#include <vector>
|
2014-05-30 10:31:27 +08:00
|
|
|
|
2014-06-02 11:08:29 +08:00
|
|
|
#include "base/observer_list.h"
|
2020-02-04 12:19:40 -08:00
|
|
|
#include "shell/browser/ui/electron_menu_model.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/ui/tray_icon_observer.h"
|
2020-01-30 21:37:03 -08:00
|
|
|
#include "shell/common/gin_converters/guid_converter.h"
|
2015-05-04 11:43:05 +08:00
|
|
|
#include "ui/gfx/geometry/rect.h"
|
2014-05-30 10:31:27 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2014-05-30 10:31:27 +08:00
|
|
|
|
|
|
|
class TrayIcon {
|
|
|
|
public:
|
2021-06-03 01:05:04 -07:00
|
|
|
static TrayIcon* Create(absl::optional<UUID> guid);
|
2014-05-30 10:31:27 +08:00
|
|
|
|
2016-05-20 16:55:22 +09:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
using ImageType = HICON;
|
|
|
|
#else
|
|
|
|
using ImageType = const gfx::Image&;
|
|
|
|
#endif
|
|
|
|
|
2014-05-30 23:57:54 +08:00
|
|
|
virtual ~TrayIcon();
|
|
|
|
|
2014-05-30 10:31:27 +08:00
|
|
|
// Sets the image associated with this status icon.
|
2016-05-20 16:55:22 +09:00
|
|
|
virtual void SetImage(ImageType image) = 0;
|
2014-05-30 10:31:27 +08:00
|
|
|
|
|
|
|
// Sets the image associated with this status icon when pressed.
|
2016-05-20 16:55:22 +09:00
|
|
|
virtual void SetPressedImage(ImageType image);
|
2014-05-30 10:31:27 +08:00
|
|
|
|
|
|
|
// Sets the hover text for this status icon. This is also used as the label
|
|
|
|
// for the menu item which is created as a replacement for the status icon
|
|
|
|
// click action on platforms that do not support custom click actions for the
|
|
|
|
// status icon (e.g. Ubuntu Unity).
|
|
|
|
virtual void SetToolTip(const std::string& tool_tip) = 0;
|
|
|
|
|
2020-08-12 11:33:58 -07:00
|
|
|
#if defined(OS_MAC)
|
2019-03-18 12:40:34 -07:00
|
|
|
// Set/Get flag determining whether to ignore double click events.
|
2018-05-03 00:43:46 -07:00
|
|
|
virtual void SetIgnoreDoubleClickEvents(bool ignore) = 0;
|
|
|
|
virtual bool GetIgnoreDoubleClickEvents() = 0;
|
2019-03-18 12:40:34 -07:00
|
|
|
|
2020-08-23 14:39:29 -07:00
|
|
|
struct TitleOptions {
|
|
|
|
std::string font_type;
|
|
|
|
};
|
|
|
|
|
2019-03-18 12:40:34 -07:00
|
|
|
// Set/Get title displayed next to status icon in the status bar.
|
2020-08-23 14:39:29 -07:00
|
|
|
virtual void SetTitle(const std::string& title,
|
|
|
|
const TitleOptions& options) = 0;
|
2019-03-18 12:40:34 -07:00
|
|
|
virtual std::string GetTitle() = 0;
|
2018-05-03 00:43:46 -07:00
|
|
|
#endif
|
2018-04-01 18:07:26 -07:00
|
|
|
|
2020-10-27 18:51:45 +01:00
|
|
|
enum class IconType { kNone, kInfo, kWarning, kError, kCustom };
|
2019-08-08 23:43:33 +02:00
|
|
|
|
|
|
|
struct BalloonOptions {
|
2020-10-27 18:51:45 +01:00
|
|
|
IconType icon_type = IconType::kCustom;
|
2019-08-08 23:43:33 +02:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
HICON icon = nullptr;
|
|
|
|
#else
|
|
|
|
gfx::Image icon;
|
|
|
|
#endif
|
2021-03-16 12:18:45 -04:00
|
|
|
std::u16string title;
|
|
|
|
std::u16string content;
|
2019-08-08 23:43:33 +02:00
|
|
|
bool large_icon = true;
|
|
|
|
bool no_sound = false;
|
|
|
|
bool respect_quiet_time = false;
|
|
|
|
|
|
|
|
BalloonOptions();
|
|
|
|
};
|
|
|
|
|
2014-11-28 18:30:43 +08:00
|
|
|
// Displays a notification balloon with the specified contents.
|
|
|
|
// Depending on the platform it might not appear by the icon tray.
|
2019-08-08 23:43:33 +02:00
|
|
|
virtual void DisplayBalloon(const BalloonOptions& options);
|
2014-11-28 18:30:43 +08:00
|
|
|
|
2019-08-05 17:52:47 +02:00
|
|
|
// Removes the notification balloon.
|
|
|
|
virtual void RemoveBalloon();
|
|
|
|
|
2019-08-09 16:43:48 +02:00
|
|
|
// Returns focus to the taskbar notification area.
|
|
|
|
virtual void Focus();
|
|
|
|
|
2015-12-02 18:43:11 +08:00
|
|
|
// Popups the menu.
|
|
|
|
virtual void PopUpContextMenu(const gfx::Point& pos,
|
2020-02-04 12:19:40 -08:00
|
|
|
ElectronMenuModel* menu_model);
|
2015-07-16 10:50:53 +08:00
|
|
|
|
2020-01-22 15:25:17 -08:00
|
|
|
virtual void CloseContextMenu();
|
|
|
|
|
2014-05-30 10:31:27 +08:00
|
|
|
// Set the context menu for this icon.
|
2020-02-04 12:19:40 -08:00
|
|
|
virtual void SetContextMenu(ElectronMenuModel* menu_model) = 0;
|
2014-05-30 10:31:27 +08:00
|
|
|
|
2016-06-21 15:40:30 +09:00
|
|
|
// Returns the bounds of tray icon.
|
|
|
|
virtual gfx::Rect GetBounds();
|
|
|
|
|
2014-06-02 11:08:29 +08:00
|
|
|
void AddObserver(TrayIconObserver* obs) { observers_.AddObserver(obs); }
|
|
|
|
void RemoveObserver(TrayIconObserver* obs) { observers_.RemoveObserver(obs); }
|
2016-06-21 15:40:30 +09:00
|
|
|
|
2017-10-05 11:49:26 +09:00
|
|
|
void NotifyClicked(const gfx::Rect& = gfx::Rect(),
|
|
|
|
const gfx::Point& location = gfx::Point(),
|
|
|
|
int modifiers = 0);
|
2015-07-27 03:15:51 -07:00
|
|
|
void NotifyDoubleClicked(const gfx::Rect& = gfx::Rect(), int modifiers = 0);
|
2014-11-28 19:42:57 +08:00
|
|
|
void NotifyBalloonShow();
|
2014-11-28 18:50:31 +08:00
|
|
|
void NotifyBalloonClicked();
|
2014-11-28 19:42:57 +08:00
|
|
|
void NotifyBalloonClosed();
|
2015-07-27 03:15:51 -07:00
|
|
|
void NotifyRightClicked(const gfx::Rect& bounds = gfx::Rect(),
|
2015-07-29 12:01:27 +08:00
|
|
|
int modifiers = 0);
|
2015-11-10 10:02:50 -06:00
|
|
|
void NotifyDrop();
|
2015-10-18 00:32:13 -05:00
|
|
|
void NotifyDropFiles(const std::vector<std::string>& files);
|
2016-07-14 18:21:39 +01:00
|
|
|
void NotifyDropText(const std::string& text);
|
2015-11-05 19:02:24 -06:00
|
|
|
void NotifyDragEntered();
|
|
|
|
void NotifyDragExited();
|
2015-11-10 10:02:50 -06:00
|
|
|
void NotifyDragEnded();
|
2020-01-17 16:28:34 +00:00
|
|
|
void NotifyMouseUp(const gfx::Point& location = gfx::Point(),
|
|
|
|
int modifiers = 0);
|
|
|
|
void NotifyMouseDown(const gfx::Point& location = gfx::Point(),
|
|
|
|
int modifiers = 0);
|
2017-06-28 12:09:12 -07:00
|
|
|
void NotifyMouseEntered(const gfx::Point& location = gfx::Point(),
|
|
|
|
int modifiers = 0);
|
|
|
|
void NotifyMouseExited(const gfx::Point& location = gfx::Point(),
|
|
|
|
int modifiers = 0);
|
2017-08-26 14:04:58 -04:00
|
|
|
void NotifyMouseMoved(const gfx::Point& location = gfx::Point(),
|
2018-04-17 21:44:10 -04:00
|
|
|
int modifiers = 0);
|
2014-06-02 11:08:29 +08:00
|
|
|
|
2014-05-30 10:31:27 +08:00
|
|
|
protected:
|
|
|
|
TrayIcon();
|
|
|
|
|
|
|
|
private:
|
2015-09-02 15:16:49 +08:00
|
|
|
base::ObserverList<TrayIconObserver> observers_;
|
2014-06-02 11:08:29 +08:00
|
|
|
|
2014-05-30 10:31:27 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(TrayIcon);
|
|
|
|
};
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2014-05-30 10:31:27 +08:00
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#endif // SHELL_BROWSER_UI_TRAY_ICON_H_
|