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