| Index: chrome/browser/ui/cocoa/fullscreen/fullscreen_toolbar_animation_manager.h
|
| diff --git a/chrome/browser/ui/cocoa/fullscreen/fullscreen_toolbar_animation_manager.h b/chrome/browser/ui/cocoa/fullscreen/fullscreen_toolbar_animation_manager.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e36f2bd674360a86dd4d25de779cacbfdce7cd99
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/cocoa/fullscreen/fullscreen_toolbar_animation_manager.h
|
| @@ -0,0 +1,74 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_BROWSER_UI_COCOA_FULLSCREEN_FULLSCREEN_TOOLBAR_ANIMATION_MANAGER_H_
|
| +#define CHROME_BROWSER_UI_COCOA_FULLSCREEN_FULLSCREEN_TOOLBAR_ANIMATION_MANAGER_H_
|
| +
|
| +#import <Cocoa/Cocoa.h>
|
| +
|
| +#import "base/mac/mac_util.h"
|
| +#include "base/macros.h"
|
| +#include "base/timer/timer.h"
|
| +#include "ui/gfx/animation/animation_delegate.h"
|
| +#include "ui/gfx/animation/slide_animation.h"
|
| +
|
| +namespace {
|
| +class FullscreenToolbarLayoutTest;
|
| +}
|
| +
|
| +class FullscreenToolbarLayoutManager;
|
| +
|
| +class FullscreenToolbarAnimationManager : public gfx::AnimationDelegate {
|
| + public:
|
| + FullscreenToolbarAnimationManager(FullscreenToolbarLayoutManager* owner);
|
| +
|
| + // Called by |owner_| to update the current toolbar fraction.
|
| + void UpdateToolbarFraction(CGFloat fraction);
|
| +
|
| + // Stops the animation and cancels |hide_toolbar_timer_|.
|
| + void StopAnimationAndTimer();
|
| +
|
| + // Animates the toolbar in and out to show changes with the tabstrip.
|
| + void AnimateToolbarForTabstripChanges();
|
| +
|
| + // Animates the toolbar in if it's not fully shown.
|
| + void AnimateToolbarIn();
|
| +
|
| + // Animates the toolbar out if it's not focused.
|
| + void AnimateToolbarOutIfPossible();
|
| +
|
| + // Returns the toolbar fraction calculated from the animation progress.
|
| + CGFloat GetToolbarFraction() const;
|
| +
|
| + // Returns true if |animation_| is running.
|
| + BOOL IsAnimationRunning() const;
|
| +
|
| + // gfx::AnimationDelegate:
|
| + void AnimationProgressed(const gfx::Animation* animation) override;
|
| + void AnimationEnded(const gfx::Animation* animation) override;
|
| +
|
| + private:
|
| + friend class ::FullscreenToolbarLayoutTest;
|
| +
|
| + // Our owner.
|
| + FullscreenToolbarLayoutManager* owner_; // weak
|
| +
|
| + // The animation of the decoration.
|
| + gfx::SlideAnimation animation_;
|
| +
|
| + // Timer that will start the scrollbar's hiding animation when it reaches 0.
|
| + base::Timer hide_toolbar_timer_;
|
| +
|
| + // The current fraction of the toolbar being displayed. Used as the starting
|
| + // point of the animation.
|
| + CGFloat toolbar_fraction_;
|
| +
|
| + // True when the toolbar is dropped to show tabstrip changes.
|
| + BOOL should_hide_toolbar_after_delay_;
|
| +
|
| + // Used to disable find bar animations when testing.
|
| + BOOL disable_animations_during_testing_;
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_UI_COCOA_FULLSCREEN_FULLSCREEN_TOOLBAR_ANIMATION_MANAGER_H_
|
|
|