OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
(...skipping 14 matching lines...) Expand all Loading... |
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 // Invokes ViewRemoved() on the FocusManager for all the child Widgets of our |
| 36 // NativeView. This is used when detaching to ensure the FocusManager doesn't |
| 37 // have a reference to a View that is no longer reachable. |
| 38 void ClearFocus(); |
| 39 |
35 // Our associated NativeViewHost. | 40 // Our associated NativeViewHost. |
36 NativeViewHost* host_; | 41 NativeViewHost* host_; |
37 | 42 |
38 // Have we installed a region on the gfx::NativeView used to clip to only the | 43 // Have we installed a region on the gfx::NativeView used to clip to only the |
39 // visible portion of the gfx::NativeView ? | 44 // visible portion of the gfx::NativeView ? |
40 bool installed_clip_; | 45 bool installed_clip_; |
41 | 46 |
42 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); | 47 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); |
43 }; | 48 }; |
44 | 49 |
45 } // namespace views | 50 } // namespace views |
46 | 51 |
47 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ | 52 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
OLD | NEW |