2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-06-03 03:25:09 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_UI_WIN_NOTIFY_ICON_H_
|
|
|
|
#define SHELL_BROWSER_UI_WIN_NOTIFY_ICON_H_
|
2014-06-03 03:25:09 +00:00
|
|
|
|
2016-08-26 22:43:40 +00:00
|
|
|
#include <windows.h> // windows.h must be included first
|
|
|
|
|
2014-06-03 03:25:09 +00:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2014-06-03 03:25:09 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "base/macros.h"
|
2018-10-29 18:08:47 +00:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2016-05-20 13:28:07 +00:00
|
|
|
#include "base/win/scoped_gdi_object.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/ui/tray_icon.h"
|
2014-06-03 03:25:09 +00:00
|
|
|
|
|
|
|
namespace gfx {
|
|
|
|
class Point;
|
|
|
|
}
|
|
|
|
|
2017-08-01 10:15:49 +00:00
|
|
|
namespace views {
|
|
|
|
class MenuRunner;
|
2018-10-29 18:08:47 +00:00
|
|
|
class Widget;
|
|
|
|
} // namespace views
|
2017-08-01 10:15:49 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2014-06-03 03:25:09 +00:00
|
|
|
|
|
|
|
class NotifyIconHost;
|
|
|
|
|
|
|
|
class NotifyIcon : public TrayIcon {
|
|
|
|
public:
|
|
|
|
// Constructor which provides this icon's unique ID and messaging window.
|
|
|
|
NotifyIcon(NotifyIconHost* host, UINT id, HWND window, UINT message);
|
2018-06-25 20:30:00 +00:00
|
|
|
~NotifyIcon() override;
|
2014-06-03 03:25:09 +00:00
|
|
|
|
|
|
|
// Handles a click event from the user - if |left_button_click| is true and
|
|
|
|
// there is a registered observer, passes the click event to the observer,
|
|
|
|
// otherwise displays the context menu if there is one.
|
2015-12-02 11:58:10 +00:00
|
|
|
void HandleClickEvent(int modifiers,
|
2015-07-29 04:36:01 +00:00
|
|
|
bool left_button_click,
|
|
|
|
bool double_button_click);
|
2014-06-03 03:25:09 +00:00
|
|
|
|
2019-07-18 17:52:15 +00:00
|
|
|
// Handles a mouse move event from the user.
|
|
|
|
void HandleMouseMoveEvent(int modifiers);
|
|
|
|
|
2014-06-03 03:25:09 +00:00
|
|
|
// Re-creates the status tray icon now after the taskbar has been created.
|
|
|
|
void ResetIcon();
|
|
|
|
|
|
|
|
UINT icon_id() const { return icon_id_; }
|
|
|
|
HWND window() const { return window_; }
|
|
|
|
UINT message_id() const { return message_id_; }
|
|
|
|
|
|
|
|
// Overridden from TrayIcon:
|
2016-05-20 07:55:22 +00:00
|
|
|
void SetImage(HICON image) override;
|
|
|
|
void SetPressedImage(HICON image) override;
|
2014-11-28 10:18:12 +00:00
|
|
|
void SetToolTip(const std::string& tool_tip) override;
|
2019-08-08 21:43:33 +00:00
|
|
|
void DisplayBalloon(const BalloonOptions& options) override;
|
2019-08-05 15:52:47 +00:00
|
|
|
void RemoveBalloon() override;
|
2015-12-02 10:43:11 +00:00
|
|
|
void PopUpContextMenu(const gfx::Point& pos,
|
2016-07-06 23:04:18 +00:00
|
|
|
AtomMenuModel* menu_model) override;
|
|
|
|
void SetContextMenu(AtomMenuModel* menu_model) override;
|
2016-06-21 06:49:22 +00:00
|
|
|
gfx::Rect GetBounds() override;
|
2014-06-03 03:25:09 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void InitIconData(NOTIFYICONDATA* icon_data);
|
2018-10-29 18:08:47 +00:00
|
|
|
void OnContextMenuClosed();
|
2014-06-03 03:25:09 +00:00
|
|
|
|
|
|
|
// The tray that owns us. Weak.
|
|
|
|
NotifyIconHost* host_;
|
|
|
|
|
|
|
|
// The unique ID corresponding to this icon.
|
|
|
|
UINT icon_id_;
|
|
|
|
|
|
|
|
// Window used for processing messages from this icon.
|
|
|
|
HWND window_;
|
|
|
|
|
|
|
|
// The message identifier used for status icon messages.
|
|
|
|
UINT message_id_;
|
|
|
|
|
|
|
|
// The currently-displayed icon for the window.
|
2016-05-20 13:28:07 +00:00
|
|
|
base::win::ScopedHICON icon_;
|
2014-11-28 10:30:43 +00:00
|
|
|
|
2014-06-03 03:52:57 +00:00
|
|
|
// The context menu.
|
2018-05-21 22:18:38 +00:00
|
|
|
AtomMenuModel* menu_model_ = nullptr;
|
2015-07-24 10:30:23 +00:00
|
|
|
|
2017-08-01 10:15:49 +00:00
|
|
|
// Context menu associated with this icon (if any).
|
|
|
|
std::unique_ptr<views::MenuRunner> menu_runner_;
|
|
|
|
|
2018-10-29 18:08:47 +00:00
|
|
|
// Temporary widget for the context menu, needed for keyboard event capture.
|
|
|
|
std::unique_ptr<views::Widget> widget_;
|
|
|
|
|
|
|
|
// WeakPtrFactory for CloseClosure safety.
|
|
|
|
base::WeakPtrFactory<NotifyIcon> weak_factory_;
|
|
|
|
|
2014-06-03 03:25:09 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(NotifyIcon);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-06-03 03:25:09 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_UI_WIN_NOTIFY_ICON_H_
|