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
|
// 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/status_area_view.h"
#include <algorithm>
#include "chrome/browser/chromeos/status/clock_menu_button.h"
#include "chrome/browser/chromeos/status/feedback_menu_button.h"
#include "chrome/browser/chromeos/status/language_menu_button.h"
#include "chrome/browser/chromeos/status/network_menu_button.h"
#include "chrome/browser/chromeos/status/power_menu_button.h"
#include "chrome/browser/chromeos/status/status_area_host.h"
#include "gfx/canvas.h"
namespace chromeos {
// Number of pixels to separate each icon.
const int kSeparation = 6;
// BrowserWindowGtk tiles its image with this offset
const int kCustomFrameBackgroundVerticalOffset = 15;
// Default to opening new tabs on the left.
StatusAreaView::OpenTabsMode StatusAreaView::open_tabs_mode_ =
StatusAreaView::OPEN_TABS_ON_LEFT;
StatusAreaView::StatusAreaView(StatusAreaHost* host)
: host_(host),
clock_view_(NULL),
feedback_view_(NULL),
language_view_(NULL),
network_view_(NULL),
power_view_(NULL) {
}
void StatusAreaView::Init() {
// Language.
language_view_ = new LanguageMenuButton(host_);
AddChildView(language_view_);
// Feedback.
feedback_view_ = new FeedbackMenuButton(host_);
AddChildView(feedback_view_);
// Network.
network_view_ = new NetworkMenuButton(host_);
AddChildView(network_view_);
// Power.
power_view_ = new PowerMenuButton();
AddChildView(power_view_);
// Clock.
clock_view_ = new ClockMenuButton(host_);
AddChildView(clock_view_);
}
void StatusAreaView::Update() {
for (int i = 0; i < GetChildViewCount(); ++i) {
views::View* cur = GetChildViewAt(i);
cur->SetVisible(host_->IsButtonVisible(cur));
}
}
gfx::Size StatusAreaView::GetPreferredSize() {
int result_w = kSeparation;
int result_h = 0;
for (int i = 0; i < GetChildViewCount(); i++) {
views::View* cur = GetChildViewAt(i);
if (cur->IsVisible()) {
gfx::Size cur_size = cur->GetPreferredSize();
// Add each width.
result_w += cur_size.width() + kSeparation;
// Use max height.
result_h = std::max(result_h, cur_size.height());
}
}
return gfx::Size(result_w, result_h);
}
void StatusAreaView::Layout() {
int cur_x = kSeparation;
for (int i = 0; i < GetChildViewCount(); i++) {
views::View* cur = GetChildViewAt(i);
if (cur->IsVisible()) {
gfx::Size cur_size = cur->GetPreferredSize();
int cur_y = (height() - cur_size.height()) / 2;
// Handle odd number of pixels.
cur_y += (height() - cur_size.height()) % 2;
// Put next in row horizontally, and center vertically.
cur->SetBounds(cur_x, cur_y, cur_size.width(), cur_size.height());
cur_x += cur_size.width() + kSeparation;
}
}
}
void StatusAreaView::ChildPreferredSizeChanged(View* child) {
// When something like the clock menu button's size changes, we need to
// relayout. Also mark that this view's size has changed. This will let
// BrowserView know to relayout, which will reset the bounds of this view.
Layout();
PreferredSizeChanged();
}
// static
StatusAreaView::OpenTabsMode StatusAreaView::GetOpenTabsMode() {
return open_tabs_mode_;
}
// static
void StatusAreaView::SetOpenTabsMode(OpenTabsMode mode) {
open_tabs_mode_ = mode;
}
} // namespace chromeos
|