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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
// 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/frame/panel_controller.h"
#include <vector>
#include "app/resource_bundle.h"
#include "base/logging.h"
#include "base/singleton.h"
#include "base/scoped_ptr.h"
#include "base/string_util.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/chromeos/wm_ipc.h"
#include "chrome/common/x11_util.h"
#include "grit/app_resources.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "views/controls/button/image_button.h"
#include "views/controls/image_view.h"
#include "views/controls/label.h"
#include "views/event.h"
#include "views/view.h"
#include "views/widget/widget_gtk.h"
#include "views/window/window.h"
namespace chromeos {
static int close_button_width;
static int close_button_height;
static SkBitmap* close_button_n;
static SkBitmap* close_button_m;
static SkBitmap* close_button_h;
static SkBitmap* close_button_p;
static gfx::Font* active_font = NULL;
static gfx::Font* inactive_font = NULL;
namespace {
const int kTitleWidth = 200;
const int kTitleHeight = 20;
const int kTitleIconSize = 16;
const int kTitleWidthPad = 2;
const int kTitleHeightPad = 1;
const int kButtonPad = 4;
const SkColor kActiveGradientStart = 0xffebeff9;
const SkColor kActiveGradientEnd = 0xffb3c4f6;
const SkColor kInactiveGradientStart = 0xfff2f2f2;
const SkColor kInactiveGradientEnd = 0xfff2f2f2;
const SkColor kActiveColor = SK_ColorBLACK;
const SkColor kInactiveColor = 0xff333333;
const SkColor kCloseButtonColor = SK_ColorBLACK;
static bool resources_initialized;
static void InitializeResources() {
if (resources_initialized) {
return;
}
resources_initialized = true;
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
inactive_font = new gfx::Font(rb.GetFont(ResourceBundle::BaseFont));
active_font = new gfx::Font(inactive_font->DeriveFont(0, gfx::Font::BOLD));
close_button_n = rb.GetBitmapNamed(IDR_TAB_CLOSE);
close_button_m = rb.GetBitmapNamed(IDR_TAB_CLOSE_MASK);
close_button_h = rb.GetBitmapNamed(IDR_TAB_CLOSE_H);
close_button_p = rb.GetBitmapNamed(IDR_TAB_CLOSE_P);
close_button_width = close_button_n->width();
close_button_height = close_button_n->height();
}
} // namespace
PanelController::PanelController(Delegate* delegate,
GtkWindow* window,
const gfx::Rect& init_bounds)
: delegate_(delegate),
panel_(window),
panel_xid_(x11_util::GetX11WindowFromGtkWidget(GTK_WIDGET(panel_))),
title_window_(NULL),
expanded_(true),
mouse_down_(false),
dragging_(false) {
Init(init_bounds);
}
void PanelController::Init(const gfx::Rect window_bounds) {
gfx::Rect title_bounds(
0, 0, window_bounds.width(), kTitleHeight);
title_window_ = new views::WidgetGtk(views::WidgetGtk::TYPE_WINDOW);
title_window_->Init(NULL, title_bounds);
gtk_widget_set_size_request(title_window_->GetNativeView(),
title_bounds.width(), title_bounds.height());
title_ = title_window_->GetNativeView();
title_xid_ = x11_util::GetX11WindowFromGtkWidget(title_);
WmIpc::instance()->SetWindowType(
title_,
WmIpc::WINDOW_TYPE_CHROME_PANEL_TITLEBAR,
NULL);
std::vector<int> type_params;
type_params.push_back(title_xid_);
type_params.push_back(expanded_ ? 1 : 0);
WmIpc::instance()->SetWindowType(
GTK_WIDGET(panel_),
WmIpc::WINDOW_TYPE_CHROME_PANEL_CONTENT,
&type_params);
g_signal_connect(panel_, "client-event",
G_CALLBACK(OnPanelClientEvent), this);
title_content_ = new TitleContentView(this);
title_window_->SetContentsView(title_content_);
UpdateTitleBar();
title_window_->Show();
}
void PanelController::UpdateTitleBar() {
if (!delegate_ || !title_window_)
return;
title_content_->title_label()->SetText(
UTF16ToWideHack(delegate_->GetPanelTitle()));
title_content_->title_icon()->SetImage(delegate_->GetPanelIcon());
}
bool PanelController::TitleMousePressed(const views::MouseEvent& event) {
if (!event.IsOnlyLeftMouseButton()) {
return false;
}
GdkEvent* gdk_event = gtk_get_current_event();
if (gdk_event->type != GDK_BUTTON_PRESS) {
gdk_event_free(gdk_event);
NOTREACHED();
return false;
}
// Get the last titlebar width that we saw in a ConfigureNotify event -- we
// need to give drag positions in terms of the top-right corner of the
// titlebar window. See WM_NOTIFY_PANEL_DRAGGED's declaration for details.
gint title_width = 1;
gtk_window_get_size(GTK_WINDOW(title_), &title_width, NULL);
GdkEventButton last_button_event = gdk_event->button;
mouse_down_ = true;
mouse_down_abs_x_ = last_button_event.x_root;
mouse_down_abs_y_ = last_button_event.y_root;
mouse_down_offset_x_ = event.x() - title_width;
mouse_down_offset_y_ = event.y();
dragging_ = false;
gdk_event_free(gdk_event);
return true;
}
void PanelController::TitleMouseReleased(
const views::MouseEvent& event, bool canceled) {
if (!event.IsOnlyLeftMouseButton()) {
return;
}
// Only handle clicks that started in our window.
if (!mouse_down_) {
return;
}
mouse_down_ = false;
if (!dragging_) {
WmIpc::Message msg(WmIpc::Message::WM_SET_PANEL_STATE);
msg.set_param(0, panel_xid_);
msg.set_param(1, expanded_ ? 0 : 1);
WmIpc::instance()->SendMessage(msg);
} else {
WmIpc::Message msg(WmIpc::Message::WM_NOTIFY_PANEL_DRAG_COMPLETE);
msg.set_param(0, panel_xid_);
WmIpc::instance()->SendMessage(msg);
dragging_ = false;
}
}
bool PanelController::TitleMouseDragged(const views::MouseEvent& event) {
if (!mouse_down_) {
return false;
}
GdkEvent* gdk_event = gtk_get_current_event();
if (gdk_event->type != GDK_MOTION_NOTIFY) {
gdk_event_free(gdk_event);
NOTREACHED();
return false;
}
GdkEventMotion last_motion_event = gdk_event->motion;
if (!dragging_) {
if (views::View::ExceededDragThreshold(
last_motion_event.x_root - mouse_down_abs_x_,
last_motion_event.y_root - mouse_down_abs_y_)) {
dragging_ = true;
}
}
if (dragging_) {
WmIpc::Message msg(WmIpc::Message::WM_NOTIFY_PANEL_DRAGGED);
msg.set_param(0, panel_xid_);
msg.set_param(1, last_motion_event.x_root - mouse_down_offset_x_);
msg.set_param(2, last_motion_event.y_root - mouse_down_offset_y_);
WmIpc::instance()->SendMessage(msg);
}
gdk_event_free(gdk_event);
return true;
}
// static
bool PanelController::OnPanelClientEvent(
GtkWidget* widget,
GdkEventClient* event,
PanelController* panel_controller) {
return panel_controller->PanelClientEvent(event);
}
void PanelController::OnFocusIn() {
if (title_window_)
title_content_->OnFocusIn();
}
void PanelController::OnFocusOut() {
if (title_window_)
title_content_->OnFocusOut();
}
bool PanelController::PanelClientEvent(GdkEventClient* event) {
WmIpc::Message msg;
WmIpc::instance()->DecodeMessage(*event, &msg);
if (msg.type() == WmIpc::Message::CHROME_NOTIFY_PANEL_STATE) {
expanded_ = msg.param(0);
}
return true;
}
void PanelController::Close() {
// ignore if the title window is already closed.
if (title_window_) {
title_window_->Close();
title_window_ = NULL;
}
}
void PanelController::ButtonPressed(
views::Button* sender, const views::Event& event) {
if (title_window_ && sender == title_content_->close_button()) {
delegate_->ClosePanel();
Close();
}
}
PanelController::TitleContentView::TitleContentView(
PanelController* panel_controller)
: panel_controller_(panel_controller) {
InitializeResources();
close_button_ = new views::ImageButton(panel_controller_);
close_button_->SetImage(views::CustomButton::BS_NORMAL, close_button_n);
close_button_->SetImage(views::CustomButton::BS_HOT, close_button_h);
close_button_->SetImage(views::CustomButton::BS_PUSHED, close_button_p);
close_button_->SetBackground(
kCloseButtonColor, close_button_n, close_button_m);
AddChildView(close_button_);
title_icon_ = new views::ImageView();
AddChildView(title_icon_);
title_label_ = new views::Label(std::wstring());
title_label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
AddChildView(title_label_);
// Default to inactive
OnFocusOut();
}
void PanelController::TitleContentView::Layout() {
int close_button_x = bounds().width() - (close_button_width + kButtonPad);
close_button_->SetBounds(
close_button_x,
(bounds().height() - close_button_height) / 2,
close_button_width,
close_button_height);
title_icon_->SetBounds(
kTitleWidthPad,
kTitleHeightPad * 2,
kTitleIconSize,
kTitleIconSize);
int title_x = kTitleWidthPad * 2 + kTitleIconSize;
title_label_->SetBounds(
title_x,
kTitleHeightPad,
close_button_x - (title_x + kButtonPad),
bounds().height() - kTitleHeightPad);
}
bool PanelController::TitleContentView::OnMousePressed(
const views::MouseEvent& event) {
return panel_controller_->TitleMousePressed(event);
}
void PanelController::TitleContentView::OnMouseReleased(
const views::MouseEvent& event, bool canceled) {
return panel_controller_->TitleMouseReleased(event, canceled);
}
bool PanelController::TitleContentView::OnMouseDragged(
const views::MouseEvent& event) {
return panel_controller_->TitleMouseDragged(event);
}
void PanelController::TitleContentView::OnFocusIn() {
set_background(views::Background::CreateVerticalGradientBackground(
kActiveGradientStart, kActiveGradientEnd));
title_label_->SetColor(kActiveColor);
title_label_->SetFont(*active_font);
Layout();
SchedulePaint();
}
void PanelController::TitleContentView::OnFocusOut() {
set_background(views::Background::CreateVerticalGradientBackground(
kInactiveGradientStart, kInactiveGradientEnd));
title_label_->SetColor(kInactiveColor);
title_label_->SetFont(*inactive_font);
Layout();
SchedulePaint();
}
} // namespace chromeos
|