aboutsummaryrefslogtreecommitdiff
path: root/protocol/wlr-data-control-unstable-v1.xml
blob: 75e8671b0deffb1810ec120135976098ed266a7c (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
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="wlr_data_control_unstable_v1">
  <copyright>
    Copyright © 2018 Simon Ser
    Copyright © 2019 Ivan Molodetskikh

    Permission to use, copy, modify, distribute, and sell this
    software and its documentation for any purpose is hereby granted
    without fee, provided that the above copyright notice appear in
    all copies and that both that copyright notice and this permission
    notice appear in supporting documentation, and that the name of
    the copyright holders not be used in advertising or publicity
    pertaining to distribution of the software without specific,
    written prior permission.  The copyright holders make no
    representations about the suitability of this software for any
    purpose.  It is provided "as is" without express or implied
    warranty.

    THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
    SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
    FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
    SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
    AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
    ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
    THIS SOFTWARE.
  </copyright>

  <description summary="control data devices">
    This protocol allows a privileged client to control data devices. In
    particular, the client will be able to manage the current selection and take
    the role of a clipboard manager.

    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>

  <interface name="zwlr_data_control_manager_v1" version="2">
    <description summary="manager to control data devices">
      This interface is a manager that allows creating per-seat data device
      controls.
    </description>

    <request name="create_data_source">
      <description summary="create a new data source">
        Create a new data source.
      </description>
      <arg name="id" type="new_id" interface="zwlr_data_control_source_v1"
        summary="data source to create"/>
    </request>

    <request name="get_data_device">
      <description summary="get a data device for a seat">
        Create a data device that can be used to manage a seat's selection.
      </description>
      <arg name="id" type="new_id" interface="zwlr_data_control_device_v1"/>
      <arg name="seat" type="object" interface="wl_seat"/>
    </request>

    <request name="destroy" type="destructor">
      <description summary="destroy the manager">
        All objects created by the manager will still remain valid, until their
        appropriate destroy request has been called.
      </description>
    </request>
  </interface>

  <interface name="zwlr_data_control_device_v1" version="2">
    <description summary="manage a data device for a seat">
      This interface allows a client to manage a seat's selection.

      When the seat is destroyed, this object becomes inert.
    </description>

    <request name="set_selection">
      <description summary="copy data to the selection">
        This request asks the compositor to set the selection to the data from
        the source on behalf of the client.

        The given source may not be used in any further set_selection or
        set_primary_selection requests. Attempting to use a previously used
        source is a protocol error.

        To unset the selection, set the source to NULL.
      </description>
      <arg name="source" type="object" interface="zwlr_data_control_source_v1"
        allow-null="true"/>
    </request>

    <request name="destroy" type="destructor">
      <description summary="destroy this data device">
        Destroys the data device object.
      </description>
    </request>

    <event name="data_offer">
      <description summary="introduce a new wlr_data_control_offer">
        The data_offer event introduces a new wlr_data_control_offer object,
        which will subsequently be used in either the
        wlr_data_control_device.selection event (for the regular clipboard
        selections) or the wlr_data_control_device.primary_selection event (for
        the primary clipboard selections). Immediately following the
        wlr_data_control_device.data_offer event, the new data_offer object
        will send out wlr_data_control_offer.offer events to describe the MIME
        types it offers.
      </description>
      <arg name="id" type="new_id" interface="zwlr_data_control_offer_v1"/>
    </event>

    <event name="selection">
      <description summary="advertise new selection">
        The selection event is sent out to notify the client of a new
        wlr_data_control_offer for the selection for this device. The
        wlr_data_control_device.data_offer and the wlr_data_control_offer.offer
        events are sent out immediately before this event to introduce the data
        offer object. The selection event is sent to a client when a new
        selection is set. The wlr_data_control_offer is valid until a new
        wlr_data_control_offer or NULL is received. The client must destroy the
        previous selection wlr_data_control_offer, if any, upon receiving this
        event.

        The first selection event is sent upon binding the
        wlr_data_control_device object.
      </description>
      <arg name="id" type="object" interface="zwlr_data_control_offer_v1"
        allow-null="true"/>
    </event>

    <event name="finished">
      <description summary="this data control is no longer valid">
        This data control object is no longer valid and should be destroyed by
        the client.
      </description>
    </event>

    <!-- Version 2 additions -->

    <event name="primary_selection" since="2">
      <description summary="advertise new primary selection">
        The primary_selection event is sent out to notify the client of a new
        wlr_data_control_offer for the primary selection for this device. The
        wlr_data_control_device.data_offer and the wlr_data_control_offer.offer
        events are sent out immediately before this event to introduce the data
        offer object. The primary_selection event is sent to a client when a
        new primary selection is set. The wlr_data_control_offer is valid until
        a new wlr_data_control_offer or NULL is received. The client must
        destroy the previous primary selection wlr_data_control_offer, if any,
        upon receiving this event.

        If the compositor supports primary selection, the first
        primary_selection event is sent upon binding the
        wlr_data_control_device object.
      </description>
      <arg name="id" type="object" interface="zwlr_data_control_offer_v1"
        allow-null="true"/>
    </event>

    <request name="set_primary_selection" since="2">
      <description summary="copy data to the primary selection">
        This request asks the compositor to set the primary selection to the
        data from the source on behalf of the client.

        The given source may not be used in any further set_selection or
        set_primary_selection requests. Attempting to use a previously used
        source is a protocol error.

        To unset the primary selection, set the source to NULL.

        The compositor will ignore this request if it does not support primary
        selection.
      </description>
      <arg name="source" type="object" interface="zwlr_data_control_source_v1"
        allow-null="true"/>
    </request>

    <enum name="error" since="2">
      <entry name="used_source" value="1"
        summary="source given to set_selection or set_primary_selection was already used before"/>
    </enum>
  </interface>

  <interface name="zwlr_data_control_source_v1" version="1">
    <description summary="offer to transfer data">
      The wlr_data_control_source object is the source side of a
      wlr_data_control_offer. It is created by the source client in a data
      transfer and provides a way to describe the offered data and a way to
      respond to requests to transfer the data.
    </description>

    <enum name="error">
      <entry name="invalid_offer" value="1"
        summary="offer sent after wlr_data_control_device.set_selection"/>
    </enum>

    <request name="offer">
      <description summary="add an offered MIME type">
        This request adds a MIME type to the set of MIME types advertised to
        targets. Can be called several times to offer multiple types.

        Calling this after wlr_data_control_device.set_selection is a protocol
        error.
      </description>
      <arg name="mime_type" type="string"
        summary="MIME type offered by the data source"/>
    </request>

    <request name="destroy" type="destructor">
      <description summary="destroy this source">
        Destroys the data source object.
      </description>
    </request>

    <event name="send">
      <description summary="send the data">
        Request for data from the client. Send the data as the specified MIME
        type over the passed file descriptor, then close it.
      </description>
      <arg name="mime_type" type="string" summary="MIME type for the data"/>
      <arg name="fd" type="fd" summary="file descriptor for the data"/>
    </event>

    <event name="cancelled">
      <description summary="selection was cancelled">
        This data source is no longer valid. The data source has been replaced
        by another data source.

        The client should clean up and destroy this data source.
      </description>
    </event>
  </interface>

  <interface name="zwlr_data_control_offer_v1" version="1">
    <description summary="offer to transfer data">
      A wlr_data_control_offer represents a piece of data offered for transfer
      by another client (the source client). The offer describes the different
      MIME types that the data can be converted to and provides the mechanism
      for transferring the data directly from the source client.
    </description>

    <request name="receive">
      <description summary="request that the data is transferred">
        To transfer the offered data, the client issues this request and
        indicates the MIME type it wants to receive. The transfer happens
        through the passed file descriptor (typically created with the pipe
        system call). The source client writes the data in the MIME type
        representation requested and then closes the file descriptor.

        The receiving client reads from the read end of the pipe until EOF and
        then closes its end, at which point the transfer is complete.

        This request may happen multiple times for different MIME types.
      </description>
      <arg name="mime_type" type="string"
        summary="MIME type desired by receiver"/>
      <arg name="fd" type="fd" summary="file descriptor for data transfer"/>
    </request>

    <request name="destroy" type="destructor">
      <description summary="destroy this offer">
        Destroys the data offer object.
      </description>
    </request>

    <event name="offer">
      <description summary="advertise offered MIME type">
        Sent immediately after creating the wlr_data_control_offer object.
        One event per offered MIME type.
      </description>
      <arg name="mime_type" type="string" summary="offered MIME type"/>
    </event>
  </interface>
</protocol>