File: event_factory.cpp

package info (click to toggle)
mir 2.20.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,636 kB
  • sloc: cpp: 174,574; xml: 13,422; ansic: 8,221; python: 1,337; sh: 874; makefile: 216; javascript: 37
file content (170 lines) | stat: -rw-r--r-- 3,914 bytes parent folder | download | duplicates (2)
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
/*
 * Copyright © Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 or 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#include "mir/test/event_factory.h"

namespace mis = mir::input::synthesis;
namespace geom = mir::geometry;

mis::KeyParameters::KeyParameters() :
    device_id(0),
    scancode(0),
    action(mis::EventAction::Down)
{
}

mis::KeyParameters& mis::KeyParameters::from_device(int new_device_id)
{
    device_id = new_device_id;
    return *this;
}

mis::KeyParameters& mis::KeyParameters::of_scancode(int new_scancode)
{
    scancode = new_scancode;
    return *this;
}

mis::KeyParameters& mis::KeyParameters::with_action(mis::EventAction new_action)
{
    action = new_action;
    return *this;
}

mis::KeyParameters& mis::KeyParameters::with_event_time(std::chrono::nanoseconds event_time)
{
    this->event_time = event_time;
    return *this;
}

mis::KeyParameters mis::a_key_down_event()
{
    return mis::KeyParameters().with_action(mis::EventAction::Down);
}

mis::KeyParameters mis::a_key_up_event()
{
    return mis::KeyParameters().with_action(mis::EventAction::Up);
}

mis::ButtonParameters::ButtonParameters() :
    device_id(0),
    button(0),
    action(mis::EventAction::Down)
{
}

mis::ButtonParameters& mis::ButtonParameters::from_device(int new_device_id)
{
    device_id = new_device_id;
    return *this;
}

mis::ButtonParameters& mis::ButtonParameters::of_button(int new_button)
{
    button = new_button;
    return *this;
}

mis::ButtonParameters& mis::ButtonParameters::with_action(mis::EventAction new_action)
{
    action = new_action;
    return *this;
}

mis::ButtonParameters& mis::ButtonParameters::with_event_time(std::chrono::nanoseconds event_time)
{
    this->event_time = event_time;
    return *this;
}

mis::ButtonParameters mis::a_button_down_event()
{
    return mis::ButtonParameters().with_action(mis::EventAction::Down);
}

mis::ButtonParameters mis::a_button_up_event()
{
    return mis::ButtonParameters().with_action(mis::EventAction::Up);
}

mis::MotionParameters::MotionParameters() :
    device_id(0),
    rel_x(0),
    rel_y(0)
{
}

mis::MotionParameters& mis::MotionParameters::from_device(int new_device_id)
{
    device_id = new_device_id;
    return *this;
}

mis::MotionParameters& mis::MotionParameters::with_movement(int new_rel_x, int new_rel_y)
{
    rel_x = new_rel_x;
    rel_y = new_rel_y;
    return *this;
}

mis::MotionParameters& mis::MotionParameters::with_event_time(std::chrono::nanoseconds event_time)
{
    this->event_time = event_time;
    return *this;
}

mis::MotionParameters mis::a_pointer_event()
{
    return mis::MotionParameters();
}

mis::TouchParameters::TouchParameters() :
    device_id(0),
    abs_x(0),
    abs_y(0),
    action(Action::Tap)
{
}

mis::TouchParameters& mis::TouchParameters::from_device(int new_device_id)
{
    device_id = new_device_id;
    return *this;
}

mis::TouchParameters& mis::TouchParameters::at_position(geom::Point abs_pos)
{
    abs_x = abs_pos.x.as_int();
    abs_y = abs_pos.y.as_int();
    return *this;
}

mis::TouchParameters& mis::TouchParameters::with_action(Action touch_action)
{
    action = touch_action;
    return *this;
}

mis::TouchParameters& mis::TouchParameters::with_event_time(std::chrono::nanoseconds event_time)
{
    this->event_time = event_time;
    return *this;
}

mis::TouchParameters mis::a_touch_event()
{
    return mis::TouchParameters();
}