OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ASH_COMMON_WM_WINDOW_H_ | 5 #ifndef ASH_COMMON_WM_WINDOW_H_ |
6 #define ASH_COMMON_WM_WINDOW_H_ | 6 #define ASH_COMMON_WM_WINDOW_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "third_party/skia/include/core/SkColor.h" |
14 #include "ui/base/ui_base_types.h" | 15 #include "ui/base/ui_base_types.h" |
15 #include "ui/compositor/layer_animation_element.h" | 16 #include "ui/compositor/layer_animation_element.h" |
16 #include "ui/wm/core/window_animations.h" | 17 #include "ui/wm/core/window_animations.h" |
17 #include "ui/wm/public/window_types.h" | 18 #include "ui/wm/public/window_types.h" |
18 | 19 |
19 namespace display { | 20 namespace display { |
20 class Display; | 21 class Display; |
21 } | 22 } |
22 | 23 |
23 namespace gfx { | 24 namespace gfx { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // Returns the visibility requested by this window. IsVisible() takes into | 111 // Returns the visibility requested by this window. IsVisible() takes into |
111 // account the visibility of the layer and ancestors, where as this tracks | 112 // account the visibility of the layer and ancestors, where as this tracks |
112 // whether Show() without a Hide() has been invoked. | 113 // whether Show() without a Hide() has been invoked. |
113 virtual bool GetTargetVisibility() const = 0; | 114 virtual bool GetTargetVisibility() const = 0; |
114 | 115 |
115 virtual bool IsVisible() const = 0; | 116 virtual bool IsVisible() const = 0; |
116 | 117 |
117 virtual void SetOpacity(float opacity) = 0; | 118 virtual void SetOpacity(float opacity) = 0; |
118 virtual float GetTargetOpacity() const = 0; | 119 virtual float GetTargetOpacity() const = 0; |
119 | 120 |
| 121 virtual gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const = 0; |
| 122 |
120 virtual void SetTransform(const gfx::Transform& transform) = 0; | 123 virtual void SetTransform(const gfx::Transform& transform) = 0; |
121 virtual gfx::Transform GetTargetTransform() const = 0; | 124 virtual gfx::Transform GetTargetTransform() const = 0; |
122 | 125 |
123 virtual bool IsSystemModal() const = 0; | 126 virtual bool IsSystemModal() const = 0; |
124 | 127 |
125 virtual bool GetBoolProperty(WmWindowProperty key) = 0; | 128 virtual bool GetBoolProperty(WmWindowProperty key) = 0; |
| 129 virtual SkColor GetColorProperty(WmWindowProperty key) = 0; |
| 130 virtual void SetColorProperty(WmWindowProperty key, SkColor value) = 0; |
126 virtual int GetIntProperty(WmWindowProperty key) = 0; | 131 virtual int GetIntProperty(WmWindowProperty key) = 0; |
127 virtual void SetIntProperty(WmWindowProperty key, int value) = 0; | 132 virtual void SetIntProperty(WmWindowProperty key, int value) = 0; |
128 | 133 |
129 // Returns null if there are no details. | 134 // Returns null if there are no details. |
130 virtual ShelfItemDetails* GetShelfItemDetails() = 0; | 135 virtual ShelfItemDetails* GetShelfItemDetails() = 0; |
131 virtual void SetShelfItemDetails(const ShelfItemDetails& details) = 0; | 136 virtual void SetShelfItemDetails(const ShelfItemDetails& details) = 0; |
132 virtual void ClearShelfItemDetails() = 0; | 137 virtual void ClearShelfItemDetails() = 0; |
133 | 138 |
134 wm::WindowState* GetWindowState() { | 139 wm::WindowState* GetWindowState() { |
135 return const_cast<wm::WindowState*>( | 140 return const_cast<wm::WindowState*>( |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 virtual void AddLimitedPreTargetHandler(ui::EventHandler* handler) = 0; | 319 virtual void AddLimitedPreTargetHandler(ui::EventHandler* handler) = 0; |
315 virtual void RemoveLimitedPreTargetHandler(ui::EventHandler* handler) = 0; | 320 virtual void RemoveLimitedPreTargetHandler(ui::EventHandler* handler) = 0; |
316 | 321 |
317 protected: | 322 protected: |
318 virtual ~WmWindow() {} | 323 virtual ~WmWindow() {} |
319 }; | 324 }; |
320 | 325 |
321 } // namespace ash | 326 } // namespace ash |
322 | 327 |
323 #endif // ASH_COMMON_WM_WINDOW_H_ | 328 #endif // ASH_COMMON_WM_WINDOW_H_ |
OLD | NEW |