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/root_window_host.h" | 9 #include "ui/aura/root_window_host.h" |
10 #include "ui/base/win/window_impl.h" | 10 #include "ui/base/win/window_impl.h" |
11 | 11 |
12 namespace ui { | 12 namespace ui { |
13 class ViewProp; | 13 class ViewProp; |
14 } | 14 } |
15 | 15 |
16 namespace aura { | 16 namespace aura { |
17 | 17 |
18 class RootWindowHostWin : public RootWindowHost, public ui::WindowImpl { | 18 class RootWindowHostWin : public RootWindowHost, public ui::WindowImpl { |
19 public: | 19 public: |
20 explicit RootWindowHostWin(const gfx::Rect& bounds); | 20 RootWindowHostWin(RootWindowHostDelegate* delegate, |
| 21 const gfx::Rect& bounds); |
21 virtual ~RootWindowHostWin(); | 22 virtual ~RootWindowHostWin(); |
22 | 23 |
23 // RootWindowHost: | 24 // RootWindowHost: |
24 virtual void SetRootWindow(RootWindow* root_window) OVERRIDE; | |
25 virtual RootWindow* GetRootWindow() OVERRIDE; | 25 virtual RootWindow* GetRootWindow() OVERRIDE; |
26 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 26 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
27 virtual void Show() OVERRIDE; | 27 virtual void Show() OVERRIDE; |
28 virtual void ToggleFullScreen() OVERRIDE; | 28 virtual void ToggleFullScreen() OVERRIDE; |
29 virtual gfx::Rect GetBounds() const OVERRIDE; | 29 virtual gfx::Rect GetBounds() const OVERRIDE; |
30 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 30 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
31 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 31 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
32 virtual void SetCapture() OVERRIDE; | 32 virtual void SetCapture() OVERRIDE; |
33 virtual void ReleaseCapture() OVERRIDE; | 33 virtual void ReleaseCapture() OVERRIDE; |
34 virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE; | 34 virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 MSG_WM_SIZE(OnSize) | 67 MSG_WM_SIZE(OnSize) |
68 END_MSG_MAP() | 68 END_MSG_MAP() |
69 | 69 |
70 void OnClose(); | 70 void OnClose(); |
71 LRESULT OnKeyEvent(UINT message, WPARAM w_param, LPARAM l_param); | 71 LRESULT OnKeyEvent(UINT message, WPARAM w_param, LPARAM l_param); |
72 LRESULT OnMouseRange(UINT message, WPARAM w_param, LPARAM l_param); | 72 LRESULT OnMouseRange(UINT message, WPARAM w_param, LPARAM l_param); |
73 LRESULT OnCaptureChanged(UINT message, WPARAM w_param, LPARAM l_param); | 73 LRESULT OnCaptureChanged(UINT message, WPARAM w_param, LPARAM l_param); |
74 void OnPaint(HDC dc); | 74 void OnPaint(HDC dc); |
75 void OnSize(UINT param, const CSize& size); | 75 void OnSize(UINT param, const CSize& size); |
76 | 76 |
77 RootWindow* root_window_; | 77 RootWindowHostDelegate* delegate_; |
78 | 78 |
79 bool fullscreen_; | 79 bool fullscreen_; |
80 bool has_capture_; | 80 bool has_capture_; |
81 RECT saved_window_rect_; | 81 RECT saved_window_rect_; |
82 DWORD saved_window_style_; | 82 DWORD saved_window_style_; |
83 DWORD saved_window_ex_style_; | 83 DWORD saved_window_ex_style_; |
84 | 84 |
85 scoped_ptr<ui::ViewProp> prop_; | 85 scoped_ptr<ui::ViewProp> prop_; |
86 | 86 |
87 DISALLOW_COPY_AND_ASSIGN(RootWindowHostWin); | 87 DISALLOW_COPY_AND_ASSIGN(RootWindowHostWin); |
88 }; | 88 }; |
89 | 89 |
90 } // namespace aura | 90 } // namespace aura |
91 | 91 |
92 #endif // UI_AURA_ROOT_WINDOW_HOST_WIN_H_ | 92 #endif // UI_AURA_ROOT_WINDOW_HOST_WIN_H_ |
OLD | NEW |