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.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/ui/tray_icon_gtk.h"
|
2014-07-10 05:06:41 +00:00
|
|
|
|
2016-06-20 08:35:45 +00:00
|
|
|
#include "base/strings/stringprintf.h"
|
2014-07-10 05:06:41 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/browser.h"
|
2020-06-03 00:00:20 +00:00
|
|
|
#include "shell/browser/ui/gtk/status_icon.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/application_info.h"
|
2015-01-03 03:17:02 +00:00
|
|
|
#include "ui/gfx/image/image.h"
|
2020-01-28 15:17:45 +00:00
|
|
|
#include "ui/gfx/image/image_skia_operations.h"
|
2014-05-30 02:31:27 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2014-05-30 02:31:27 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
TrayIconGtk::TrayIconGtk() = default;
|
2014-07-10 05:06:41 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
TrayIconGtk::~TrayIconGtk() = default;
|
2014-07-10 05:06:41 +00:00
|
|
|
|
2015-01-03 02:43:56 +00:00
|
|
|
void TrayIconGtk::SetImage(const gfx::Image& image) {
|
2020-06-03 00:00:20 +00:00
|
|
|
image_ = image.AsImageSkia();
|
2020-01-28 15:17:45 +00:00
|
|
|
|
2014-07-10 05:06:41 +00:00
|
|
|
if (icon_) {
|
2019-10-18 19:57:34 +00:00
|
|
|
icon_->SetIcon(image_);
|
2014-07-10 05:06:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-18 19:57:34 +00:00
|
|
|
tool_tip_ = base::UTF8ToUTF16(GetApplicationName());
|
|
|
|
|
2020-06-03 00:00:20 +00:00
|
|
|
icon_ = gtkui::CreateLinuxStatusIcon(image_, tool_tip_,
|
|
|
|
Browser::Get()->GetName().c_str());
|
2019-07-03 01:22:09 +00:00
|
|
|
icon_->SetDelegate(this);
|
2014-07-10 05:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrayIconGtk::SetToolTip(const std::string& tool_tip) {
|
2019-10-18 19:57:34 +00:00
|
|
|
tool_tip_ = base::UTF8ToUTF16(tool_tip);
|
|
|
|
icon_->SetToolTip(tool_tip_);
|
2014-07-10 05:06:41 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void TrayIconGtk::SetContextMenu(ElectronMenuModel* menu_model) {
|
2019-10-18 19:57:34 +00:00
|
|
|
menu_model_ = menu_model;
|
2020-01-26 21:02:33 +00:00
|
|
|
icon_->UpdatePlatformContextMenu(menu_model_);
|
2014-07-10 05:06:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 01:22:09 +00:00
|
|
|
const gfx::ImageSkia& TrayIconGtk::GetImage() const {
|
2019-10-18 19:57:34 +00:00
|
|
|
return image_;
|
2019-07-03 01:22:09 +00:00
|
|
|
}
|
|
|
|
|
2021-03-16 16:18:45 +00:00
|
|
|
const std::u16string& TrayIconGtk::GetToolTip() const {
|
2019-10-18 19:57:34 +00:00
|
|
|
return tool_tip_;
|
2019-07-03 01:22:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ui::MenuModel* TrayIconGtk::GetMenuModel() const {
|
2019-10-18 19:57:34 +00:00
|
|
|
return menu_model_;
|
2019-07-03 01:22:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrayIconGtk::OnImplInitializationFailed() {}
|
|
|
|
|
2014-07-10 05:06:41 +00:00
|
|
|
void TrayIconGtk::OnClick() {
|
2015-05-21 07:22:52 +00:00
|
|
|
NotifyClicked();
|
2014-07-10 05:06:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TrayIconGtk::HasClickAction() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-30 15:57:54 +00:00
|
|
|
// static
|
2021-06-03 08:05:04 +00:00
|
|
|
TrayIcon* TrayIcon::Create(absl::optional<UUID> guid) {
|
2014-07-10 05:06:41 +00:00
|
|
|
return new TrayIconGtk;
|
2014-05-30 15:57:54 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|