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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
// Copyright (c) 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.
#include "ppapi/shared_impl/ppb_input_event_shared.h"
#include "ppapi/shared_impl/var.h"
using ppapi::thunk::PPB_InputEvent_API;
namespace ppapi {
InputEventData::InputEventData()
: is_filtered(false),
event_type(PP_INPUTEVENT_TYPE_UNDEFINED),
event_time_stamp(0.0),
event_modifiers(0),
mouse_button(PP_INPUTEVENT_MOUSEBUTTON_NONE),
mouse_position(PP_MakePoint(0, 0)),
mouse_click_count(0),
mouse_movement(PP_MakePoint(0, 0)),
wheel_delta(PP_MakeFloatPoint(0.0f, 0.0f)),
wheel_ticks(PP_MakeFloatPoint(0.0f, 0.0f)),
wheel_scroll_by_page(false),
key_code(0),
character_text(),
composition_target_segment(-1),
composition_selection_start(0),
composition_selection_end(0) {
}
InputEventData::~InputEventData() {
}
PPB_InputEvent_Shared::PPB_InputEvent_Shared(ResourceObjectType type,
PP_Instance instance,
const InputEventData& data)
: Resource(type, instance),
data_(data) {
}
PPB_InputEvent_API* PPB_InputEvent_Shared::AsPPB_InputEvent_API() {
return this;
}
const InputEventData& PPB_InputEvent_Shared::GetInputEventData() const {
return data_;
}
PP_InputEvent_Type PPB_InputEvent_Shared::GetType() {
return data_.event_type;
}
PP_TimeTicks PPB_InputEvent_Shared::GetTimeStamp() {
return data_.event_time_stamp;
}
uint32_t PPB_InputEvent_Shared::GetModifiers() {
return data_.event_modifiers;
}
PP_InputEvent_MouseButton PPB_InputEvent_Shared::GetMouseButton() {
return data_.mouse_button;
}
PP_Point PPB_InputEvent_Shared::GetMousePosition() {
return data_.mouse_position;
}
int32_t PPB_InputEvent_Shared::GetMouseClickCount() {
return data_.mouse_click_count;
}
PP_Point PPB_InputEvent_Shared::GetMouseMovement() {
return data_.mouse_movement;
}
PP_FloatPoint PPB_InputEvent_Shared::GetWheelDelta() {
return data_.wheel_delta;
}
PP_FloatPoint PPB_InputEvent_Shared::GetWheelTicks() {
return data_.wheel_ticks;
}
PP_Bool PPB_InputEvent_Shared::GetWheelScrollByPage() {
return PP_FromBool(data_.wheel_scroll_by_page);
}
uint32_t PPB_InputEvent_Shared::GetKeyCode() {
return data_.key_code;
}
PP_Var PPB_InputEvent_Shared::GetCharacterText() {
return StringVar::StringToPPVar(data_.character_text);
}
PP_Bool PPB_InputEvent_Shared::SetUsbKeyCode(uint32_t usb_key_code) {
data_.usb_key_code = usb_key_code;
return PP_TRUE;
}
uint32_t PPB_InputEvent_Shared::GetUsbKeyCode() {
return data_.usb_key_code;
}
uint32_t PPB_InputEvent_Shared::GetIMESegmentNumber() {
if (data_.composition_segment_offsets.empty())
return 0;
return data_.composition_segment_offsets.size() - 1;
}
uint32_t PPB_InputEvent_Shared::GetIMESegmentOffset(uint32_t index) {
if (index >= data_.composition_segment_offsets.size())
return 0;
return data_.composition_segment_offsets[index];
}
int32_t PPB_InputEvent_Shared::GetIMETargetSegment() {
return data_.composition_target_segment;
}
void PPB_InputEvent_Shared::GetIMESelection(uint32_t* start, uint32_t* end) {
if (start)
*start = data_.composition_selection_start;
if (end)
*end = data_.composition_selection_end;
}
//static
PP_Resource PPB_InputEvent_Shared::CreateIMEInputEvent(
ResourceObjectType type,
PP_Instance instance,
PP_InputEvent_Type event_type,
PP_TimeTicks time_stamp,
struct PP_Var text,
uint32_t segment_number,
const uint32_t* segment_offsets,
int32_t target_segment,
uint32_t selection_start,
uint32_t selection_end) {
if (event_type != PP_INPUTEVENT_TYPE_IME_COMPOSITION_START &&
event_type != PP_INPUTEVENT_TYPE_IME_COMPOSITION_UPDATE &&
event_type != PP_INPUTEVENT_TYPE_IME_COMPOSITION_END &&
event_type != PP_INPUTEVENT_TYPE_IME_TEXT)
return 0;
InputEventData data;
data.event_type = event_type;
data.event_time_stamp = time_stamp;
if (text.type == PP_VARTYPE_STRING) {
StringVar* text_str = StringVar::FromPPVar(text);
if (!text_str)
return 0;
data.character_text = text_str->value();
}
data.composition_target_segment = target_segment;
if (segment_number != 0) {
data.composition_segment_offsets.assign(
&segment_offsets[0], &segment_offsets[segment_number + 1]);
}
data.composition_selection_start = selection_start;
data.composition_selection_end = selection_end;
return (new PPB_InputEvent_Shared(type, instance, data))->GetReference();
}
//static
PP_Resource PPB_InputEvent_Shared::CreateKeyboardInputEvent(
ResourceObjectType type,
PP_Instance instance,
PP_InputEvent_Type event_type,
PP_TimeTicks time_stamp,
uint32_t modifiers,
uint32_t key_code,
struct PP_Var character_text) {
if (event_type != PP_INPUTEVENT_TYPE_RAWKEYDOWN &&
event_type != PP_INPUTEVENT_TYPE_KEYDOWN &&
event_type != PP_INPUTEVENT_TYPE_KEYUP &&
event_type != PP_INPUTEVENT_TYPE_CHAR)
return 0;
InputEventData data;
data.event_type = event_type;
data.event_time_stamp = time_stamp;
data.event_modifiers = modifiers;
data.key_code = key_code;
if (character_text.type == PP_VARTYPE_STRING) {
StringVar* text_str = StringVar::FromPPVar(character_text);
if (!text_str)
return 0;
data.character_text = text_str->value();
}
return (new PPB_InputEvent_Shared(type, instance, data))->GetReference();
}
//static
PP_Resource PPB_InputEvent_Shared::CreateMouseInputEvent(
ResourceObjectType type,
PP_Instance instance,
PP_InputEvent_Type event_type,
PP_TimeTicks time_stamp,
uint32_t modifiers,
PP_InputEvent_MouseButton mouse_button,
const PP_Point* mouse_position,
int32_t click_count,
const PP_Point* mouse_movement) {
if (event_type != PP_INPUTEVENT_TYPE_MOUSEDOWN &&
event_type != PP_INPUTEVENT_TYPE_MOUSEUP &&
event_type != PP_INPUTEVENT_TYPE_MOUSEMOVE &&
event_type != PP_INPUTEVENT_TYPE_MOUSEENTER &&
event_type != PP_INPUTEVENT_TYPE_MOUSELEAVE)
return 0;
InputEventData data;
data.event_type = event_type;
data.event_time_stamp = time_stamp;
data.event_modifiers = modifiers;
data.mouse_button = mouse_button;
data.mouse_position = *mouse_position;
data.mouse_click_count = click_count;
data.mouse_movement = *mouse_movement;
return (new PPB_InputEvent_Shared(type, instance, data))->GetReference();
}
//static
PP_Resource PPB_InputEvent_Shared::CreateWheelInputEvent(
ResourceObjectType type,
PP_Instance instance,
PP_TimeTicks time_stamp,
uint32_t modifiers,
const PP_FloatPoint* wheel_delta,
const PP_FloatPoint* wheel_ticks,
PP_Bool scroll_by_page) {
InputEventData data;
data.event_type = PP_INPUTEVENT_TYPE_WHEEL;
data.event_time_stamp = time_stamp;
data.event_modifiers = modifiers;
data.wheel_delta = *wheel_delta;
data.wheel_ticks = *wheel_ticks;
data.wheel_scroll_by_page = PP_ToBool(scroll_by_page);
return (new PPB_InputEvent_Shared(type, instance, data))->GetReference();
}
} // namespace ppapi
|