Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5838)

Unified Diff: chrome/browser/gtk/status_icons/status_icon_gtk.cc

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/gtk/status_icons/status_icon_gtk.cc
===================================================================
--- chrome/browser/gtk/status_icons/status_icon_gtk.cc (revision 71352)
+++ chrome/browser/gtk/status_icons/status_icon_gtk.cc (working copy)
@@ -1,61 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/gtk/status_icons/status_icon_gtk.h"
-
-#include "base/string16.h"
-#include "base/logging.h"
-#include "base/utf_string_conversions.h"
-#include "chrome/browser/gtk/menu_gtk.h"
-#include "gfx/gtk_util.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-
-StatusIconGtk::StatusIconGtk() {
- icon_ = gtk_status_icon_new();
- gtk_status_icon_set_visible(icon_, TRUE);
-
- g_signal_connect(icon_, "activate",
- G_CALLBACK(OnClickThunk), this);
- g_signal_connect(icon_, "popup-menu",
- G_CALLBACK(OnPopupMenuThunk), this);
-}
-
-StatusIconGtk::~StatusIconGtk() {
- g_object_unref(icon_);
-}
-
-void StatusIconGtk::SetImage(const SkBitmap& image) {
- if (image.isNull())
- return;
-
- GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(&image);
- gtk_status_icon_set_from_pixbuf(icon_, pixbuf);
- g_object_unref(pixbuf);
-}
-
-void StatusIconGtk::SetPressedImage(const SkBitmap& image) {
- // Ignore pressed images, since the standard on Linux is to not highlight
- // pressed status icons.
-}
-
-void StatusIconGtk::SetToolTip(const string16& tool_tip) {
- gtk_status_icon_set_tooltip(icon_, UTF16ToUTF8(tool_tip).c_str());
-}
-
-void StatusIconGtk::OnClick(GtkWidget* widget) {
- DispatchClickEvent();
-}
-
-void StatusIconGtk::UpdatePlatformContextMenu(menus::MenuModel* model) {
- if (!model)
- menu_.reset();
- else
- menu_.reset(new MenuGtk(NULL, model));
-}
-
-void StatusIconGtk::OnPopupMenu(GtkWidget* widget, guint button, guint time) {
- // If we have a menu - display it.
- if (menu_.get())
- menu_->PopupAsContextForStatusIcon(time, button, icon_);
-}
« no previous file with comments | « chrome/browser/gtk/status_icons/status_icon_gtk.h ('k') | chrome/browser/gtk/status_icons/status_tray_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698