blob: 4004a46f86eeae0cc8b8b379aeb07de8b9e278b2 (
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
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
|
// 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 "ui/wm/core/window_util.h"
#include "ui/aura/window.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/layer_tree_owner.h"
#include "ui/wm/core/transient_window_manager.h"
#include "ui/wm/public/activation_client.h"
namespace {
// Invokes RecreateLayer() on all the children of |to_clone|, adding the newly
// cloned children to |parent|.
//
// WARNING: It is assumed that |parent| is ultimately owned by a LayerTreeOwner.
void CloneChildren(ui::Layer* to_clone, ui::Layer* parent) {
typedef std::vector<ui::Layer*> Layers;
// Make a copy of the children since RecreateLayer() mutates it.
Layers children(to_clone->children());
for (Layers::const_iterator i = children.begin(); i != children.end(); ++i) {
ui::LayerOwner* owner = (*i)->owner();
ui::Layer* old_layer = owner ? owner->RecreateLayer().release() : NULL;
if (old_layer) {
parent->Add(old_layer);
// RecreateLayer() moves the existing children to the new layer. Create a
// copy of those.
CloneChildren(owner->layer(), old_layer);
}
}
}
} // namespace
namespace wm {
void ActivateWindow(aura::Window* window) {
DCHECK(window);
DCHECK(window->GetRootWindow());
aura::client::GetActivationClient(window->GetRootWindow())->ActivateWindow(
window);
}
void DeactivateWindow(aura::Window* window) {
DCHECK(window);
DCHECK(window->GetRootWindow());
aura::client::GetActivationClient(window->GetRootWindow())->DeactivateWindow(
window);
}
bool IsActiveWindow(aura::Window* window) {
DCHECK(window);
if (!window->GetRootWindow())
return false;
aura::client::ActivationClient* client =
aura::client::GetActivationClient(window->GetRootWindow());
return client && client->GetActiveWindow() == window;
}
bool CanActivateWindow(aura::Window* window) {
DCHECK(window);
if (!window->GetRootWindow())
return false;
aura::client::ActivationClient* client =
aura::client::GetActivationClient(window->GetRootWindow());
return client && client->CanActivateWindow(window);
}
aura::Window* GetActivatableWindow(aura::Window* window) {
aura::client::ActivationClient* client =
aura::client::GetActivationClient(window->GetRootWindow());
return client ? client->GetActivatableWindow(window) : NULL;
}
aura::Window* GetToplevelWindow(aura::Window* window) {
aura::client::ActivationClient* client =
aura::client::GetActivationClient(window->GetRootWindow());
return client ? client->GetToplevelWindow(window) : NULL;
}
scoped_ptr<ui::LayerTreeOwner> RecreateLayers(ui::LayerOwner* root) {
scoped_ptr<ui::LayerTreeOwner> old_layer(
new ui::LayerTreeOwner(root->RecreateLayer().release()));
if (old_layer->root())
CloneChildren(root->layer(), old_layer->root());
return old_layer.Pass();
}
aura::Window* GetTransientParent(aura::Window* window) {
return const_cast<aura::Window*>(GetTransientParent(
const_cast<const aura::Window*>(window)));
}
const aura::Window* GetTransientParent(const aura::Window* window) {
const TransientWindowManager* manager = TransientWindowManager::Get(window);
return manager ? manager->transient_parent() : NULL;
}
const std::vector<aura::Window*>& GetTransientChildren(
const aura::Window* window) {
const TransientWindowManager* manager = TransientWindowManager::Get(window);
if (manager)
return manager->transient_children();
static std::vector<aura::Window*>* shared = new std::vector<aura::Window*>;
return *shared;
}
void AddTransientChild(aura::Window* parent, aura::Window* child) {
TransientWindowManager::Get(parent)->AddTransientChild(child);
}
void RemoveTransientChild(aura::Window* parent, aura::Window* child) {
TransientWindowManager::Get(parent)->RemoveTransientChild(child);
}
bool HasTransientAncestor(const aura::Window* window,
const aura::Window* ancestor) {
const aura::Window* transient_parent = GetTransientParent(window);
if (transient_parent == ancestor)
return true;
return transient_parent ?
HasTransientAncestor(transient_parent, ancestor) : false;
}
} // namespace wm
|