Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: ui/wm/core/window_animations.h

Issue 237873003: Rename wm_core_export.h to wm_export.h and the wm_core target to just wm (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/wm/core/visibility_controller.h ('k') | ui/wm/core/window_animations.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_WM_CORE_WINDOW_ANIMATIONS_H_ 5 #ifndef UI_WM_CORE_WINDOW_ANIMATIONS_H_
6 #define UI_WM_CORE_WINDOW_ANIMATIONS_H_ 6 #define UI_WM_CORE_WINDOW_ANIMATIONS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "ui/compositor/scoped_layer_animation_settings.h" 10 #include "ui/compositor/scoped_layer_animation_settings.h"
11 #include "ui/wm/core/wm_core_export.h" 11 #include "ui/wm/wm_export.h"
12 12
13 namespace aura { 13 namespace aura {
14 class Window; 14 class Window;
15 } 15 }
16 namespace base { 16 namespace base {
17 class TimeDelta; 17 class TimeDelta;
18 } 18 }
19 namespace gfx { 19 namespace gfx {
20 class Rect; 20 class Rect;
21 } 21 }
(...skipping 29 matching lines...) Expand all
51 // Default behavior is to animate both show and hide. 51 // Default behavior is to animate both show and hide.
52 enum WindowVisibilityAnimationTransition { 52 enum WindowVisibilityAnimationTransition {
53 ANIMATE_SHOW = 0x1, 53 ANIMATE_SHOW = 0x1,
54 ANIMATE_HIDE = 0x2, 54 ANIMATE_HIDE = 0x2,
55 ANIMATE_BOTH = ANIMATE_SHOW | ANIMATE_HIDE, 55 ANIMATE_BOTH = ANIMATE_SHOW | ANIMATE_HIDE,
56 ANIMATE_NONE = 0x4, 56 ANIMATE_NONE = 0x4,
57 }; 57 };
58 58
59 // These two methods use int for type rather than WindowVisibilityAnimationType 59 // These two methods use int for type rather than WindowVisibilityAnimationType
60 // since downstream libraries can extend the set of animations. 60 // since downstream libraries can extend the set of animations.
61 WM_CORE_EXPORT void SetWindowVisibilityAnimationType(aura::Window* window, 61 WM_EXPORT void SetWindowVisibilityAnimationType(aura::Window* window, int type);
62 int type); 62 WM_EXPORT int GetWindowVisibilityAnimationType(aura::Window* window);
63 WM_CORE_EXPORT int GetWindowVisibilityAnimationType(aura::Window* window);
64 63
65 WM_CORE_EXPORT void SetWindowVisibilityAnimationTransition( 64 WM_EXPORT void SetWindowVisibilityAnimationTransition(
66 aura::Window* window, 65 aura::Window* window,
67 WindowVisibilityAnimationTransition transition); 66 WindowVisibilityAnimationTransition transition);
68 67
69 WM_CORE_EXPORT bool HasWindowVisibilityAnimationTransition( 68 WM_EXPORT bool HasWindowVisibilityAnimationTransition(
70 aura::Window* window, 69 aura::Window* window,
71 WindowVisibilityAnimationTransition transition); 70 WindowVisibilityAnimationTransition transition);
72 71
73 WM_CORE_EXPORT void SetWindowVisibilityAnimationDuration( 72 WM_EXPORT void SetWindowVisibilityAnimationDuration(
74 aura::Window* window, 73 aura::Window* window,
75 const base::TimeDelta& duration); 74 const base::TimeDelta& duration);
76 75
77 WM_CORE_EXPORT base::TimeDelta GetWindowVisibilityAnimationDuration( 76 WM_EXPORT base::TimeDelta GetWindowVisibilityAnimationDuration(
78 const aura::Window& window); 77 const aura::Window& window);
79 78
80 WM_CORE_EXPORT void SetWindowVisibilityAnimationVerticalPosition( 79 WM_EXPORT void SetWindowVisibilityAnimationVerticalPosition(
81 aura::Window* window, 80 aura::Window* window,
82 float position); 81 float position);
83 82
84 class HidingWindowAnimationObserver; 83 class HidingWindowAnimationObserver;
85 // A wrapper of ui::ScopedLayerAnimationSettings for hiding animations. 84 // A wrapper of ui::ScopedLayerAnimationSettings for hiding animations.
86 // Use this to ensure that the hiding animation is visible even after 85 // Use this to ensure that the hiding animation is visible even after
87 // the window is deleted or deactivated, instead of using 86 // the window is deleted or deactivated, instead of using
88 // ui::ScopedLayerAnimationSettings directly. 87 // ui::ScopedLayerAnimationSettings directly.
89 class WM_CORE_EXPORT ScopedHidingAnimationSettings { 88 class WM_EXPORT ScopedHidingAnimationSettings {
90 public: 89 public:
91 explicit ScopedHidingAnimationSettings(aura::Window* window); 90 explicit ScopedHidingAnimationSettings(aura::Window* window);
92 ~ScopedHidingAnimationSettings(); 91 ~ScopedHidingAnimationSettings();
93 92
94 // Returns the wrapped ScopedLayeAnimationSettings instance. 93 // Returns the wrapped ScopedLayeAnimationSettings instance.
95 ui::ScopedLayerAnimationSettings* layer_animation_settings() { 94 ui::ScopedLayerAnimationSettings* layer_animation_settings() {
96 return &layer_animation_settings_; 95 return &layer_animation_settings_;
97 } 96 }
98 97
99 private: 98 private:
100 ui::ScopedLayerAnimationSettings layer_animation_settings_; 99 ui::ScopedLayerAnimationSettings layer_animation_settings_;
101 HidingWindowAnimationObserver* observer_; 100 HidingWindowAnimationObserver* observer_;
102 101
103 DISALLOW_COPY_AND_ASSIGN(ScopedHidingAnimationSettings); 102 DISALLOW_COPY_AND_ASSIGN(ScopedHidingAnimationSettings);
104 }; 103 };
105 104
106 // Returns false if the |window| didn't animate. 105 // Returns false if the |window| didn't animate.
107 WM_CORE_EXPORT bool AnimateOnChildWindowVisibilityChanged(aura::Window* window, 106 WM_EXPORT bool AnimateOnChildWindowVisibilityChanged(aura::Window* window,
108 bool visible); 107 bool visible);
109 WM_CORE_EXPORT bool AnimateWindow(aura::Window* window, 108 WM_EXPORT bool AnimateWindow(aura::Window* window, WindowAnimationType type);
110 WindowAnimationType type);
111 109
112 // Returns true if window animations are disabled for |window|. Window 110 // Returns true if window animations are disabled for |window|. Window
113 // animations are enabled by default. If |window| is NULL, this just checks 111 // animations are enabled by default. If |window| is NULL, this just checks
114 // if the global flag disabling window animations is present. 112 // if the global flag disabling window animations is present.
115 WM_CORE_EXPORT bool WindowAnimationsDisabled(aura::Window* window); 113 WM_EXPORT bool WindowAnimationsDisabled(aura::Window* window);
116 114
117 } // namespace wm 115 } // namespace wm
118 116
119 #endif // UI_WM_CORE_WINDOW_ANIMATIONS_H_ 117 #endif // UI_WM_CORE_WINDOW_ANIMATIONS_H_
OLDNEW
« no previous file with comments | « ui/wm/core/visibility_controller.h ('k') | ui/wm/core/window_animations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698