| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/status_icons/desktop_notification_balloon.h" |
| 12 #include "chrome/browser/status_icons/status_icon.h" | 13 #include "chrome/browser/status_icons/status_icon.h" |
| 13 #include "ui/base/gtk/gtk_signal.h" | 14 #include "ui/base/gtk/gtk_signal.h" |
| 14 | 15 |
| 15 class MenuGtk; | 16 class MenuGtk; |
| 16 class SkBitmap; | 17 class SkBitmap; |
| 17 | 18 |
| 18 class StatusIconGtk : public StatusIcon { | 19 class StatusIconGtk : public StatusIcon { |
| 19 public: | 20 public: |
| 20 StatusIconGtk(); | 21 StatusIconGtk(); |
| 21 virtual ~StatusIconGtk(); | 22 virtual ~StatusIconGtk(); |
| 22 | 23 |
| 23 // Overridden from StatusIcon: | 24 // Overridden from StatusIcon: |
| 24 virtual void SetImage(const SkBitmap& image) OVERRIDE; | 25 virtual void SetImage(const SkBitmap& image) OVERRIDE; |
| 25 virtual void SetPressedImage(const SkBitmap& image) OVERRIDE; | 26 virtual void SetPressedImage(const SkBitmap& image) OVERRIDE; |
| 26 virtual void SetToolTip(const string16& tool_tip) OVERRIDE; | 27 virtual void SetToolTip(const string16& tool_tip) OVERRIDE; |
| 27 virtual void DisplayBalloon(const SkBitmap& icon, | 28 virtual void DisplayBalloon(const SkBitmap& icon, |
| 28 const string16& title, | 29 const string16& title, |
| 29 const string16& contents); | 30 const string16& contents) OVERRIDE; |
| 30 | 31 |
| 31 // Exposed for testing. | 32 // Exposed for testing. |
| 32 CHROMEGTK_CALLBACK_0(StatusIconGtk, void, OnClick); | 33 CHROMEGTK_CALLBACK_0(StatusIconGtk, void, OnClick); |
| 33 | 34 |
| 34 protected: | 35 protected: |
| 35 // Overridden from StatusIcon. | 36 // Overridden from StatusIcon. |
| 36 virtual void UpdatePlatformContextMenu(ui::MenuModel* menu); | 37 virtual void UpdatePlatformContextMenu(ui::MenuModel* menu); |
| 37 | 38 |
| 38 private: | 39 private: |
| 39 // Callback invoked when user right-clicks on the status icon. | 40 // Callback invoked when user right-clicks on the status icon. |
| 40 CHROMEGTK_CALLBACK_2(StatusIconGtk, void, OnPopupMenu, guint, guint); | 41 CHROMEGTK_CALLBACK_2(StatusIconGtk, void, OnPopupMenu, guint, guint); |
| 41 | 42 |
| 42 // The currently-displayed icon for the window. | 43 // The currently-displayed icon for the window. |
| 43 GtkStatusIcon* icon_; | 44 GtkStatusIcon* icon_; |
| 44 | 45 |
| 45 // The context menu for this icon (if any). | 46 // The context menu for this icon (if any). |
| 46 scoped_ptr<MenuGtk> menu_; | 47 scoped_ptr<MenuGtk> menu_; |
| 47 | 48 |
| 49 // Notification balloon. |
| 50 DesktopNotificationBalloon notification_; |
| 51 |
| 48 DISALLOW_COPY_AND_ASSIGN(StatusIconGtk); | 52 DISALLOW_COPY_AND_ASSIGN(StatusIconGtk); |
| 49 }; | 53 }; |
| 50 | 54 |
| 51 #endif // CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ | 55 #endif // CHROME_BROWSER_UI_GTK_STATUS_ICONS_STATUS_ICON_GTK_H_ |
| OLD | NEW |