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

Unified Diff: chrome/browser/chromeos/setting_level_bubble_view.cc

Issue 5559004: chromeos: Add support for multiple volume icons. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/chromeos
Patch Set: merge Created 10 years 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
« no previous file with comments | « chrome/browser/chromeos/setting_level_bubble_view.h ('k') | chrome/browser/chromeos/volume_bubble.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/setting_level_bubble_view.cc
diff --git a/chrome/browser/chromeos/setting_level_bubble_view.cc b/chrome/browser/chromeos/setting_level_bubble_view.cc
index 6a1f9927f5252a6fd3eb709e4a8a69042891cb3f..c5661247aff2cd19cb108e44d21dcbfb30f7a936 100644
--- a/chrome/browser/chromeos/setting_level_bubble_view.cc
+++ b/chrome/browser/chromeos/setting_level_bubble_view.cc
@@ -18,9 +18,10 @@ using views::Widget;
namespace {
// Bubble metrics.
-const int kWidth = 300, kHeight = 75;
-const int kMargin = 25;
-const int kProgressBarHeight = 20;
+const int kWidth = 350, kHeight = 100;
+const int kPadding = 20;
+const int kProgressBarWidth = 211;
+const int kProgressBarHeight = 17;
} // namespace
@@ -32,6 +33,7 @@ SettingLevelBubbleView::SettingLevelBubbleView()
}
void SettingLevelBubbleView::Init(SkBitmap* icon, int level_percent) {
+ DCHECK(icon);
DCHECK(level_percent >= 0 && level_percent <= 100);
icon_ = icon;
progress_bar_ = new views::ProgressBar();
@@ -39,6 +41,12 @@ void SettingLevelBubbleView::Init(SkBitmap* icon, int level_percent) {
Update(level_percent);
}
+void SettingLevelBubbleView::SetIcon(SkBitmap* icon) {
+ DCHECK(icon);
+ icon_ = icon;
+ SchedulePaint();
+}
+
void SettingLevelBubbleView::Update(int level_percent) {
DCHECK(level_percent >= 0 && level_percent <= 100);
progress_bar_->SetProgress(level_percent);
@@ -46,15 +54,13 @@ void SettingLevelBubbleView::Update(int level_percent) {
void SettingLevelBubbleView::Paint(gfx::Canvas* canvas) {
views::View::Paint(canvas);
- canvas->DrawBitmapInt(*icon_,
- icon_->width(), (height() - icon_->height()) / 2);
+ canvas->DrawBitmapInt(*icon_, kPadding, (height() - icon_->height()) / 2);
}
void SettingLevelBubbleView::Layout() {
- progress_bar_->SetBounds(icon_->width() + kMargin * 2,
+ progress_bar_->SetBounds(width() - kPadding - kProgressBarWidth,
(height() - kProgressBarHeight) / 2,
- width() - icon_->width() - kMargin * 3,
- kProgressBarHeight);
+ kProgressBarWidth, kProgressBarHeight);
}
gfx::Size SettingLevelBubbleView::GetPreferredSize() {
« no previous file with comments | « chrome/browser/chromeos/setting_level_bubble_view.h ('k') | chrome/browser/chromeos/volume_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698