OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_AURA_ROOT_WINDOW_HOST_WIN_H_ | 5 #ifndef UI_AURA_ROOT_WINDOW_HOST_WIN_H_ |
6 #define UI_AURA_ROOT_WINDOW_HOST_WIN_H_ | 6 #define UI_AURA_ROOT_WINDOW_HOST_WIN_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "ui/aura/aura_export.h" | 9 #include "ui/aura/aura_export.h" |
10 #include "ui/aura/window_tree_host.h" | 10 #include "ui/aura/window_tree_host.h" |
11 #include "ui/gfx/win/window_impl.h" | 11 #include "ui/gfx/win/window_impl.h" |
12 | 12 |
13 namespace aura { | 13 namespace aura { |
14 | 14 |
15 class RootWindowHostWin : public RootWindowHost, public gfx::WindowImpl { | 15 class WindowTreeHostWin : public WindowTreeHost, public gfx::WindowImpl { |
16 public: | 16 public: |
17 RootWindowHostWin(const gfx::Rect& bounds); | 17 WindowTreeHostWin(const gfx::Rect& bounds); |
18 virtual ~RootWindowHostWin(); | 18 virtual ~WindowTreeHostWin(); |
19 // RootWindowHost: | 19 // WindowTreeHost: |
20 virtual RootWindow* GetRootWindow() OVERRIDE; | 20 virtual RootWindow* GetRootWindow() OVERRIDE; |
21 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 21 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
22 virtual void Show() OVERRIDE; | 22 virtual void Show() OVERRIDE; |
23 virtual void Hide() OVERRIDE; | 23 virtual void Hide() OVERRIDE; |
24 virtual void ToggleFullScreen() OVERRIDE; | 24 virtual void ToggleFullScreen() OVERRIDE; |
25 virtual gfx::Rect GetBounds() const OVERRIDE; | 25 virtual gfx::Rect GetBounds() const OVERRIDE; |
26 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 26 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
27 virtual gfx::Insets GetInsets() const OVERRIDE; | 27 virtual gfx::Insets GetInsets() const OVERRIDE; |
28 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE; | 28 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE; |
29 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 29 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
30 virtual void SetCapture() OVERRIDE; | 30 virtual void SetCapture() OVERRIDE; |
31 virtual void ReleaseCapture() OVERRIDE; | 31 virtual void ReleaseCapture() OVERRIDE; |
32 virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE; | 32 virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE; |
33 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; | 33 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; |
34 virtual bool ConfineCursorToRootWindow() OVERRIDE; | 34 virtual bool ConfineCursorToRootWindow() OVERRIDE; |
35 virtual void UnConfineCursor() OVERRIDE; | 35 virtual void UnConfineCursor() OVERRIDE; |
36 virtual void OnCursorVisibilityChanged(bool show) OVERRIDE; | 36 virtual void OnCursorVisibilityChanged(bool show) OVERRIDE; |
37 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE; | 37 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE; |
38 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; | 38 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; |
39 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; | 39 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; |
40 virtual void PrepareForShutdown() OVERRIDE; | 40 virtual void PrepareForShutdown() OVERRIDE; |
41 | 41 |
42 private: | 42 private: |
43 BEGIN_MSG_MAP_EX(RootWindowHostWin) | 43 BEGIN_MSG_MAP_EX(WindowTreeHostWin) |
44 // Range handlers must go first! | 44 // Range handlers must go first! |
45 MESSAGE_RANGE_HANDLER_EX(WM_MOUSEFIRST, WM_MOUSELAST, OnMouseRange) | 45 MESSAGE_RANGE_HANDLER_EX(WM_MOUSEFIRST, WM_MOUSELAST, OnMouseRange) |
46 MESSAGE_RANGE_HANDLER_EX(WM_NCMOUSEMOVE, WM_NCXBUTTONDBLCLK, OnMouseRange) | 46 MESSAGE_RANGE_HANDLER_EX(WM_NCMOUSEMOVE, WM_NCXBUTTONDBLCLK, OnMouseRange) |
47 | 47 |
48 // Mouse capture events. | 48 // Mouse capture events. |
49 MESSAGE_HANDLER_EX(WM_CAPTURECHANGED, OnCaptureChanged) | 49 MESSAGE_HANDLER_EX(WM_CAPTURECHANGED, OnCaptureChanged) |
50 | 50 |
51 // Key events. | 51 // Key events. |
52 MESSAGE_HANDLER_EX(WM_KEYDOWN, OnKeyEvent) | 52 MESSAGE_HANDLER_EX(WM_KEYDOWN, OnKeyEvent) |
53 MESSAGE_HANDLER_EX(WM_KEYUP, OnKeyEvent) | 53 MESSAGE_HANDLER_EX(WM_KEYUP, OnKeyEvent) |
(...skipping 18 matching lines...) Expand all Loading... |
72 void OnMove(const CPoint& point); | 72 void OnMove(const CPoint& point); |
73 void OnPaint(HDC dc); | 73 void OnPaint(HDC dc); |
74 void OnSize(UINT param, const CSize& size); | 74 void OnSize(UINT param, const CSize& size); |
75 | 75 |
76 bool fullscreen_; | 76 bool fullscreen_; |
77 bool has_capture_; | 77 bool has_capture_; |
78 RECT saved_window_rect_; | 78 RECT saved_window_rect_; |
79 DWORD saved_window_style_; | 79 DWORD saved_window_style_; |
80 DWORD saved_window_ex_style_; | 80 DWORD saved_window_ex_style_; |
81 | 81 |
82 DISALLOW_COPY_AND_ASSIGN(RootWindowHostWin); | 82 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostWin); |
83 }; | 83 }; |
84 | 84 |
85 namespace test { | 85 namespace test { |
86 | 86 |
87 // Set true to let RootWindowHostWin use a popup window | 87 // Set true to let WindowTreeHostWin use a popup window |
88 // with no frame/title so that the window size and test's | 88 // with no frame/title so that the window size and test's |
89 // expectations matches. | 89 // expectations matches. |
90 AURA_EXPORT void SetUsePopupAsRootWindowForTest(bool use); | 90 AURA_EXPORT void SetUsePopupAsRootWindowForTest(bool use); |
91 | 91 |
92 } // namespace | 92 } // namespace |
93 | 93 |
94 } // namespace aura | 94 } // namespace aura |
95 | 95 |
96 #endif // UI_AURA_ROOT_WINDOW_HOST_WIN_H_ | 96 #endif // UI_AURA_ROOT_WINDOW_HOST_WIN_H_ |
OLD | NEW |