blob: 548c530b59fef111fbe64846b7ee3779db58795e (
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
|
// Copyright (c) 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 WEBKIT_GLUE_FLINGCURVECONFIGURATION_H_
#define WEBKIT_GLUE_FLINGCURVECONFIGURATION_H_
#include <vector>
#include "base/synchronization/lock.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
namespace WebKit {
class WebGestureCurve;
}
namespace webkit_glue {
// A class to manage dynamically adjustable parameters controlling the
// shape of the fling deacceleration function.
class FlingCurveConfiguration {
public:
FlingCurveConfiguration();
virtual ~FlingCurveConfiguration();
// Create a touchpad fling curve using the current parameters.
WebKit::WebGestureCurve* CreateForTouchPad(
const WebKit::WebFloatPoint& velocity,
const WebKit::WebSize& cumulativeScroll);
// Create a touchscreen fling curve using the current parameters.
WebKit::WebGestureCurve* CreateForTouchScreen(
const WebKit::WebFloatPoint& velocity,
const WebKit::WebSize& cumulativeScroll);
// Set the curve parameters.
void SetCurveParameters(
const std::vector<float>& new_touchpad,
const std::vector<float>& new_touchscreen);
private:
WebKit::WebGestureCurve* CreateCore(
const std::vector<float>& coefs,
const WebKit::WebFloatPoint& velocity,
const WebKit::WebSize& cumulativeScroll);
// Protect access to touchpad_coefs_ and touchscreen_coefs_.
base::Lock lock_;
std::vector<float> touchpad_coefs_;
std::vector<float> touchscreen_coefs_;
DISALLOW_COPY_AND_ASSIGN(FlingCurveConfiguration);
};
} // namespace webkit_glue
#endif // WEBKIT_GLUE_FLINGCURVECONFIGURATION_H_
|