1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_SESSION_STATE_ANIMATOR_H_
#define ASH_WM_SESSION_STATE_ANIMATOR_H_
#include "ash/ash_export.h"
#include "base/functional/callback.h"
#include "base/time/time.h"
namespace ash {
// Displays onscreen animations for session state changes (lock/unlock, sign
// out, shut down).
class ASH_EXPORT SessionStateAnimator {
public:
// Animations that can be applied to groups of containers.
enum AnimationType {
ANIMATION_FADE_IN,
ANIMATION_FADE_OUT,
ANIMATION_HIDE_IMMEDIATELY,
// Animations that raise/lower windows to/from area "in front" of the
// screen.
ANIMATION_LIFT,
ANIMATION_UNDO_LIFT,
ANIMATION_DROP,
// Animations that raise/lower windows from/to area "behind" of the screen.
ANIMATION_RAISE_TO_SCREEN,
ANIMATION_GRAYSCALE_BRIGHTNESS,
ANIMATION_UNDO_GRAYSCALE_BRIGHTNESS,
// Pseudo animation type to copy layer.
ANIMATION_COPY_LAYER,
};
// Constants for determining animation speed.
enum AnimationSpeed {
// Immediately change state.
ANIMATION_SPEED_IMMEDIATE = 0,
// Speed for animations associated with user action that can be undone.
// Used for pre-lock and pre-shutdown animations.
ANIMATION_SPEED_UNDOABLE,
// Speed for workspace-like animations in "new" animation set.
ANIMATION_SPEED_MOVE_WINDOWS,
// Speed for undoing workspace-like animations in "new" animation set.
ANIMATION_SPEED_UNDO_MOVE_WINDOWS,
// Speed for shutdown in "new" animation set.
ANIMATION_SPEED_SHUTDOWN,
// Speed for reverting shutdown in "new" animation set.
ANIMATION_SPEED_REVERT_SHUTDOWN,
};
// Specific containers or groups of containers that can be animated.
enum Container {
WALLPAPER = 1 << 0,
SHELF = 1 << 1,
// All user session related containers including the system wallpaper but
// not including the user's wallpaper.
NON_LOCK_SCREEN_CONTAINERS = 1 << 2,
// Desktop wallpaper is moved to this layer when screen is locked.
// This layer is excluded from lock animation so that wallpaper stays as is,
// user session windows are hidden and lock UI is shown on top of it.
// This layer is included in shutdown animation.
LOCK_SCREEN_WALLPAPER = 1 << 3,
// Lock screen and lock screen modal containers.
LOCK_SCREEN_CONTAINERS = 1 << 4,
// Multiple system layers belong here like status, menu, tooltip
// and overlay layers.
LOCK_SCREEN_RELATED_CONTAINERS = 1 << 5,
// The primary root window.
ROOT_CONTAINER = 1 << 6,
};
using AnimationCallback = base::OnceCallback<void(bool)>;
// A bitfield mask including LOCK_SCREEN_WALLPAPER,
// LOCK_SCREEN_CONTAINERS, and LOCK_SCREEN_RELATED_CONTAINERS.
static const int kAllLockScreenContainersMask;
// A bitfield mask of all containers except the ROOT_CONTAINER.
static const int kAllNonRootContainersMask;
// The AnimationSequence groups together multiple animations and invokes a
// callback once all contained animations are completed successfully.
// Subclasses of AnimationSequence should call one of OnAnimationCompleted or
// OnAnimationAborted once and behaviour is undefined if called multiple
// times.
// AnimationSequences will destroy themselves once EndSquence and one of
// OnAnimationCompleted or OnAnimationAborted has been called.
//
// Typical usage:
// AnimationSequence* animation_sequence =
// session_state_animator->BeginAnimationSequence(some_callback);
// animation_sequence->StartAnimation(
// SessionStateAnimator::LAUNCHER,
// SessionStateAnimator::ANIMATION_FADE_IN,
// SessionStateAnimator::ANIMATION_SPEED_UNDOABLE);
// animation_sequence->StartAnimation(
// SessionStateAnimator::LAUNCHER,
// SessionStateAnimator::ANIMATION_FADE_IN,
// SessionStateAnimator::ANIMATION_SPEED_UNDOABLE);
// animation_sequence->EndSequence();
// // some_callback won't be called until here even if the animations
// // were completed before the EndSequence call.
//
class ASH_EXPORT AnimationSequence {
public:
AnimationSequence(const AnimationSequence&) = delete;
AnimationSequence& operator=(const AnimationSequence&) = delete;
virtual ~AnimationSequence();
// Apply animation |type| to all containers included in |container_mask|
// with specified |speed|.
virtual void StartAnimation(int container_mask,
AnimationType type,
AnimationSpeed speed) = 0;
// Ends the animation sequence and enables the callback to be invoked
// when the animation sequence has completed. No more animations should be
// started after EndSequence is called because the AnimationSequenceObserver
// may have destroyed itself.
// NOTE: Clients of AnimationSequence should not access it after EndSequence
// has been called.
virtual void EndSequence();
protected:
// AnimationSequence should not be instantiated directly, only through
// subclasses.
explicit AnimationSequence(AnimationCallback callback);
// Subclasses should call this when the contained animations completed
// successfully.
// NOTE: This should NOT be accessed after OnAnimationCompleted has been
// called.
virtual void OnAnimationCompleted();
// Subclasses should call this when the contained animations did NOT
// complete successfully.
// NOTE: This should NOT be accessed after OnAnimationAborted has been
// called.
virtual void OnAnimationAborted();
bool sequence_ended() const { return sequence_ended_; }
private:
// Destroys this and calls the callback if the contained animations
// completed successfully.
void CleanupIfSequenceCompleted();
// Tracks whether the sequence has ended.
bool sequence_ended_ = false;
// Track whether the contained animations have completed or not, both
// successfully and unsuccessfully.
bool animation_finished_ = false;
// Flag to specify whether the callback should be invoked once the sequence
// has completed.
bool animation_aborted_ = false;
// Callback to be called when the aniamtion is finished or aborted.
AnimationCallback callback_;
};
SessionStateAnimator();
SessionStateAnimator(const SessionStateAnimator&) = delete;
SessionStateAnimator& operator=(const SessionStateAnimator&) = delete;
virtual ~SessionStateAnimator();
// Reports animation duration for |speed|.
virtual base::TimeDelta GetDuration(AnimationSpeed speed);
// Apply animation |type| to all containers included in |container_mask| with
// specified |speed|.
virtual void StartAnimation(int container_mask,
AnimationType type,
AnimationSpeed speed) = 0;
// Apply animation |type| to all containers included in |container_mask| with
// specified |speed| and call a |callback| once at the end of the animations,
// if it is not null.
virtual void StartAnimationWithCallback(int container_mask,
AnimationType type,
AnimationSpeed speed,
base::OnceClosure callback) = 0;
// Begins an animation sequence. Use this when you need to be notified when
// a group of animations are completed. See AnimationSequence documentation
// for more details.
virtual AnimationSequence* BeginAnimationSequence(
AnimationCallback callback) = 0;
// Returns true if the wallpaper is hidden.
virtual bool IsWallpaperHidden() const = 0;
// Shows the wallpaper immediately.
virtual void ShowWallpaper() = 0;
// Hides the wallpaper immediately.
virtual void HideWallpaper() = 0;
};
} // namespace ash
#endif // ASH_WM_SESSION_STATE_ANIMATOR_H_
|