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_AURA_H_ | 5 #ifndef UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_ |
6 #define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_ | 6 #define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "ui/aura/window.h" |
10 #include "ui/aura/window_observer.h" | 12 #include "ui/aura/window_observer.h" |
11 #include "ui/views/controls/native/native_view_host_wrapper.h" | 13 #include "ui/views/controls/native/native_view_host_wrapper.h" |
12 #include "ui/views/views_export.h" | 14 #include "ui/views/views_export.h" |
13 | 15 |
14 namespace views { | 16 namespace views { |
15 | 17 |
16 class NativeViewHost; | 18 class NativeViewHost; |
| 19 class ClippingWindowObserver; |
17 | 20 |
18 // Aura implementation of NativeViewHostWrapper. | 21 // Aura implementation of NativeViewHostWrapper. |
19 class VIEWS_EXPORT NativeViewHostAura : public NativeViewHostWrapper, | 22 class VIEWS_EXPORT NativeViewHostAura : public NativeViewHostWrapper, |
20 public aura::WindowObserver { | 23 public aura::WindowObserver { |
21 public: | 24 public: |
22 explicit NativeViewHostAura(NativeViewHost* host); | 25 explicit NativeViewHostAura(NativeViewHost* host); |
23 virtual ~NativeViewHostAura(); | 26 virtual ~NativeViewHostAura(); |
24 | 27 |
25 // Overridden from NativeViewHostWrapper: | 28 // Overridden from NativeViewHostWrapper: |
26 virtual void NativeViewWillAttach() OVERRIDE; | 29 virtual void AttachNativeView() OVERRIDE; |
27 virtual void NativeViewDetaching(bool destroyed) OVERRIDE; | 30 virtual void NativeViewDetaching(bool destroyed) OVERRIDE; |
28 virtual void AddedToWidget() OVERRIDE; | 31 virtual void AddedToWidget() OVERRIDE; |
29 virtual void RemovedFromWidget() OVERRIDE; | 32 virtual void RemovedFromWidget() OVERRIDE; |
30 virtual void InstallClip(int x, int y, int w, int h) OVERRIDE; | 33 virtual void InstallClip(int x, int y, int w, int h) OVERRIDE; |
31 virtual bool HasInstalledClip() OVERRIDE; | 34 virtual bool HasInstalledClip() OVERRIDE; |
32 virtual void UninstallClip() OVERRIDE; | 35 virtual void UninstallClip() OVERRIDE; |
33 virtual void ShowWidget(int x, int y, int w, int h) OVERRIDE; | 36 virtual void ShowWidget(int x, int y, int w, int h) OVERRIDE; |
34 virtual void HideWidget() OVERRIDE; | 37 virtual void HideWidget() OVERRIDE; |
35 virtual void SetFocus() OVERRIDE; | 38 virtual void SetFocus() OVERRIDE; |
36 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; | 39 virtual gfx::NativeViewAccessible GetNativeViewAccessible() OVERRIDE; |
37 | 40 |
38 private: | 41 private: |
| 42 friend class ClippingWindowObserver; |
| 43 friend class NativeViewHostAuraTest; |
| 44 |
39 // Overridden from aura::WindowObserver: | 45 // Overridden from aura::WindowObserver: |
40 virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE; | 46 virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE; |
41 | 47 |
| 48 // Calculates the origin of the native view for the fast resize path, so it |
| 49 // can be clipped correctly. This value is affected by the current gravity |
| 50 // being applied. The formula for this calulation is: |
| 51 // |
| 52 // x' = width_scaling_factor * (content_width - clip_width) |
| 53 // y' = height_scaling_factor * (content_heigth - clip_height) |
| 54 // |
| 55 // , where the scaling factors are either 0, 0.5, or 1.0 depending on the |
| 56 // current gravity. |
| 57 gfx::Point CalculateNativeViewOrigin(const gfx::Rect& input_rect, |
| 58 const gfx::Rect& native_rect) const; |
| 59 |
| 60 |
| 61 // Reparents the native view with the clipping window existing between it and |
| 62 // its old parent, so that the fast resize path works. |clipping_window_| is |
| 63 // created by this call. |
| 64 void AddClippingWindow(); |
| 65 |
| 66 // If the native view has been reparented via AddClippingWindow, this call |
| 67 // undoes it. |clipping_window_| is destroyed by this call. |
| 68 void RemoveClippingWindow(); |
| 69 |
| 70 // Update the positioning of the clipping window and the attached native |
| 71 // view. The native view is a child of the clipping window, so is positioned |
| 72 // relative to it. |
| 73 void UpdateClippingWindow(); |
| 74 |
42 // Our associated NativeViewHost. | 75 // Our associated NativeViewHost. |
43 NativeViewHost* host_; | 76 NativeViewHost* host_; |
44 | 77 |
45 // Have we installed a clip region? | 78 // Have we installed a clip region? |
46 bool installed_clip_; | 79 bool installed_clip_; |
47 | 80 |
| 81 // Window that exists between the native view and the parent that allows for |
| 82 // clipping to occur. |
| 83 aura::Window* clipping_window_; |
| 84 |
| 85 scoped_ptr<ClippingWindowObserver> clipping_window_observer_; |
| 86 |
| 87 // The bounds of the content layer before any clipping actions occur. This is |
| 88 // restored when the clip is uninstalled. This value should be in the |
| 89 // coordinate space of host_->GetWidget(). |
| 90 gfx::Rect orig_bounds_; |
| 91 |
| 92 // The bounds of the clipping window. When no clip is installed |orig_bounds_| |
| 93 // and |clip_rect_| should be equal. When clip is installed |clip_rect_| is |
| 94 // manipulated to position of the clipping window in |
| 95 // UpdateClippingWindow. This value should be in the coordinate space of |
| 96 // host_->GetWidget(). |
| 97 gfx::Rect clip_rect_; |
| 98 |
48 DISALLOW_COPY_AND_ASSIGN(NativeViewHostAura); | 99 DISALLOW_COPY_AND_ASSIGN(NativeViewHostAura); |
49 }; | 100 }; |
50 | 101 |
51 } // namespace views | 102 } // namespace views |
52 | 103 |
53 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_ | 104 #endif // UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_ |
OLD | NEW |