blob: bccd9921f1ff83868018cab936a2c32dd790ca90 (
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
65
66
67
|
// Copyright 2012 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 CCScrollbarAnimationController_h
#define CCScrollbarAnimationController_h
#include "base/memory/scoped_ptr.h"
#include "FloatPoint.h"
#include "IntSize.h"
namespace gfx {
class Size;
}
namespace cc {
class LayerImpl;
class ScrollbarLayerImpl;
// This abstract class represents the compositor-side analogy of ScrollbarAnimator.
// Individual platforms should subclass it to provide specialized implementation.
class ScrollbarAnimationController {
public:
static scoped_ptr<ScrollbarAnimationController> create(LayerImpl* scrollLayer);
virtual ~ScrollbarAnimationController();
virtual bool animate(double monotonicTime);
void didPinchGestureBegin();
void didPinchGestureUpdate();
void didPinchGestureEnd();
void updateScrollOffset(LayerImpl* scrollLayer);
void setHorizontalScrollbarLayer(ScrollbarLayerImpl* layer) { m_horizontalScrollbarLayer = layer; }
ScrollbarLayerImpl* horizontalScrollbarLayer() const { return m_horizontalScrollbarLayer; }
void setVerticalScrollbarLayer(ScrollbarLayerImpl* layer) { m_verticalScrollbarLayer = layer; }
ScrollbarLayerImpl* verticalScrollbarLayer() const { return m_verticalScrollbarLayer; }
FloatPoint currentPos() const { return m_currentPos; }
gfx::Size totalSize() const { return m_totalSize; }
IntSize maximum() const { return m_maximum; }
virtual void didPinchGestureBeginAtTime(double monotonicTime) { }
virtual void didPinchGestureUpdateAtTime(double monotonicTime) { }
virtual void didPinchGestureEndAtTime(double monotonicTime) { }
virtual void updateScrollOffsetAtTime(LayerImpl* scrollLayer, double monotonicTime);
protected:
explicit ScrollbarAnimationController(LayerImpl* scrollLayer);
private:
static gfx::Size getScrollLayerBounds(const LayerImpl*);
// Beware of dangling pointer. Always update these during tree synchronization.
ScrollbarLayerImpl* m_horizontalScrollbarLayer;
ScrollbarLayerImpl* m_verticalScrollbarLayer;
FloatPoint m_currentPos;
gfx::Size m_totalSize;
IntSize m_maximum;
};
} // namespace cc
#endif // CCScrollbarAnimationController_h
|