70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
// Copyright (c) 2014 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/browser/ui/tray_icon_gtk.h"
|
|
|
|
#include "atom/browser/browser.h"
|
|
#include "base/strings/stringprintf.h"
|
|
#include "base/strings/utf_string_conversions.h"
|
|
#include "chrome/browser/ui/libgtk2ui/app_indicator_icon.h"
|
|
#include "chrome/browser/ui/libgtk2ui/gtk2_status_icon.h"
|
|
#include "ui/gfx/image/image.h"
|
|
|
|
namespace atom {
|
|
|
|
namespace {
|
|
|
|
// Number of app indicators used (used as part of app-indicator id).
|
|
int indicators_count;
|
|
|
|
} // namespace
|
|
|
|
TrayIconGtk::TrayIconGtk() {
|
|
}
|
|
|
|
TrayIconGtk::~TrayIconGtk() {
|
|
}
|
|
|
|
void TrayIconGtk::SetImage(const gfx::Image& image) {
|
|
if (icon_) {
|
|
icon_->SetImage(image.AsImageSkia());
|
|
return;
|
|
}
|
|
|
|
base::string16 empty;
|
|
if (libgtk2ui::AppIndicatorIcon::CouldOpen()) {
|
|
++indicators_count;
|
|
icon_.reset(new libgtk2ui::AppIndicatorIcon(
|
|
base::StringPrintf(
|
|
"%s%d", Browser::Get()->GetName().c_str(), indicators_count),
|
|
image.AsImageSkia(),
|
|
empty));
|
|
} else {
|
|
icon_.reset(new libgtk2ui::Gtk2StatusIcon(image.AsImageSkia(), empty));
|
|
}
|
|
icon_->set_delegate(this);
|
|
}
|
|
|
|
void TrayIconGtk::SetToolTip(const std::string& tool_tip) {
|
|
icon_->SetToolTip(base::UTF8ToUTF16(tool_tip));
|
|
}
|
|
|
|
void TrayIconGtk::SetContextMenu(AtomMenuModel* menu_model) {
|
|
icon_->UpdatePlatformContextMenu(menu_model);
|
|
}
|
|
|
|
void TrayIconGtk::OnClick() {
|
|
NotifyClicked();
|
|
}
|
|
|
|
bool TrayIconGtk::HasClickAction() {
|
|
return false;
|
|
}
|
|
|
|
// static
|
|
TrayIcon* TrayIcon::Create() {
|
|
return new TrayIconGtk;
|
|
}
|
|
|
|
} // namespace atom
|