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

Unified Diff: chrome/browser/chromeos/status/feedback_menu_button.h

Issue 2135005: Integrated new bug icon in status bar (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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/chromeos/status/feedback_menu_button.h
===================================================================
--- chrome/browser/chromeos/status/feedback_menu_button.h (revision 0)
+++ chrome/browser/chromeos/status/feedback_menu_button.h (revision 0)
@@ -0,0 +1,132 @@
+// 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.
+
+#ifndef CHROME_BROWSER_CHROMEOS_STATUS_FEEDBACK_MENU_BUTTON_H_
+#define CHROME_BROWSER_CHROMEOS_STATUS_FEEDBACK_MENU_BUTTON_H_
+
+#include "app/menus/simple_menu_model.h"
+#include "chrome/browser/chromeos/status/status_area_button.h"
+#include "views/controls/menu/menu_2.h"
+#include "views/controls/menu/view_menu_delegate.h"
+
+class SkBitmap;
+
+namespace chromeos {
+
+class StatusAreaHost;
+
+// The language menu button in the status area.
+// This class will handle getting the IME/XKB status and populating the menu.
+class FeedbackMenuButton : public StatusAreaButton,
+ public views::ViewMenuDelegate,
+ public menus::MenuModel {
+ public:
+ explicit FeedbackMenuButton(StatusAreaHost* host);
+ virtual ~FeedbackMenuButton();
+
+ private:
+ // StatusAreaButton implementation.
+ virtual void DrawPressed(gfx::Canvas* canvas);
+ virtual void DrawIcon(gfx::Canvas* canvas);
+
+ // views::ViewMenuDelegate implementation.
+ virtual void RunMenu(views::View* source, const gfx::Point& pt);
+
+ // menus::MenuModel implementation.
+ virtual int GetItemCount() const { return 0; }
+ virtual bool HasIcons() const { return false; }
+ virtual menus::MenuModel::ItemType GetTypeAt(int index) const {
+ return menus::MenuModel::TYPE_COMMAND;
+ }
+ virtual int GetCommandIdAt(int index) const { return index; }
+ virtual string16 GetLabelAt(int index) const { return string16(); }
+ virtual bool IsLabelDynamicAt(int index) const { return true; }
+ virtual bool GetAcceleratorAt(int index,
+ menus::Accelerator* accelerator) const { return false; }
+ virtual bool IsItemCheckedAt(int index) const { return false; }
+ virtual int GetGroupIdAt(int index) const { return 0; }
+ virtual bool GetIconAt(int index, SkBitmap* icon) const { return false; }
+ virtual bool IsEnabledAt(int index) const { return false; }
+ virtual menus::MenuModel* GetSubmenuModelAt(int index) const { return NULL; }
+ virtual void HighlightChangedTo(int index) {}
+ virtual void ActivatedAt(int index) {}
+ virtual void MenuWillShow() {}
+
+ // This method will draw the |icon| in the appropriate place on the |canvas|.
+ void DrawFeedbackIcon(gfx::Canvas* canvas, SkBitmap icon);
+
+ StatusAreaHost* host_;
+
+ DISALLOW_COPY_AND_ASSIGN(FeedbackMenuButton);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_STATUS_FEEDBACK_MENU_BUTTON_H_
+// 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.
+
+#ifndef CHROME_BROWSER_CHROMEOS_STATUS_FEEDBACK_MENU_BUTTON_H_
+#define CHROME_BROWSER_CHROMEOS_STATUS_FEEDBACK_MENU_BUTTON_H_
+
+#include "app/menus/simple_menu_model.h"
+#include "chrome/browser/chromeos/status/status_area_button.h"
+#include "views/controls/menu/menu_2.h"
+#include "views/controls/menu/view_menu_delegate.h"
+
+class SkBitmap;
+
+namespace chromeos {
+
+class StatusAreaHost;
+
+// The language menu button in the status area.
+// This class will handle getting the IME/XKB status and populating the menu.
+class FeedbackMenuButton : public StatusAreaButton,
+ public views::ViewMenuDelegate,
+ public menus::MenuModel {
+ public:
+ explicit FeedbackMenuButton(StatusAreaHost* host);
+ virtual ~FeedbackMenuButton();
+
+ private:
+ // StatusAreaButton implementation.
+ virtual void DrawPressed(gfx::Canvas* canvas);
+ virtual void DrawIcon(gfx::Canvas* canvas);
+
+ // views::ViewMenuDelegate implementation.
+ virtual void RunMenu(views::View* source, const gfx::Point& pt);
+
+ // menus::MenuModel implementation.
+ virtual int GetItemCount() const { return 0; }
+ virtual bool HasIcons() const { return false; }
+ virtual menus::MenuModel::ItemType GetTypeAt(int index) const {
+ return menus::MenuModel::TYPE_COMMAND;
+ }
+ virtual int GetCommandIdAt(int index) const { return index; }
+ virtual string16 GetLabelAt(int index) const { return string16(); }
+ virtual bool IsLabelDynamicAt(int index) const { return true; }
+ virtual bool GetAcceleratorAt(int index,
+ menus::Accelerator* accelerator) const { return false; }
+ virtual bool IsItemCheckedAt(int index) const { return false; }
+ virtual int GetGroupIdAt(int index) const { return 0; }
+ virtual bool GetIconAt(int index, SkBitmap* icon) const { return false; }
+ virtual bool IsEnabledAt(int index) const { return false; }
+ virtual menus::MenuModel* GetSubmenuModelAt(int index) const { return NULL; }
+ virtual void HighlightChangedTo(int index) {}
+ virtual void ActivatedAt(int index) {}
+ virtual void MenuWillShow() {}
+
+ // This method will draw the |icon| in the appropriate place on the |canvas|.
+ void DrawFeedbackIcon(gfx::Canvas* canvas, SkBitmap icon);
+
+ StatusAreaHost* host_;
+
+ DISALLOW_COPY_AND_ASSIGN(FeedbackMenuButton);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_STATUS_FEEDBACK_MENU_BUTTON_H_
« no previous file with comments | « chrome/browser/chromeos/login/background_view.cc ('k') | chrome/browser/chromeos/status/feedback_menu_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698