blob: 8f9530a0a13d0743a1bba664846e5a900864a120 (
plain)
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
|
// Copyright 2013 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 CC_ANIMATION_SCROLL_OFFSET_ANIMATION_CURVE_H_
#define CC_ANIMATION_SCROLL_OFFSET_ANIMATION_CURVE_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
#include "cc/animation/animation_curve.h"
#include "cc/base/cc_export.h"
#include "ui/gfx/geometry/scroll_offset.h"
namespace cc {
class TimingFunction;
class CC_EXPORT ScrollOffsetAnimationCurve : public AnimationCurve {
public:
enum class DurationBehavior { DELTA_BASED, CONSTANT, INVERSE_DELTA };
static scoped_ptr<ScrollOffsetAnimationCurve> Create(
const gfx::ScrollOffset& target_value,
scoped_ptr<TimingFunction> timing_function,
DurationBehavior = DurationBehavior::DELTA_BASED);
~ScrollOffsetAnimationCurve() override;
void SetInitialValue(const gfx::ScrollOffset& initial_value);
bool HasSetInitialValue() const;
gfx::ScrollOffset GetValue(base::TimeDelta t) const;
gfx::ScrollOffset target_value() const { return target_value_; }
void UpdateTarget(double t, const gfx::ScrollOffset& new_target);
// AnimationCurve implementation
base::TimeDelta Duration() const override;
CurveType Type() const override;
scoped_ptr<AnimationCurve> Clone() const override;
scoped_ptr<ScrollOffsetAnimationCurve> CloneToScrollOffsetAnimationCurve()
const;
private:
ScrollOffsetAnimationCurve(const gfx::ScrollOffset& target_value,
scoped_ptr<TimingFunction> timing_function,
DurationBehavior);
gfx::ScrollOffset initial_value_;
gfx::ScrollOffset target_value_;
base::TimeDelta total_animation_duration_;
// Time from animation start to most recent UpdateTarget.
base::TimeDelta last_retarget_;
scoped_ptr<TimingFunction> timing_function_;
DurationBehavior duration_behavior_;
bool has_set_initial_value_;
DISALLOW_COPY_AND_ASSIGN(ScrollOffsetAnimationCurve);
};
} // namespace cc
#endif // CC_ANIMATION_SCROLL_OFFSET_ANIMATION_CURVE_H_
|