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
|
// Copyright 2014 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.
#include "ui/events/gesture_event_details.h"
namespace ui {
GestureEventDetails::GestureEventDetails()
: type_(ET_UNKNOWN), touch_points_(0), oldest_touch_id_(-1) {
}
GestureEventDetails::GestureEventDetails(ui::EventType type)
: type_(type), touch_points_(1), oldest_touch_id_(-1) {
DCHECK_GE(type, ET_GESTURE_TYPE_START);
DCHECK_LE(type, ET_GESTURE_TYPE_END);
}
GestureEventDetails::GestureEventDetails(ui::EventType type,
float delta_x,
float delta_y)
: type_(type), touch_points_(1), oldest_touch_id_(-1) {
DCHECK_GE(type, ET_GESTURE_TYPE_START);
DCHECK_LE(type, ET_GESTURE_TYPE_END);
switch (type_) {
case ui::ET_GESTURE_SCROLL_BEGIN:
data.scroll_begin.x_hint = delta_x;
data.scroll_begin.y_hint = delta_y;
break;
case ui::ET_GESTURE_SCROLL_UPDATE:
data.scroll_update.x = delta_x;
data.scroll_update.y = delta_y;
break;
case ui::ET_SCROLL_FLING_START:
data.fling_velocity.x = delta_x;
data.fling_velocity.y = delta_y;
break;
case ui::ET_GESTURE_TWO_FINGER_TAP:
data.first_finger_enclosing_rectangle.width = delta_x;
data.first_finger_enclosing_rectangle.height = delta_y;
break;
case ui::ET_GESTURE_SWIPE:
data.swipe.left = delta_x < 0;
data.swipe.right = delta_x > 0;
data.swipe.up = delta_y < 0;
data.swipe.down = delta_y > 0;
break;
default:
NOTREACHED() << "Invalid event type for constructor: " << type;
}
}
GestureEventDetails::Details::Details() {
memset(this, 0, sizeof(Details));
}
} // namespace ui
|