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

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

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.cc
===================================================================
--- chrome/browser/chromeos/status/feedback_menu_button.cc (revision 0)
+++ chrome/browser/chromeos/status/feedback_menu_button.cc (revision 0)
@@ -0,0 +1,113 @@
+// Copyright (c) 2009 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/chromeos/status/feedback_menu_button.h"
+
+#include <string>
+
+#include "app/resource_bundle.h"
+#include "chrome/app/chrome_dll_resource.h"
+#include "chrome/browser/chromeos/status/status_area_host.h"
+#include "gfx/canvas.h"
+#include "grit/generated_resources.h"
+#include "grit/theme_resources.h"
+
+namespace chromeos {
+
+////////////////////////////////////////////////////////////////////////////////
+// LanguageMenuButton
+
+FeedbackMenuButton::FeedbackMenuButton(StatusAreaHost* host)
+ : StatusAreaButton(this),
+ host_(host) {
+ DCHECK(host_);
+}
+
+FeedbackMenuButton::~FeedbackMenuButton() {
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// FeedbackMenuButton, StatusAreaButton implementation:
+
+void FeedbackMenuButton::DrawPressed(gfx::Canvas* canvas) {
+ DrawFeedbackIcon(canvas, *ResourceBundle::GetSharedInstance().
+ GetBitmapNamed(IDR_STATUSBAR_FEEDBACK_PRESSED));
+}
+
+void FeedbackMenuButton::DrawIcon(gfx::Canvas* canvas) {
+ DrawFeedbackIcon(canvas, *ResourceBundle::GetSharedInstance().
+ GetBitmapNamed(IDR_STATUSBAR_FEEDBACK));
+}
+
+void FeedbackMenuButton::DrawFeedbackIcon(gfx::Canvas* canvas, SkBitmap icon) {
+ // Draw the battery icon 5 pixels down to center it.
+ static const int kIconVerticalPadding = 5;
+ canvas->DrawBitmapInt(icon, 0, kIconVerticalPadding);
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// PowerMenuButton, views::ViewMenuDelegate implementation:
+
+void FeedbackMenuButton::RunMenu(views::View* source, const gfx::Point& pt) {
+ DCHECK(host_);
+ host_->ExecuteBrowserCommand(IDC_REPORT_BUG);
+}
+
+} // namespace chromeos
+// Copyright (c) 2009 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/chromeos/status/feedback_menu_button.h"
+
+#include <string>
+
+#include "app/resource_bundle.h"
+#include "chrome/app/chrome_dll_resource.h"
+#include "chrome/browser/chromeos/status/status_area_host.h"
+#include "gfx/canvas.h"
+#include "grit/generated_resources.h"
+#include "grit/theme_resources.h"
+
+namespace chromeos {
+
+////////////////////////////////////////////////////////////////////////////////
+// LanguageMenuButton
+
+FeedbackMenuButton::FeedbackMenuButton(StatusAreaHost* host)
+ : StatusAreaButton(this),
+ host_(host) {
+ DCHECK(host_);
+}
+
+FeedbackMenuButton::~FeedbackMenuButton() {
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// FeedbackMenuButton, StatusAreaButton implementation:
+
+void FeedbackMenuButton::DrawPressed(gfx::Canvas* canvas) {
+ DrawFeedbackIcon(canvas, *ResourceBundle::GetSharedInstance().
+ GetBitmapNamed(IDR_STATUSBAR_FEEDBACK_PRESSED));
+}
+
+void FeedbackMenuButton::DrawIcon(gfx::Canvas* canvas) {
+ DrawFeedbackIcon(canvas, *ResourceBundle::GetSharedInstance().
+ GetBitmapNamed(IDR_STATUSBAR_FEEDBACK));
+}
+
+void FeedbackMenuButton::DrawFeedbackIcon(gfx::Canvas* canvas, SkBitmap icon) {
+ static const int kIconVerticalPadding = 5;
+ canvas->DrawBitmapInt(icon, 0, kIconVerticalPadding);
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// PowerMenuButton, views::ViewMenuDelegate implementation:
+
+void FeedbackMenuButton::RunMenu(views::View* source, const gfx::Point& pt) {
+ DCHECK(host_);
+ host_->ExecuteBrowserCommand(IDC_REPORT_BUG);
+}
+
+} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/status/feedback_menu_button.h ('k') | chrome/browser/chromeos/status/status_area_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698