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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
|
// Copyright 2014 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 "athena/wm/window_overview_mode.h"
#include <algorithm>
#include <functional>
#include <vector>
#include "athena/wm/overview_toolbar.h"
#include "athena/wm/public/window_list_provider.h"
#include "base/bind.h"
#include "base/macros.h"
#include "ui/aura/scoped_window_targeter.h"
#include "ui/aura/window.h"
#include "ui/aura/window_delegate.h"
#include "ui/aura/window_property.h"
#include "ui/aura/window_targeter.h"
#include "ui/aura/window_tree_host.h"
#include "ui/compositor/closure_animation_observer.h"
#include "ui/compositor/compositor.h"
#include "ui/compositor/compositor_animation_observer.h"
#include "ui/compositor/scoped_layer_animation_settings.h"
#include "ui/events/event_handler.h"
#include "ui/events/gestures/fling_curve.h"
#include "ui/gfx/frame_time.h"
#include "ui/gfx/transform.h"
#include "ui/wm/core/shadow_types.h"
namespace {
struct WindowOverviewState {
// The transform for when the window is at the topmost position.
gfx::Transform top;
// The transform for when the window is at the bottom-most position.
gfx::Transform bottom;
// The current overview state of the window. 0.f means the window is at the
// topmost position. 1.f means the window is at the bottom-most position.
float progress;
};
} // namespace
DECLARE_WINDOW_PROPERTY_TYPE(WindowOverviewState*)
DEFINE_OWNED_WINDOW_PROPERTY_KEY(WindowOverviewState,
kWindowOverviewState,
NULL)
namespace athena {
namespace {
// Gets the transform for the window in its current state.
gfx::Transform GetTransformForState(WindowOverviewState* state) {
return gfx::Tween::TransformValueBetween(state->progress,
state->top,
state->bottom);
}
// Sets the progress-state for the window in the overview mode.
void SetWindowProgress(aura::Window* window, float progress) {
WindowOverviewState* state = window->GetProperty(kWindowOverviewState);
state->progress = progress;
window->SetTransform(GetTransformForState(state));
}
// Resets the overview-related state for |window|.
void RestoreWindowState(aura::Window* window) {
window->ClearProperty(kWindowOverviewState);
ui::ScopedLayerAnimationSettings settings(window->layer()->GetAnimator());
settings.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
settings.SetTransitionDuration(base::TimeDelta::FromMilliseconds(250));
window->SetTransform(gfx::Transform());
wm::SetShadowType(window, wm::SHADOW_TYPE_NONE);
}
// Always returns the same target.
class StaticWindowTargeter : public aura::WindowTargeter {
public:
explicit StaticWindowTargeter(aura::Window* target) : target_(target) {}
virtual ~StaticWindowTargeter() {}
private:
// aura::WindowTargeter:
virtual ui::EventTarget* FindTargetForEvent(ui::EventTarget* root,
ui::Event* event) OVERRIDE {
return target_;
}
virtual ui::EventTarget* FindTargetForLocatedEvent(
ui::EventTarget* root,
ui::LocatedEvent* event) OVERRIDE {
return target_;
}
aura::Window* target_;
DISALLOW_COPY_AND_ASSIGN(StaticWindowTargeter);
};
class WindowOverviewModeImpl : public WindowOverviewMode,
public ui::EventHandler,
public ui::CompositorAnimationObserver {
public:
WindowOverviewModeImpl(aura::Window* container,
const WindowListProvider* window_list_provider,
WindowOverviewModeDelegate* delegate)
: container_(container),
window_list_provider_(window_list_provider),
delegate_(delegate),
scoped_targeter_(new aura::ScopedWindowTargeter(
container,
scoped_ptr<ui::EventTargeter>(
new StaticWindowTargeter(container)))),
dragged_window_(NULL) {
container_->set_target_handler(this);
// Prepare the desired transforms for all the windows, and set the initial
// state on the windows.
ComputeTerminalStatesForAllWindows();
SetInitialWindowStates();
}
virtual ~WindowOverviewModeImpl() {
container_->set_target_handler(container_->delegate());
RemoveAnimationObserver();
aura::Window::Windows windows = window_list_provider_->GetWindowList();
if (windows.empty())
return;
std::for_each(windows.begin(), windows.end(), &RestoreWindowState);
}
private:
// Computes the transforms for all windows in both the topmost and bottom-most
// positions. The transforms are set in the |kWindowOverviewState| property of
// the windows.
void ComputeTerminalStatesForAllWindows() {
aura::Window::Windows windows = window_list_provider_->GetWindowList();
size_t window_count = windows.size();
size_t index = 0;
const gfx::Size container_size = container_->bounds().size();
const int kGapBetweenWindowsBottom = 10;
const int kGapBetweenWindowsTop = 5;
for (aura::Window::Windows::const_reverse_iterator iter = windows.rbegin();
iter != windows.rend();
++iter, ++index) {
aura::Window* window = (*iter);
gfx::Transform top_transform;
int top = (window_count - index - 1) * kGapBetweenWindowsTop;
float x_translate = container_size.width() * (1 - kMinScale) / 2.;
top_transform.Translate(x_translate, top);
top_transform.Scale(kMinScale, kMinScale);
gfx::Transform bottom_transform;
int bottom = GetScrollableHeight() - (index * kGapBetweenWindowsBottom);
x_translate = container_size.width() * (1 - kMaxScale) / 2.;
bottom_transform.Translate(x_translate, bottom - window->bounds().y());
bottom_transform.Scale(kMaxScale, kMaxScale);
WindowOverviewState* state = new WindowOverviewState;
state->top = top_transform;
state->bottom = bottom_transform;
state->progress = 0.f;
window->SetProperty(kWindowOverviewState, state);
wm::SetShadowType(window, wm::SHADOW_TYPE_RECTANGULAR_ALWAYS_ACTIVE);
}
}
// Sets the initial position for the windows for the overview mode.
void SetInitialWindowStates() {
aura::Window::Windows windows = window_list_provider_->GetWindowList();
size_t window_count = windows.size();
// The initial overview state of the topmost three windows.
const float kInitialProgress[] = { 0.5f, 0.05f, 0.01f };
for (size_t i = 0; i < window_count; ++i) {
float progress = 0.f;
aura::Window* window = windows[window_count - 1 - i];
if (i < arraysize(kInitialProgress))
progress = kInitialProgress[i];
scoped_refptr<ui::LayerAnimator> animator =
window->layer()->GetAnimator();
// Unset any in-progress animation.
{
ui::ScopedLayerAnimationSettings settings(animator);
settings.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_SET_NEW_TARGET);
window->Show();
window->SetTransform(gfx::Transform());
}
// Setup the animation.
{
ui::ScopedLayerAnimationSettings settings(animator);
settings.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
settings.SetTransitionDuration(base::TimeDelta::FromMilliseconds(250));
SetWindowProgress(window, progress);
}
}
}
aura::Window* SelectWindowAt(ui::LocatedEvent* event) {
CHECK_EQ(container_, event->target());
// Find the old targeter to find the target of the event.
ui::EventTarget* window = container_;
ui::EventTargeter* targeter = scoped_targeter_->old_targeter();
while (!targeter && window->GetParentTarget()) {
window = window->GetParentTarget();
targeter = window->GetEventTargeter();
}
if (!targeter)
return NULL;
aura::Window* target = static_cast<aura::Window*>(
targeter->FindTargetForLocatedEvent(container_, event));
while (target && target->parent() != container_)
target = target->parent();
return target;
}
// Scroll the window list by |delta_y| amount. |delta_y| is negative when
// scrolling up; and positive when scrolling down.
void DoScroll(float delta_y) {
const float kEpsilon = 1e-3f;
float delta_y_p = std::abs(delta_y) / GetScrollableHeight();
aura::Window::Windows windows = window_list_provider_->GetWindowList();
if (delta_y < 0) {
// Scroll up. Start with the top-most (i.e. behind-most in terms of
// z-index) window, and try to scroll them up.
for (aura::Window::Windows::const_iterator iter = windows.begin();
delta_y_p > kEpsilon && iter != windows.end();
++iter) {
aura::Window* window = (*iter);
WindowOverviewState* state = window->GetProperty(kWindowOverviewState);
if (state->progress > kEpsilon) {
// It is possible to scroll |window| up. Scroll it up, and update
// |delta_y_p| for the next window.
float apply = delta_y_p * state->progress;
SetWindowProgress(window, std::max(0.f, state->progress - apply * 3));
delta_y_p -= apply;
}
}
} else {
// Scroll down. Start with the bottom-most (i.e. front-most in terms of
// z-index) window, and try to scroll them down.
aura::Window::Windows::const_reverse_iterator iter;
for (iter = windows.rbegin();
delta_y_p > kEpsilon && iter != windows.rend();
++iter) {
aura::Window* window = (*iter);
WindowOverviewState* state = window->GetProperty(kWindowOverviewState);
if (1.f - state->progress > kEpsilon) {
// It is possible to scroll |window| down. Scroll it down, and update
// |delta_y_p| for the next window.
SetWindowProgress(window, std::min(1.f, state->progress + delta_y_p));
delta_y_p /= 2.f;
}
}
}
}
int GetScrollableHeight() const {
const float kScrollableFraction = 0.65f;
return container_->bounds().height() * kScrollableFraction;
}
void CreateFlingerFor(const ui::GestureEvent& event) {
gfx::Vector2dF velocity(event.details().velocity_x(),
event.details().velocity_y());
fling_.reset(new ui::FlingCurve(velocity, gfx::FrameTime::Now()));
}
void AddAnimationObserver() {
ui::Compositor* compositor = container_->GetHost()->compositor();
if (!compositor->HasAnimationObserver(this))
compositor->AddAnimationObserver(this);
}
void RemoveAnimationObserver() {
ui::Compositor* compositor = container_->GetHost()->compositor();
if (compositor->HasAnimationObserver(this))
compositor->RemoveAnimationObserver(this);
}
void DragWindow(const ui::GestureEvent& event) {
CHECK(dragged_window_);
CHECK_EQ(ui::ET_GESTURE_SCROLL_UPDATE, event.type());
CHECK(overview_toolbar_);
gfx::Vector2dF dragged_distance =
dragged_start_location_ - event.location();
WindowOverviewState* dragged_state =
dragged_window_->GetProperty(kWindowOverviewState);
CHECK(dragged_state);
gfx::Transform transform = GetTransformForState(dragged_state);
transform.Translate(-dragged_distance.x(), 0);
dragged_window_->SetTransform(transform);
// Update the toolbar.
const int kMinDistanceForActionButtons = 20;
if (fabs(dragged_distance.x()) > kMinDistanceForActionButtons)
overview_toolbar_->ShowActionButtons();
else
overview_toolbar_->HideActionButtons();
// See if the touch-point is above one of the action-buttons.
OverviewToolbar::ActionType new_action =
overview_toolbar_->GetHighlightAction(event);
// If the touch-point is not above any of the action buttons, then highlight
// the close-button by default, if the user has dragged enough to close the
// window.
if (new_action == OverviewToolbar::ACTION_TYPE_NONE) {
if (fabs(dragged_distance.x()) > kMinDistanceForDismissal)
new_action = OverviewToolbar::ACTION_TYPE_CLOSE;
else
new_action = OverviewToolbar::ACTION_TYPE_NONE;
}
OverviewToolbar::ActionType previous_action =
overview_toolbar_->current_action();
overview_toolbar_->SetHighlightAction(new_action);
// If the user has selected to get into split-view mode, then show the
// window with full opacity. Otherwise, fade it out as it closes. Animate
// the opacity if transitioning to/from the split-view button.
bool animate_opacity =
(new_action != previous_action) &&
((new_action == OverviewToolbar::ACTION_TYPE_SPLIT) ||
(previous_action == OverviewToolbar::ACTION_TYPE_SPLIT));
float ratio = std::min(
1.f, std::abs(dragged_distance.x()) / kMinDistanceForDismissal);
float opacity =
(new_action == OverviewToolbar::ACTION_TYPE_SPLIT)
? 1
: gfx::Tween::FloatValueBetween(ratio, kMaxOpacity, kMinOpacity);
if (animate_opacity) {
ui::ScopedLayerAnimationSettings settings(
dragged_window_->layer()->GetAnimator());
dragged_window_->layer()->SetOpacity(opacity);
} else {
dragged_window_->layer()->SetOpacity(opacity);
}
}
bool ShouldCloseDragWindow(const ui::GestureEvent& event) const {
gfx::Vector2dF dragged_distance =
dragged_start_location_ - event.location();
if (event.type() == ui::ET_GESTURE_SCROLL_END)
return std::abs(dragged_distance.x()) >= kMinDistanceForDismissal;
CHECK_EQ(ui::ET_SCROLL_FLING_START, event.type());
const bool dragging_towards_right = dragged_distance.x() < 0;
const bool swipe_towards_right = event.details().velocity_x() > 0;
if (dragging_towards_right != swipe_towards_right)
return false;
const float kMinVelocityForDismissal = 500.f;
return std::abs(event.details().velocity_x()) > kMinVelocityForDismissal;
}
void CloseDragWindow(const ui::GestureEvent& gesture) {
// Animate |dragged_window_| offscreen first, then destroy it.
ui::ScopedLayerAnimationSettings settings(
dragged_window_->layer()->GetAnimator());
settings.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
settings.AddObserver(new ui::ClosureAnimationObserver(
base::Bind(&base::DeletePointer<aura::Window>, dragged_window_)));
WindowOverviewState* dragged_state =
dragged_window_->GetProperty(kWindowOverviewState);
CHECK(dragged_state);
gfx::Transform transform = dragged_window_->layer()->transform();
gfx::RectF transformed_bounds = dragged_window_->bounds();
transform.TransformRect(&transformed_bounds);
float transform_x = 0.f;
if (gesture.location().x() > dragged_start_location_.x())
transform_x = container_->bounds().right() - transformed_bounds.x();
else
transform_x = -(transformed_bounds.x() + transformed_bounds.width());
float scale = gfx::Tween::FloatValueBetween(
dragged_state->progress, kMinScale, kMaxScale);
transform.Translate(transform_x / scale, 0);
dragged_window_->SetTransform(transform);
dragged_window_->layer()->SetOpacity(kMinOpacity);
// Move the windows behind |dragged_window_| in the stack forward one step.
const aura::Window::Windows& list = container_->children();
for (aura::Window::Windows::const_iterator iter = list.begin();
iter != list.end() && *iter != dragged_window_;
++iter) {
aura::Window* window = *iter;
ui::ScopedLayerAnimationSettings settings(window->layer()->GetAnimator());
settings.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
WindowOverviewState* state = window->GetProperty(kWindowOverviewState);
aura::Window* next = *(iter + 1);
WindowOverviewState* next_state = next->GetProperty(kWindowOverviewState);
state->top = next_state->top;
state->bottom = next_state->bottom;
SetWindowProgress(window, next_state->progress);
}
dragged_window_ = NULL;
}
void RestoreDragWindow() {
CHECK(dragged_window_);
WindowOverviewState* dragged_state =
dragged_window_->GetProperty(kWindowOverviewState);
CHECK(dragged_state);
ui::ScopedLayerAnimationSettings settings(
dragged_window_->layer()->GetAnimator());
settings.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
dragged_window_->SetTransform(GetTransformForState(dragged_state));
dragged_window_->layer()->SetOpacity(1.f);
dragged_window_ = NULL;
}
void EndDragWindow(const ui::GestureEvent& gesture) {
CHECK(dragged_window_);
CHECK(overview_toolbar_);
OverviewToolbar::ActionType action = overview_toolbar_->current_action();
overview_toolbar_.reset();
if (action == OverviewToolbar::ACTION_TYPE_SPLIT)
delegate_->OnSplitViewMode(NULL, dragged_window_);
else if (ShouldCloseDragWindow(gesture))
CloseDragWindow(gesture);
else
RestoreDragWindow();
}
// ui::EventHandler:
virtual void OnMouseEvent(ui::MouseEvent* mouse) OVERRIDE {
if (mouse->type() == ui::ET_MOUSE_PRESSED) {
aura::Window* select = SelectWindowAt(mouse);
if (select) {
mouse->SetHandled();
delegate_->OnSelectWindow(select);
}
} else if (mouse->type() == ui::ET_MOUSEWHEEL) {
DoScroll(static_cast<ui::MouseWheelEvent*>(mouse)->y_offset());
}
}
virtual void OnScrollEvent(ui::ScrollEvent* scroll) OVERRIDE {
if (scroll->type() == ui::ET_SCROLL)
DoScroll(scroll->y_offset());
}
virtual void OnGestureEvent(ui::GestureEvent* gesture) OVERRIDE {
if (gesture->type() == ui::ET_GESTURE_TAP) {
aura::Window* select = SelectWindowAt(gesture);
if (select) {
gesture->SetHandled();
delegate_->OnSelectWindow(select);
}
} else if (gesture->type() == ui::ET_GESTURE_SCROLL_BEGIN) {
if (std::abs(gesture->details().scroll_x_hint()) >
std::abs(gesture->details().scroll_y_hint()) * 2) {
dragged_start_location_ = gesture->location();
dragged_window_ = SelectWindowAt(gesture);
if (dragged_window_)
overview_toolbar_.reset(new OverviewToolbar(container_));
}
} else if (gesture->type() == ui::ET_GESTURE_SCROLL_UPDATE) {
if (dragged_window_)
DragWindow(*gesture);
else
DoScroll(gesture->details().scroll_y());
gesture->SetHandled();
} else if (gesture->type() == ui::ET_GESTURE_SCROLL_END) {
if (dragged_window_)
EndDragWindow(*gesture);
gesture->SetHandled();
} else if (gesture->type() == ui::ET_SCROLL_FLING_START) {
if (dragged_window_) {
EndDragWindow(*gesture);
} else {
CreateFlingerFor(*gesture);
AddAnimationObserver();
}
gesture->SetHandled();
} else if (gesture->type() == ui::ET_GESTURE_TAP_DOWN) {
if (fling_) {
fling_.reset();
RemoveAnimationObserver();
gesture->SetHandled();
}
dragged_window_ = NULL;
}
}
// ui::CompositorAnimationObserver:
virtual void OnAnimationStep(base::TimeTicks timestamp) OVERRIDE {
CHECK(fling_);
if (fling_->start_timestamp() > timestamp)
return;
gfx::Vector2dF scroll = fling_->GetScrollAmountAtTime(timestamp);
if (scroll.IsZero()) {
fling_.reset();
RemoveAnimationObserver();
} else {
DoScroll(scroll.y());
}
}
const int kMinDistanceForDismissal = 300;
const float kMinScale = 0.6f;
const float kMaxScale = 0.95f;
const float kMaxOpacity = 1.0f;
const float kMinOpacity = 0.2f;
aura::Window* container_;
// Provider of the stack of windows to show in the overview mode. Not owned.
const WindowListProvider* window_list_provider_;
WindowOverviewModeDelegate* delegate_;
scoped_ptr<aura::ScopedWindowTargeter> scoped_targeter_;
scoped_ptr<ui::FlingCurve> fling_;
aura::Window* dragged_window_;
gfx::Point dragged_start_location_;
scoped_ptr<OverviewToolbar> overview_toolbar_;
DISALLOW_COPY_AND_ASSIGN(WindowOverviewModeImpl);
};
} // namespace
// static
scoped_ptr<WindowOverviewMode> WindowOverviewMode::Create(
aura::Window* container,
const WindowListProvider* window_list_provider,
WindowOverviewModeDelegate* delegate) {
return scoped_ptr<WindowOverviewMode>(
new WindowOverviewModeImpl(container, window_list_provider, delegate));
}
} // namespace athena
|