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
|
// 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.
#ifndef UI_AURA_ENV_H_
#define UI_AURA_ENV_H_
#include <memory>
#include "base/callback_forward.h"
#include "base/macros.h"
#include "base/observer_list.h"
#include "base/supports_user_data.h"
#include "ui/aura/aura_export.h"
#include "ui/base/dragdrop/os_exchange_data_provider_factory.h"
#include "ui/events/event_handler.h"
#include "ui/events/event_target.h"
#include "ui/events/system_input_injector.h"
#include "ui/gfx/geometry/point.h"
namespace base {
class UnguessableToken;
}
namespace mojo {
template <typename MojoInterface>
class InterfacePtr;
}
namespace ui {
class ContextFactory;
class ContextFactoryPrivate;
class PlatformEventSource;
namespace mojom {
class WindowTreeClient;
}
}
namespace aura {
namespace test {
class EnvTestHelper;
class EnvWindowTreeClientSetter;
}
class EnvInputStateController;
class EnvObserver;
class InputStateLookup;
class MusMouseLocationUpdater;
class Window;
class WindowPort;
class WindowTreeClient;
class WindowTreeHost;
// A singleton object that tracks general state within Aura.
class AURA_EXPORT Env : public ui::EventTarget,
public ui::OSExchangeDataProviderFactory::Factory,
public ui::SystemInputInjectorFactory,
public base::SupportsUserData {
public:
enum class Mode {
// Classic aura.
LOCAL,
// Aura with a backend of mus.
MUS,
};
~Env() override;
// NOTE: if you pass in Mode::MUS it is expected that you call
// SetWindowTreeClient() before any windows are created.
static std::unique_ptr<Env> CreateInstance(Mode mode = Mode::LOCAL);
static Env* GetInstance();
static Env* GetInstanceDontCreate();
Mode mode() const { return mode_; }
// Called internally to create the appropriate WindowPort implementation.
std::unique_ptr<WindowPort> CreateWindowPort(Window* window);
void AddObserver(EnvObserver* observer);
void RemoveObserver(EnvObserver* observer);
EnvInputStateController* env_controller() const {
return env_controller_.get();
}
int mouse_button_flags() const { return mouse_button_flags_; }
void set_mouse_button_flags(int mouse_button_flags) {
mouse_button_flags_ = mouse_button_flags;
}
// Returns true if a mouse button is down. This may query the native OS,
// otherwise it uses |mouse_button_flags_|.
bool IsMouseButtonDown() const;
// Gets/sets the last mouse location seen in a mouse event in the screen
// coordinates.
const gfx::Point& last_mouse_location() const;
void set_last_mouse_location(const gfx::Point& last_mouse_location) {
last_mouse_location_ = last_mouse_location;
}
// Whether any touch device is currently down.
bool is_touch_down() const { return is_touch_down_; }
void set_touch_down(bool value) { is_touch_down_ = value; }
void set_context_factory(ui::ContextFactory* context_factory) {
context_factory_ = context_factory;
}
ui::ContextFactory* context_factory() { return context_factory_; }
// Sets |initial_throttle_input_on_resize| the next time Env is created. This
// is only useful in tests that need to disable input resize.
static void set_initial_throttle_input_on_resize_for_testing(
bool throttle_input) {
initial_throttle_input_on_resize_ = throttle_input;
}
void set_throttle_input_on_resize_for_testing(bool throttle_input) {
throttle_input_on_resize_ = throttle_input;
}
bool throttle_input_on_resize() const { return throttle_input_on_resize_; }
void set_context_factory_private(
ui::ContextFactoryPrivate* context_factory_private) {
context_factory_private_ = context_factory_private;
}
ui::ContextFactoryPrivate* context_factory_private() {
return context_factory_private_;
}
// See CreateInstance() for description.
void SetWindowTreeClient(WindowTreeClient* window_tree_client);
bool HasWindowTreeClient() const { return window_tree_client_ != nullptr; }
// Schedules an embed of a client. See
// mojom::WindowTreeClient::ScheduleEmbed() for details.
void ScheduleEmbed(
mojo::InterfacePtr<ui::mojom::WindowTreeClient> client,
base::OnceCallback<void(const base::UnguessableToken&)> callback);
private:
friend class test::EnvTestHelper;
friend class test::EnvWindowTreeClientSetter;
friend class EventInjector;
friend class MusMouseLocationUpdater;
friend class Window;
friend class WindowTreeClient; // For call to WindowTreeClientDestroyed().
friend class WindowTreeHost;
explicit Env(Mode mode);
void Init();
// After calling this method, all OSExchangeDataProvider instances will be
// Mus instances. We can't do this work in Init(), because our mode may
// changed via the EnvTestHelper.
void EnableMusOSExchangeDataProvider();
// After calling this method, all SystemInputInjectors will go through mus
// instead of ozone.
void EnableMusOverrideInputInjector();
// Called by the Window when it is initialized. Notifies observers.
void NotifyWindowInitialized(Window* window);
// Called by the WindowTreeHost when it is initialized. Notifies observers.
void NotifyHostInitialized(WindowTreeHost* host);
// Invoked by WindowTreeHost when it is activated. Notifies observers.
void NotifyHostActivated(WindowTreeHost* host);
void WindowTreeClientDestroyed(WindowTreeClient* client);
// Overridden from ui::EventTarget:
bool CanAcceptEvent(const ui::Event& event) override;
ui::EventTarget* GetParentTarget() override;
std::unique_ptr<ui::EventTargetIterator> GetChildIterator() const override;
ui::EventTargeter* GetEventTargeter() override;
// Overridden from ui::OSExchangeDataProviderFactory::Factory:
std::unique_ptr<ui::OSExchangeData::Provider> BuildProvider() override;
// Overridden from SystemInputInjectorFactory:
std::unique_ptr<ui::SystemInputInjector> CreateSystemInputInjector() override;
// This is not const for tests, which may share Env across tests and so needs
// to reset the value.
Mode mode_;
// Intentionally not exposed publicly. Someday we might want to support
// multiple WindowTreeClients. Use EnvTestHelper in tests. This is set to null
// during shutdown.
WindowTreeClient* window_tree_client_ = nullptr;
base::ObserverList<EnvObserver> observers_;
std::unique_ptr<EnvInputStateController> env_controller_;
int mouse_button_flags_;
// Location of last mouse event, in screen coordinates.
mutable gfx::Point last_mouse_location_;
bool is_touch_down_;
bool get_last_mouse_location_from_mus_;
// This may be set to true in tests to force using |last_mouse_location_|
// rather than querying WindowTreeClient.
bool always_use_last_mouse_location_ = false;
// Whether we set ourselves as the OSExchangeDataProviderFactory.
bool is_os_exchange_data_provider_factory_ = false;
// Whether we set ourselves as the SystemInputInjectorFactory.
bool is_override_input_injector_factory_ = false;
std::unique_ptr<InputStateLookup> input_state_lookup_;
std::unique_ptr<ui::PlatformEventSource> event_source_;
ui::ContextFactory* context_factory_;
ui::ContextFactoryPrivate* context_factory_private_;
// This is set to true when the WindowTreeClient is destroyed. It triggers
// creating a different WindowPort implementation.
bool in_mus_shutdown_ = false;
static bool initial_throttle_input_on_resize_;
bool throttle_input_on_resize_ = initial_throttle_input_on_resize_;
DISALLOW_COPY_AND_ASSIGN(Env);
};
} // namespace aura
#endif // UI_AURA_ENV_H_
|