1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
// 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/chromeos/status/power_menu_button.h"
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/string_number_conversions.h"
#include "base/time.h"
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "gfx/canvas.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
namespace chromeos {
////////////////////////////////////////////////////////////////////////////////
// PowerMenuButton
// static
const int PowerMenuButton::kNumPowerImages = 12;
PowerMenuButton::PowerMenuButton()
: StatusAreaButton(this),
ALLOW_THIS_IN_INITIALIZER_LIST(power_menu_(this)),
icon_id_(-1) {
UpdateIcon();
CrosLibrary::Get()->GetPowerLibrary()->AddObserver(this);
}
PowerMenuButton::~PowerMenuButton() {
CrosLibrary::Get()->GetPowerLibrary()->RemoveObserver(this);
}
////////////////////////////////////////////////////////////////////////////////
// PowerMenuButton, menus::MenuModel implementation:
int PowerMenuButton::GetItemCount() const {
return 2;
}
menus::MenuModel::ItemType PowerMenuButton::GetTypeAt(int index) const {
return menus::MenuModel::TYPE_COMMAND;
}
string16 PowerMenuButton::GetLabelAt(int index) const {
PowerLibrary* cros = CrosLibrary::Get()->GetPowerLibrary();
// The first item shows the percentage of battery left.
if (index == 0) {
// If fully charged, always show 100% even if internal number is a bit less.
double percent = cros->battery_fully_charged() ? 100 :
cros->battery_percentage();
return l10n_util::GetStringFUTF16(IDS_STATUSBAR_BATTERY_PERCENTAGE,
base::IntToString16(static_cast<int>(percent)));
}
// The second item shows the battery is charged if it is.
if (cros->battery_fully_charged())
return l10n_util::GetStringUTF16(IDS_STATUSBAR_BATTERY_IS_CHARGED);
// If battery is in an intermediate charge state, we show how much time left.
base::TimeDelta time = cros->line_power_on() ? cros->battery_time_to_full() :
cros->battery_time_to_empty();
if (time.InSeconds() == 0) {
// If time is 0, then that means we are still calculating how much time.
// Depending if line power is on, we either show a message saying that we
// are calculating time until full or calculating remaining time.
int msg = cros->line_power_on() ?
IDS_STATUSBAR_BATTERY_CALCULATING_TIME_UNTIL_FULL :
IDS_STATUSBAR_BATTERY_CALCULATING_TIME_UNTIL_EMPTY;
return l10n_util::GetStringUTF16(msg);
} else {
// Depending if line power is on, we either show a message saying XX:YY
// until full or XX:YY remaining where XX is number of hours and YY is
// number of minutes.
int msg = cros->line_power_on() ? IDS_STATUSBAR_BATTERY_TIME_UNTIL_FULL :
IDS_STATUSBAR_BATTERY_TIME_UNTIL_EMPTY;
int hour = time.InHours();
int min = (time - base::TimeDelta::FromHours(hour)).InMinutes();
string16 hour_str = base::IntToString16(hour);
string16 min_str = base::IntToString16(min);
// Append a "0" before the minute if it's only a single digit.
if (min < 10)
min_str = ASCIIToUTF16("0") + min_str;
return l10n_util::GetStringFUTF16(msg, hour_str, min_str);
}
}
////////////////////////////////////////////////////////////////////////////////
// PowerMenuButton, views::ViewMenuDelegate implementation:
void PowerMenuButton::RunMenu(views::View* source, const gfx::Point& pt) {
power_menu_.Rebuild();
power_menu_.UpdateStates();
power_menu_.RunMenuAt(pt, views::Menu2::ALIGN_TOPRIGHT);
}
////////////////////////////////////////////////////////////////////////////////
// PowerMenuButton, PowerLibrary::Observer implementation:
void PowerMenuButton::PowerChanged(PowerLibrary* obj) {
UpdateIcon();
}
////////////////////////////////////////////////////////////////////////////////
// PowerMenuButton, StatusAreaButton implementation:
void PowerMenuButton::DrawPressed(gfx::Canvas* canvas) {
DrawPowerIcon(canvas, *ResourceBundle::GetSharedInstance().
GetBitmapNamed(IDR_STATUSBAR_BATTERY_PRESSED));
}
void PowerMenuButton::DrawIcon(gfx::Canvas* canvas) {
DrawPowerIcon(canvas, icon());
}
void PowerMenuButton::DrawPowerIcon(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);
}
void PowerMenuButton::UpdateIcon() {
PowerLibrary* cros = CrosLibrary::Get()->GetPowerLibrary();
icon_id_ = IDR_STATUSBAR_BATTERY_UNKNOWN;
if (CrosLibrary::Get()->EnsureLoaded()) {
if (!cros->battery_is_present()) {
icon_id_ = IDR_STATUSBAR_BATTERY_MISSING;
} else if (cros->line_power_on() && cros->battery_fully_charged()) {
icon_id_ = IDR_STATUSBAR_BATTERY_CHARGED;
} else {
// Get the power image depending on battery percentage. Percentage is
// from 0 to 100, so we need to convert that to 0 to kNumPowerImages - 1.
// NOTE: Use an array rather than just calculating a resource number to
// avoid creating implicit ordering dependencies on the resource values.
static const int kChargingImages[kNumPowerImages] = {
IDR_STATUSBAR_BATTERY_CHARGING_1,
IDR_STATUSBAR_BATTERY_CHARGING_2,
IDR_STATUSBAR_BATTERY_CHARGING_3,
IDR_STATUSBAR_BATTERY_CHARGING_4,
IDR_STATUSBAR_BATTERY_CHARGING_5,
IDR_STATUSBAR_BATTERY_CHARGING_6,
IDR_STATUSBAR_BATTERY_CHARGING_7,
IDR_STATUSBAR_BATTERY_CHARGING_8,
IDR_STATUSBAR_BATTERY_CHARGING_9,
IDR_STATUSBAR_BATTERY_CHARGING_10,
IDR_STATUSBAR_BATTERY_CHARGING_11,
IDR_STATUSBAR_BATTERY_CHARGING_12,
};
static const int kDischargingImages[kNumPowerImages] = {
IDR_STATUSBAR_BATTERY_DISCHARGING_1,
IDR_STATUSBAR_BATTERY_DISCHARGING_2,
IDR_STATUSBAR_BATTERY_DISCHARGING_3,
IDR_STATUSBAR_BATTERY_DISCHARGING_4,
IDR_STATUSBAR_BATTERY_DISCHARGING_5,
IDR_STATUSBAR_BATTERY_DISCHARGING_6,
IDR_STATUSBAR_BATTERY_DISCHARGING_7,
IDR_STATUSBAR_BATTERY_DISCHARGING_8,
IDR_STATUSBAR_BATTERY_DISCHARGING_9,
IDR_STATUSBAR_BATTERY_DISCHARGING_10,
IDR_STATUSBAR_BATTERY_DISCHARGING_11,
IDR_STATUSBAR_BATTERY_DISCHARGING_12,
};
// If fully charged, always show 100% even if percentage is a bit less.
double percent = cros->battery_fully_charged() ?
100 : cros->battery_percentage();
int index = static_cast<int>(percent / 100.0 *
nextafter(static_cast<float>(kNumPowerImages), 0));
index = std::max(std::min(index, kNumPowerImages - 1), 0);
icon_id_ = cros->line_power_on() ?
kChargingImages[index] : kDischargingImages[index];
}
}
SetIcon(*ResourceBundle::GetSharedInstance().GetBitmapNamed(icon_id_));
SchedulePaint();
}
} // namespace chromeos
|