blob: 465da02b8a3a3adb39814e4ab753096474ec8075 (
plain)
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
|
// Copyright (c) 2012 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 ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_VIEW_H_
#define ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_VIEW_H_
#include "ash/system/chromeos/power/power_status.h"
#include "ui/views/view.h"
namespace views {
class ImageView;
class Label;
}
namespace ash {
namespace internal {
class PowerStatusView : public views::View, public PowerStatus::Observer {
public:
enum ViewType {
VIEW_DEFAULT,
VIEW_NOTIFICATION
};
PowerStatusView(ViewType view_type, bool default_view_right_align);
virtual ~PowerStatusView();
// Overridden from views::View.
virtual gfx::Size GetPreferredSize() OVERRIDE;
virtual int GetHeightForWidth(int width) OVERRIDE;
virtual void Layout() OVERRIDE;
// Overridden from PowerStatus::Observer.
virtual void OnPowerStatusChanged() OVERRIDE;
private:
void LayoutDefaultView();
void LayoutNotificationView();
void UpdateTextForDefaultView();
void UpdateTextForNotificationView();
// Overridden from views::View.
virtual void ChildPreferredSizeChanged(views::View* child) OVERRIDE;
// Layout default view UI items on the right side of system tray pop up item
// if true; otherwise, layout the UI items on the left side.
bool default_view_right_align_;
// Labels used only for VIEW_NOTIFICATION.
views::Label* status_label_;
views::Label* time_label_;
// Labels used only for VIEW_DEFAULT.
views::Label* time_status_label_;
views::Label* percentage_label_;
// Battery status indicator icon.
views::ImageView* icon_;
ViewType view_type_;
DISALLOW_COPY_AND_ASSIGN(PowerStatusView);
};
} // namespace internal
} // namespace ash
#endif // ASH_SYSTEM_CHROMEOS_POWER_POWER_STATUS_VIEW_H_
|