1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_AURA_WINDOW_TREE_HOST_H_
6 #define UI_AURA_WINDOW_TREE_HOST_H_
10 #include "base/event_types.h"
11 #include "base/message_loop/message_loop.h"
12 #include "ui/aura/aura_export.h"
13 #include "ui/base/cursor/cursor.h"
14 #include "ui/events/event_source.h"
15 #include "ui/gfx/native_widget_types.h"
33 class WindowTreeHostTestApi
;
36 class WindowEventDispatcher
;
37 class WindowTreeHostObserver
;
39 // WindowTreeHost bridges between a native window and the embedded RootWindow.
40 // It provides the accelerated widget and maps events from the native os to
42 class AURA_EXPORT WindowTreeHost
{
44 virtual ~WindowTreeHost();
46 // Creates a new WindowTreeHost. The caller owns the returned value.
47 static WindowTreeHost
* Create(const gfx::Rect
& bounds
);
49 // Returns the WindowTreeHost for the specified accelerated widget, or NULL
50 // if there is none associated.
51 static WindowTreeHost
* GetForAcceleratedWidget(gfx::AcceleratedWidget widget
);
55 void InitCompositor();
57 void AddObserver(WindowTreeHostObserver
* observer
);
58 void RemoveObserver(WindowTreeHostObserver
* observer
);
60 Window
* window() { return window_
; }
61 const Window
* window() const { return window_
; }
63 ui::EventProcessor
* event_processor();
65 WindowEventDispatcher
* dispatcher() {
66 return const_cast<WindowEventDispatcher
*>(
67 const_cast<const WindowTreeHost
*>(this)->dispatcher());
69 const WindowEventDispatcher
* dispatcher() const { return dispatcher_
.get(); }
71 ui::Compositor
* compositor() { return compositor_
.get(); }
73 // Gets/Sets the root window's transform.
74 virtual gfx::Transform
GetRootTransform() const;
75 virtual void SetRootTransform(const gfx::Transform
& transform
);
76 virtual gfx::Transform
GetInverseRootTransform() const;
78 // Updates the root window's size using |host_size|, current
79 // transform and insets.
80 virtual void UpdateRootWindowSize(const gfx::Size
& host_size
);
82 // Returns the actual size of the screen.
83 // (gfx::Screen only reports on the virtual desktop exposed by Aura.)
84 static gfx::Size
GetNativeScreenSize();
86 // Converts |point| from the root window's coordinate system to native
88 void ConvertPointToNativeScreen(gfx::Point
* point
) const;
90 // Converts |point| from native screen coordinate system to the root window's.
91 void ConvertPointFromNativeScreen(gfx::Point
* point
) const;
93 // Converts |point| from the root window's coordinate system to the
95 void ConvertPointToHost(gfx::Point
* point
) const;
97 // Converts |point| from the host window's coordinate system to the
99 void ConvertPointFromHost(gfx::Point
* point
) const;
102 // Sets the currently-displayed cursor. If the cursor was previously hidden
103 // via ShowCursor(false), it will remain hidden until ShowCursor(true) is
104 // called, at which point the cursor that was last set via SetCursor() will be
106 void SetCursor(gfx::NativeCursor cursor
);
108 // Invoked when the cursor's visibility has changed.
109 void OnCursorVisibilityChanged(bool visible
);
111 // Moves the cursor to the specified location relative to the root window.
112 void MoveCursorTo(const gfx::Point
& location
);
114 // Moves the cursor to the |host_location| given in host coordinates.
115 void MoveCursorToHostLocation(const gfx::Point
& host_location
);
117 gfx::NativeCursor
last_cursor() const { return last_cursor_
; }
119 // Returns the EventSource responsible for dispatching events to the window
121 virtual ui::EventSource
* GetEventSource() = 0;
123 // Returns the accelerated widget.
124 virtual gfx::AcceleratedWidget
GetAcceleratedWidget() = 0;
126 // Shows the WindowTreeHost.
127 virtual void Show() = 0;
129 // Hides the WindowTreeHost.
130 virtual void Hide() = 0;
132 // Gets/Sets the size of the WindowTreeHost.
133 virtual gfx::Rect
GetBounds() const = 0;
134 virtual void SetBounds(const gfx::Rect
& bounds
) = 0;
136 // Sets the OS capture to the root window.
137 virtual void SetCapture() = 0;
139 // Releases OS capture of the root window.
140 virtual void ReleaseCapture() = 0;
142 // Posts |native_event| to the platform's event queue.
143 virtual void PostNativeEvent(const base::NativeEvent
& native_event
) = 0;
146 friend class TestScreen
; // TODO(beng): see if we can remove/consolidate.
149 void DestroyCompositor();
150 void DestroyDispatcher();
152 void CreateCompositor(gfx::AcceleratedWidget accelerated_widget
);
154 // Returns the location of the RootWindow on native screen.
155 virtual gfx::Point
GetLocationOnNativeScreen() const = 0;
157 void OnHostMoved(const gfx::Point
& new_location
);
158 void OnHostResized(const gfx::Size
& new_size
);
159 void OnHostCloseRequested();
160 void OnHostActivated();
161 void OnHostLostWindowCapture();
163 // Sets the currently displayed cursor.
164 virtual void SetCursorNative(gfx::NativeCursor cursor
) = 0;
166 // Moves the cursor to the specified location relative to the root window.
167 virtual void MoveCursorToNative(const gfx::Point
& location
) = 0;
169 // kCalled when the cursor visibility has changed.
170 virtual void OnCursorVisibilityChangedNative(bool show
) = 0;
173 friend class test::WindowTreeHostTestApi
;
175 // Moves the cursor to the specified location. This method is internally used
176 // by MoveCursorTo() and MoveCursorToHostLocation().
177 void MoveCursorToInternal(const gfx::Point
& root_location
,
178 const gfx::Point
& host_location
);
180 // We don't use a scoped_ptr for |window_| since we need this ptr to be valid
181 // during its deletion. (Window's dtor notifies observers that may attempt to
182 // reach back up to access this object which will be valid until the end of
184 Window
* window_
; // Owning.
186 ObserverList
<WindowTreeHostObserver
> observers_
;
188 scoped_ptr
<WindowEventDispatcher
> dispatcher_
;
190 scoped_ptr
<ui::Compositor
> compositor_
;
192 // Last cursor set. Used for testing.
193 gfx::NativeCursor last_cursor_
;
194 gfx::Point last_cursor_request_position_in_host_
;
196 scoped_ptr
<ui::ViewProp
> prop_
;
198 DISALLOW_COPY_AND_ASSIGN(WindowTreeHost
);
203 #endif // UI_AURA_WINDOW_TREE_HOST_H_