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_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
6 #define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ | 6 #define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "ui/views/controls/native/native_view_host_wrapper.h" | 9 #include "ui/views/controls/native/native_view_host_wrapper.h" |
10 | 10 |
11 namespace views { | 11 namespace views { |
12 | 12 |
13 class NativeViewHost; | 13 class NativeViewHost; |
14 | 14 |
15 // A Windows implementation of NativeViewHostWrapper | 15 // A Windows implementation of NativeViewHostWrapper |
16 class NativeViewHostWin : public NativeViewHostWrapper { | 16 class NativeViewHostWin : public NativeViewHostWrapper { |
17 public: | 17 public: |
18 explicit NativeViewHostWin(NativeViewHost* host); | 18 explicit NativeViewHostWin(NativeViewHost* host); |
19 virtual ~NativeViewHostWin(); | 19 virtual ~NativeViewHostWin(); |
20 | 20 |
21 // Overridden from NativeViewHostWrapper: | 21 // Overridden from NativeViewHostWrapper: |
22 virtual void NativeViewWillAttach(); | 22 virtual void AttachNativeView(); |
23 virtual void NativeViewDetaching(bool destroyed); | 23 virtual void NativeViewDetaching(bool destroyed); |
24 virtual void AddedToWidget(); | 24 virtual void AddedToWidget(); |
25 virtual void RemovedFromWidget(); | 25 virtual void RemovedFromWidget(); |
26 virtual void InstallClip(int x, int y, int w, int h); | 26 virtual void InstallClip(int x, int y, int w, int h); |
27 virtual bool HasInstalledClip(); | 27 virtual bool HasInstalledClip(); |
28 virtual void UninstallClip(); | 28 virtual void UninstallClip(); |
29 virtual void ShowWidget(int x, int y, int w, int h); | 29 virtual void ShowWidget(int x, int y, int w, int h); |
30 virtual void HideWidget(); | 30 virtual void HideWidget(); |
31 virtual void SetFocus(); | 31 virtual void SetFocus(); |
32 virtual gfx::NativeViewAccessible GetNativeViewAccessible(); | 32 virtual gfx::NativeViewAccessible GetNativeViewAccessible(); |
33 | 33 |
34 private: | 34 private: |
35 // Our associated NativeViewHost. | 35 // Our associated NativeViewHost. |
36 NativeViewHost* host_; | 36 NativeViewHost* host_; |
37 | 37 |
38 // Have we installed a region on the gfx::NativeView used to clip to only the | 38 // Have we installed a region on the gfx::NativeView used to clip to only the |
39 // visible portion of the gfx::NativeView ? | 39 // visible portion of the gfx::NativeView ? |
40 bool installed_clip_; | 40 bool installed_clip_; |
41 | 41 |
42 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); | 42 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); |
43 }; | 43 }; |
44 | 44 |
45 } // namespace views | 45 } // namespace views |
46 | 46 |
47 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ | 47 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
OLD | NEW |