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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
// 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.
#include "ash/accelerators/accelerator_controller.h"
#include "ash/accelerators/accelerator_table.h"
#include "ash/desktop_background/desktop_background_controller.h"
#include "ash/ash_switches.h"
#include "ash/caps_lock_delegate.h"
#include "ash/ime_control_delegate.h"
#include "ash/launcher/launcher.h"
#include "ash/launcher/launcher_model.h"
#include "ash/launcher/launcher_delegate.h"
#include "ash/monitor/multi_monitor_manager.h"
#include "ash/screenshot_delegate.h"
#include "ash/shell.h"
#include "ash/shell_delegate.h"
#include "ash/shell_window_ids.h"
#include "ash/system/brightness/brightness_control_delegate.h"
#include "ash/volume_control_delegate.h"
#include "ash/wm/window_cycle_controller.h"
#include "ash/wm/window_util.h"
#include "base/command_line.h"
#include "ui/aura/event.h"
#include "ui/aura/root_window.h"
#include "ui/base/accelerators/accelerator.h"
#include "ui/base/accelerators/accelerator_manager.h"
#include "ui/gfx/compositor/debug_utils.h"
#include "ui/gfx/compositor/layer_animation_sequence.h"
#include "ui/gfx/compositor/layer_animator.h"
#include "ui/gfx/compositor/screen_rotation.h"
#include "ui/oak/oak.h"
namespace {
bool HandleCycleWindowMRU(ash::WindowCycleController::Direction direction,
bool is_alt_down) {
// TODO(mukai): support Apps windows here.
ash::Shell::GetInstance()->
window_cycle_controller()->HandleCycleWindow(direction, is_alt_down);
// Always report we handled the key, even if the window didn't change.
return true;
}
void ActivateLauncherItem(int index) {
const ash::LauncherItems& items =
ash::Shell::GetInstance()->launcher()->model()->items();
ash::Shell::GetInstance()->launcher()->delegate()->ItemClicked(items[index]);
}
void HandleCycleWindowLinear(ash::WindowCycleController::Direction direction) {
// TODO(mukai): move this function to somewhere else (probably a new
// file launcher_navigator.cc) and write test cases.
ash::LauncherModel* model = ash::Shell::GetInstance()->launcher()->model();
const ash::LauncherItems& items = model->items();
int item_count = model->item_count();
int current_index = -1;
int first_running = -1;
for (int i = 0; i < item_count; ++i) {
const ash::LauncherItem& item = items[i];
// We only care about windows.
if (item.type == ash::TYPE_APP_LIST ||
item.type == ash::TYPE_BROWSER_SHORTCUT)
continue;
if (item.status == ash::STATUS_RUNNING && first_running < 0)
first_running = i;
if (item.status == ash::STATUS_ACTIVE) {
current_index = i;
break;
}
}
// If nothing is active, try to active the first running item.
if (current_index < 0) {
if (first_running >= 0)
ActivateLauncherItem(first_running);
return;
}
int step = (direction == ash::WindowCycleController::FORWARD) ? 1 : -1;
// Find the next item and activate it.
for (int i = (current_index + step + item_count) % item_count;
i != current_index; i = (i + step + item_count) % item_count) {
const ash::LauncherItem& item = items[i];
if (item.type == ash::TYPE_APP_LIST ||
item.type == ash::TYPE_BROWSER_SHORTCUT)
continue;
// Skip already active item.
if (item.status == ash::STATUS_ACTIVE)
continue;
ActivateLauncherItem(i);
return;
}
}
#if defined(OS_CHROMEOS)
bool HandleLock() {
ash::ShellDelegate* delegate = ash::Shell::GetInstance()->delegate();
if (!delegate)
return false;
delegate->LockScreen();
return true;
}
#endif
bool HandleExit() {
ash::ShellDelegate* delegate = ash::Shell::GetInstance()->delegate();
if (!delegate)
return false;
delegate->Exit();
return true;
}
// Rotates the default window container.
bool HandleRotateWindows() {
aura::Window* target = ash::Shell::GetInstance()->GetContainer(
ash::internal::kShellWindowId_DefaultContainer);
scoped_ptr<ui::LayerAnimationSequence> screen_rotation(
new ui::LayerAnimationSequence(new ui::ScreenRotation(360)));
target->layer()->GetAnimator()->StartAnimation(
screen_rotation.release());
return true;
}
#if !defined(NDEBUG)
// Rotates the screen.
bool HandleRotateScreen() {
static int i = 0;
int delta = 0;
switch (i) {
case 0: delta = 90; break;
case 1: delta = 90; break;
case 2: delta = 90; break;
case 3: delta = 90; break;
case 4: delta = -90; break;
case 5: delta = -90; break;
case 6: delta = -90; break;
case 7: delta = -90; break;
case 8: delta = -90; break;
case 9: delta = 180; break;
case 10: delta = 180; break;
case 11: delta = 90; break;
case 12: delta = 180; break;
case 13: delta = 180; break;
}
i = (i + 1) % 14;
ash::Shell::GetRootWindow()->layer()->GetAnimator()->
set_preemption_strategy(ui::LayerAnimator::REPLACE_QUEUED_ANIMATIONS);
scoped_ptr<ui::LayerAnimationSequence> screen_rotation(
new ui::LayerAnimationSequence(new ui::ScreenRotation(delta)));
screen_rotation->AddObserver(ash::Shell::GetRootWindow());
ash::Shell::GetRootWindow()->layer()->GetAnimator()->StartAnimation(
screen_rotation.release());
return true;
}
bool HandleToggleDesktopBackgroundMode() {
ash::DesktopBackgroundController* desktop_background_controller =
ash::Shell::GetInstance()->desktop_background_controller();
if (desktop_background_controller->desktop_background_mode() ==
ash::DesktopBackgroundController::BACKGROUND_IMAGE)
desktop_background_controller->SetDesktopBackgroundSolidColorMode();
else
desktop_background_controller->OnDesktopBackgroundChanged();
return true;
}
bool HandleToggleRootWindowFullScreen() {
ash::Shell::GetRootWindow()->ToggleFullScreen();
return true;
}
bool HandlePrintLayerHierarchy() {
aura::RootWindow* root_window = ash::Shell::GetRootWindow();
ui::PrintLayerHierarchy(root_window->layer(),
root_window->last_mouse_location());
return true;
}
void PrintWindowHierarchy(aura::Window* window, int indent) {
std::string indent_str(indent, ' ');
VLOG(1) << indent_str << window->name() << " type " << window->type()
<< (ash::wm::IsActiveWindow(window) ? "active" : "");
for (size_t i = 0; i < window->children().size(); ++i)
PrintWindowHierarchy(window->children()[i], indent + 3);
}
bool HandlePrintWindowHierarchy() {
VLOG(1) << "Window hierarchy:";
aura::Window* container = ash::Shell::GetInstance()->GetContainer(
ash::internal::kShellWindowId_DefaultContainer);
PrintWindowHierarchy(container, 0);
return true;
}
#endif
} // namespace
namespace ash {
////////////////////////////////////////////////////////////////////////////////
// AcceleratorController, public:
AcceleratorController::AcceleratorController()
: accelerator_manager_(new ui::AcceleratorManager) {
Init();
}
AcceleratorController::~AcceleratorController() {
}
void AcceleratorController::Init() {
for (size_t i = 0; i < kAcceleratorDataLength; ++i) {
ui::Accelerator accelerator(kAcceleratorData[i].keycode,
kAcceleratorData[i].shift,
kAcceleratorData[i].ctrl,
kAcceleratorData[i].alt);
accelerator.set_type(kAcceleratorData[i].type);
Register(accelerator, this);
CHECK(accelerators_.insert(
std::make_pair(accelerator, kAcceleratorData[i].action)).second);
}
}
void AcceleratorController::Register(const ui::Accelerator& accelerator,
ui::AcceleratorTarget* target) {
accelerator_manager_->Register(accelerator,
ui::AcceleratorManager::kNormalPriority,
target);
}
void AcceleratorController::Unregister(const ui::Accelerator& accelerator,
ui::AcceleratorTarget* target) {
accelerator_manager_->Unregister(accelerator, target);
}
void AcceleratorController::UnregisterAll(ui::AcceleratorTarget* target) {
accelerator_manager_->UnregisterAll(target);
}
bool AcceleratorController::Process(const ui::Accelerator& accelerator) {
return accelerator_manager_->Process(accelerator);
}
void AcceleratorController::SetBrightnessControlDelegate(
scoped_ptr<BrightnessControlDelegate> brightness_control_delegate) {
brightness_control_delegate_.swap(brightness_control_delegate);
}
void AcceleratorController::SetCapsLockDelegate(
scoped_ptr<CapsLockDelegate> caps_lock_delegate) {
caps_lock_delegate_.swap(caps_lock_delegate);
}
void AcceleratorController::SetImeControlDelegate(
scoped_ptr<ImeControlDelegate> ime_control_delegate) {
ime_control_delegate_.swap(ime_control_delegate);
}
void AcceleratorController::SetScreenshotDelegate(
scoped_ptr<ScreenshotDelegate> screenshot_delegate) {
screenshot_delegate_.swap(screenshot_delegate);
}
void AcceleratorController::SetVolumeControlDelegate(
scoped_ptr<VolumeControlDelegate> volume_control_delegate) {
volume_control_delegate_.swap(volume_control_delegate);
}
////////////////////////////////////////////////////////////////////////////////
// AcceleratorController, ui::AcceleratorTarget implementation:
bool AcceleratorController::AcceleratorPressed(
const ui::Accelerator& accelerator) {
std::map<ui::Accelerator, int>::const_iterator it =
accelerators_.find(accelerator);
DCHECK(it != accelerators_.end());
switch (static_cast<AcceleratorAction>(it->second)) {
case CYCLE_BACKWARD_MRU:
return HandleCycleWindowMRU(WindowCycleController::BACKWARD,
accelerator.IsAltDown());
case CYCLE_FORWARD_MRU:
return HandleCycleWindowMRU(WindowCycleController::FORWARD,
accelerator.IsAltDown());
case CYCLE_BACKWARD_LINEAR:
HandleCycleWindowLinear(WindowCycleController::BACKWARD);
return true;
case CYCLE_FORWARD_LINEAR:
HandleCycleWindowLinear(WindowCycleController::FORWARD);
return true;
#if defined(OS_CHROMEOS)
case LOCK_SCREEN:
return HandleLock();
#endif
case EXIT:
return HandleExit();
case TAKE_SCREENSHOT:
if (screenshot_delegate_.get()) {
aura::RootWindow* root_window = Shell::GetRootWindow();
screenshot_delegate_->HandleTakeScreenshot(root_window);
}
// Return true to prevent propagation of the key event.
return true;
case TAKE_PARTIAL_SCREENSHOT:
if (screenshot_delegate_.get())
ash::Shell::GetInstance()->delegate()->
StartPartialScreenshot(screenshot_delegate_.get());
// Return true to prevent propagation of the key event because
// this key combination is reserved for partial screenshot.
return true;
case TOGGLE_APP_LIST:
ash::Shell::GetInstance()->ToggleAppList();
break;
case TOGGLE_CAPS_LOCK:
if (caps_lock_delegate_.get())
return caps_lock_delegate_->HandleToggleCapsLock();
break;
case BRIGHTNESS_DOWN:
if (brightness_control_delegate_.get())
return brightness_control_delegate_->HandleBrightnessDown(accelerator);
break;
case BRIGHTNESS_UP:
if (brightness_control_delegate_.get())
return brightness_control_delegate_->HandleBrightnessUp(accelerator);
break;
case VOLUME_MUTE:
if (volume_control_delegate_.get())
return volume_control_delegate_->HandleVolumeMute(accelerator);
break;
case VOLUME_DOWN:
if (volume_control_delegate_.get())
return volume_control_delegate_->HandleVolumeDown(accelerator);
break;
case VOLUME_UP:
if (volume_control_delegate_.get())
return volume_control_delegate_->HandleVolumeUp(accelerator);
break;
case SHOW_OAK:
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kAshEnableOak))
oak::ShowOakWindow();
break;
case NEXT_IME:
if (ime_control_delegate_.get())
return ime_control_delegate_->HandleNextIme();
break;
case PREVIOUS_IME:
if (ime_control_delegate_.get())
return ime_control_delegate_->HandlePreviousIme();
break;
case SWITCH_IME:
if (ime_control_delegate_.get())
return ime_control_delegate_->HandleSwitchIme(accelerator);
break;
case SELECT_WIN_0:
SwitchToWindow(0);
break;
case SELECT_WIN_1:
SwitchToWindow(1);
break;
case SELECT_WIN_2:
SwitchToWindow(2);
break;
case SELECT_WIN_3:
SwitchToWindow(3);
break;
case SELECT_WIN_4:
SwitchToWindow(4);
break;
case SELECT_WIN_5:
SwitchToWindow(5);
break;
case SELECT_WIN_6:
SwitchToWindow(6);
break;
case SELECT_WIN_7:
SwitchToWindow(7);
break;
case SELECT_LAST_WIN:
SwitchToWindow(-1);
break;
case ROTATE_WINDOWS:
return HandleRotateWindows();
#if !defined(NDEBUG)
case ROTATE_SCREEN:
return HandleRotateScreen();
case TOGGLE_DESKTOP_BACKGROUND_MODE:
return HandleToggleDesktopBackgroundMode();
case TOGGLE_ROOT_WINDOW_FULL_SCREEN:
return HandleToggleRootWindowFullScreen();
case PRINT_LAYER_HIERARCHY:
return HandlePrintLayerHierarchy();
case PRINT_WINDOW_HIERARCHY:
return HandlePrintWindowHierarchy();
case ADD_REMOVE_MONITOR:
internal::MultiMonitorManager::AddRemoveMonitor();
return true;
case CYCLE_MONITOR:
internal::MultiMonitorManager::CycleMonitor();
return true;
#endif
default:
NOTREACHED() << "Unhandled action " << it->second;
}
return false;
}
void AcceleratorController::SwitchToWindow(int window) {
const LauncherItems& items =
Shell::GetInstance()->launcher()->model()->items();
int item_count =
Shell::GetInstance()->launcher()->model()->item_count();
int indexes_left = window >= 0 ? window : item_count;
int found_index = -1;
// Iterating until we have hit the index we are interested in which
// is true once indexes_left becomes negative.
for (int i = 0; i < item_count && indexes_left >= 0; i++) {
if (items[i].type != TYPE_APP_LIST &&
items[i].type != TYPE_BROWSER_SHORTCUT) {
found_index = i;
indexes_left--;
}
}
// There are two ways how found_index can be valid: a.) the nth item was
// found (which is true when indexes_left is -1) or b.) the last item was
// requested (which is true when index was passed in as a negative number).
if (found_index >= 0 && (indexes_left == -1 || window < 0) &&
items[found_index].status == ash::STATUS_RUNNING) {
// Then set this one as active.
ActivateLauncherItem(found_index);
}
}
bool AcceleratorController::CanHandleAccelerators() const {
return true;
}
} // namespace ash
|