summaryrefslogtreecommitdiff
path: root/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml
blob: dad6293a9f3aa045dce5c48111509aeef708706b (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
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
<protocol name="pointer_gestures_unstable_v1">
  <interface name="zwp_pointer_gestures_v1" version="1">
    <description summary="touchpad gestures">
      A global interface to provide semantic touchpad gestures for a given
      pointer.

      Two gestures are currently supported: swipe and zoom/rotate.
      All gestures follow a three-stage cycle: begin, update, end and
      are identified by a unique id.

      Warning! The protocol described in this file is experimental and
      backward incompatible changes may be made. Backward compatible changes
      may be added together with the corresponding interface version bump.
      Backward incompatible changes are done by bumping the version number in
      the protocol and interface names and resetting the interface version.
      Once the protocol is to be declared stable, the 'z' prefix and the
      version number in the protocol and interface names are removed and the
      interface version number is reset.
    </description>

    <request name="get_swipe_gesture">
      <description summary="get swipe gesture">
	Create a swipe gesture object. See the
	wl_pointer_gesture_swipe interface for details.
      </description>
      <arg name="id" type="new_id" interface="zwp_pointer_gesture_swipe_v1"/>
      <arg name="pointer" type="object" interface="wl_pointer"/>
    </request>

    <request name="get_pinch_gesture">
      <description summary="get pinch gesture">
	Create a pinch gesture object. See the
	wl_pointer_gesture_pinch interface for details.
      </description>
      <arg name="id" type="new_id" interface="zwp_pointer_gesture_pinch_v1"/>
      <arg name="pointer" type="object" interface="wl_pointer"/>
    </request>
  </interface>

  <interface name="zwp_pointer_gesture_swipe_v1" version="1">
    <description summary="a swipe gesture object">
      A swipe gesture object notifies a client about a multi-finger swipe
      gesture detected on an indirect input device such as a touchpad.
      The gesture is usually initiated by multiple fingers moving in the
      same direction but once initiated the direction may change.
      The precise conditions of when such a gesture is detected are
      implementation-dependent.

      A gesture consists of three stages: begin, update (optional) and end.
      There cannot be multiple simultaneous pinch or swipe gestures on a
      same pointer/seat, how compositors prevent these situations is
      implementation-dependent.

      A gesture may be cancelled by the compositor or the hardware.
      Clients should not consider performing permanent or irreversible
      actions until the end of a gesture has been received.
    </description>

    <request name="destroy" type="destructor">
      <description summary="destroy the pointer swipe gesture object"/>
    </request>

    <event name="begin">
      <description summary="multi-finger swipe begin">
	This event is sent when a multi-finger swipe gesture is detected
	on the device.
      </description>
      <arg name="serial" type="uint"/>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="surface" type="object" interface="wl_surface"/>
      <arg name="fingers" type="uint" summary="number of fingers"/>
    </event>

    <event name="update">
      <description summary="multi-finger swipe motion">
	This event is sent when a multi-finger swipe gesture changes the
	position of the logical center.

	The dx and dy coordinates are relative coordinates of the logical
	center of the gesture compared to the previous event.
      </description>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="dx" type="fixed" summary="delta x coordinate in surface coordinate space"/>
      <arg name="dy" type="fixed" summary="delta y coordinate in surface coordinate space"/>
    </event>

    <event name="end">
      <description summary="multi-finger swipe end">
	This event is sent when a multi-finger swipe gesture ceases to
	be valid. This may happen when one or more finger is lifted or
	the gesture is cancelled.

	When a gesture is cancelled, the client should undo state changes
	caused by this gesture. What causes a gesture to be cancelled is
	implementation-dependent.
      </description>
      <arg name="serial" type="uint"/>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="cancelled" type="int" summary="1 if the gesture was cancelled, 0 otherwise"/>
    </event>
  </interface>

  <interface name="zwp_pointer_gesture_pinch_v1" version="1">
    <description summary="a pinch gesture object">
      A pinch gesture object notifies a client about a multi-finger pinch
      gesture detected on an indirect input device such as a touchpad.
      The gesture is usually initiated by multiple fingers moving towards
      each other or away from each other, or by two or more fingers rotating
      around a logical center of gravity.  The precise conditions of when
      such a gesture is detected are implementation-dependent.

      A gesture consists of three stages: begin, update (optional) and end.
      There cannot be multiple simultaneous pinch or swipe gestures on a
      same pointer/seat, how compositors prevent these situations is
      implementation-dependent.

      A gesture may be cancelled by the compositor or the hardware.
      Clients should not consider performing permanent or irreversible
      actions until the end of a gesture has been received.
    </description>

    <request name="destroy" type="destructor">
      <description summary="destroy the pinch gesture object"/>
    </request>

    <event name="begin">
      <description summary="multi-finger pinch begin">
	This event is sent when a multi-finger pinch gesture is detected
	on the device.
      </description>
      <arg name="serial" type="uint"/>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="surface" type="object" interface="wl_surface"/>
      <arg name="fingers" type="uint" summary="number of fingers"/>
    </event>

    <event name="update">
      <description summary="multi-finger pinch motion">
	This event is sent when a multi-finger pinch gesture changes the
	position of the logical center, the rotation or the relative scale.

	The dx and dy coordinates are relative coordinates in the
	surface coordinate space of the logical center of the gesture.

	The scale factor is an absolute scale compared to the
	pointer_gesture_pinch.begin event, e.g. a scale of 2 means the fingers
	are now twice as far apart as on pointer_gesture_pinch.begin.

	The rotation is the relative angle in degrees clockwise compared to the previous
	pointer_gesture_pinch.begin or pointer_gesture_pinch.update event.
      </description>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="dx" type="fixed" summary="delta x coordinate in surface coordinate space"/>
      <arg name="dy" type="fixed" summary="delta y coordinate in surface coordinate space"/>
      <arg name="scale" type="fixed" summary="scale relative to the initial finger position"/>
      <arg name="rotation" type="fixed" summary="angle in degrees cw relative to the previous event"/>
    </event>

    <event name="end">
      <description summary="multi-finger pinch end">
	This event is sent when a multi-finger pinch gesture ceases to
	be valid. This may happen when one or more finger is lifted or
	the gesture is cancelled.

	When a gesture is cancelled, the client should undo state changes
	caused by this gesture. What causes a gesture to be cancelled is
	implementation-dependent.
      </description>
      <arg name="serial" type="uint"/>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="cancelled" type="int" summary="1 if the gesture was cancelled, 0 otherwise"/>
    </event>
  </interface>
</protocol>