New drag and drop / selection protocol
[profile/ivi/wayland.git] / protocol / wayland.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <protocol name="wayland">
3
4   <copyright>
5     Copyright © 2008-2011 Kristian Høgsberg
6     Copyright © 2010-2011 Intel Corporation
7
8     Permission to use, copy, modify, distribute, and sell this
9     software and its documentation for any purpose is hereby granted
10     without fee, provided that\n the above copyright notice appear in
11     all copies and that both that copyright notice and this permission
12     notice appear in supporting documentation, and that the name of
13     the copyright holders not be used in advertising or publicity
14     pertaining to distribution of the software without specific,
15     written prior permission.  The copyright holders make no
16     representations about the suitability of this software for any
17     purpose.  It is provided "as is" without express or implied
18     warranty.
19
20     THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
21     SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
22     FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
23     SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24     WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
25     AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
26     ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
27     THIS SOFTWARE.
28   </copyright>
29
30   <!-- The core global object. This is a special singleton object.
31        It is used for internal wayland protocol features. -->
32   <interface name="wl_display" version="1">
33     <request name="bind">
34       <arg name="name" type="uint"/>
35       <arg name="interface" type="string"/>
36       <arg name="version" type="uint"/>
37       <arg name="id" type="new_id" interface="wl_object"/>
38     </request>
39
40     <!-- sync is an just an echo, which will reply with a key event.
41          Since requests are handled in-order, this can be used as a
42          barrier to ensure all previous requests have been handled.
43          The key argument can be used to correlate between multiple
44          sync invocations. -->
45     <request name="sync">
46       <arg name="callback" type="new_id" interface="wl_callback"/>
47     </request>
48
49     <!-- A fatal error has occurred. -->
50     <event name="error">
51       <arg name="object_id" type="object" interface="wl_object"/>
52       <arg name="code" type="uint"/>
53       <arg name="message" type="string"/>
54     </event>
55
56     <enum name="error">
57       <entry name="invalid_object" value="0"/>
58       <entry name="invalid_method" value="1"/>
59       <entry name="no_memory" value="2"/>
60     </enum>
61
62     <!-- Notify the client of global objects. These are objects that
63          are created by the server. Globals are published on the
64          initial client connection sequence, upon device hotplugs,
65          device disconnects, reconfiguration or other events.  The
66          server will always announce an object before the object sends
67          out events. -->
68     <event name="global">
69       <arg name="name" type="uint"/>
70       <arg name="interface" type="string"/>
71       <arg name="version" type="uint"/>
72     </event>
73
74     <!-- Notify the client of removed global objects. -->
75     <event name="global_remove">
76       <arg name="name" type="uint" />
77     </event>
78
79     <!-- Server has deleted the id and client can now reuse it. -->
80     <event name="delete_id">
81       <arg name="id" type="uint" />
82     </event>
83   </interface>
84
85   <interface name="wl_callback" version="1">
86     <event name="done">
87       <arg name="time" type="uint"/>
88     </event>
89   </interface>
90
91   <!-- A compositor. This object is a global.  The compositor is in
92        charge of combining the contents of multiple surfaces into one
93        displayable output. -->
94   <interface name="wl_compositor" version="1">
95     <!-- Factory request for a surface objects. A surface is akin to a
96          window. -->
97     <request name="create_surface">
98       <arg name="id" type="new_id" interface="wl_surface"/>
99     </request>
100   </interface>
101
102   <!-- Shared memory support -->
103   <interface name="wl_shm" version="1">
104     <enum name="error">
105       <entry name="invalid_format" value="0"/>
106       <entry name="invalid_stride" value="1"/>
107       <entry name="invalid_fd" value="2"/>
108     </enum>
109
110     <enum name="format">
111       <entry name="argb32" value="0"/>
112       <entry name="premultiplied_argb32" value="1"/>
113       <entry name="xrgb32" value="2"/>
114     </enum>
115
116     <!-- Transfer a shm buffer to the server.  The allocated buffer
117          would include at least stride * height bytes starting at the
118          beginning of fd.  The file descriptor is transferred over the
119          socket using AF_UNIX magical features. width, height, stride
120          and format describe the respective properties of the pixel
121          data contained in the buffer. -->
122     <request name="create_buffer">
123       <arg name="id" type="new_id" interface="wl_buffer"/>
124       <arg name="fd" type="fd"/>
125       <arg name="width" type="int"/>
126       <arg name="height" type="int"/>
127       <arg name="stride" type="uint"/>
128       <arg name="format" type="uint"/>
129     </request>
130
131     <event name="format">
132       <arg name="format" type="uint"/>
133     </event>
134   </interface>
135
136
137   <!-- A pixel buffer. Created using the drm, shm or similar objects.
138        It has a size, visual and contents, but not a location on the
139        screen. -->
140   <interface name="wl_buffer" version="1">
141     <!-- Notify the server that the specified area of the buffers
142          contents have changed.  To describe a more complicated area
143          of damage, break down the region into rectangles and use this
144          request several times.
145     -->
146     <request name="damage">
147       <arg name="x" type="int"/>
148       <arg name="y" type="int"/>
149       <arg name="width" type="int"/>
150       <arg name="height" type="int"/>
151     </request>
152
153     <!-- Destroy a buffer.  This will invalidate the object id. -->
154     <request name="destroy" type="destructor"/>
155
156     <!-- Sent when an attached buffer is no longer used by the compositor. -->
157     <event name="release"/>
158   </interface>
159
160
161   <interface name="wl_data_offer" version="1">
162     <!-- Indicate that the client can accept the given mime-type, or
163          NULL for not accepted.  Use for feedback during drag and
164          drop. -->
165     <request name="accept">
166       <arg name="time" type="uint"/>
167       <arg name="type" type="string"/>
168     </request>
169
170     <request name="receive">
171       <arg name="mime_type" type="string"/>
172       <arg name="fd" type="fd"/>
173     </request>
174
175     <request name="destroy" type="destructor"/>
176
177     <!-- Sent immediately after creating the wl_data_offer object.  One
178          event per offered mime type. -->
179     <event name="offer">
180       <arg name="type" type="string"/>
181     </event>
182   </interface>
183
184   <interface name="wl_data_source" version="1">
185     <!-- Add an offered mime type.  Can be called several times to
186          offer multiple types. -->
187     <request name="offer">
188       <arg name="type" type="string"/>
189     </request>
190
191     <!-- Destroy the selection. -->
192     <request name="destroy" type="destructor"/>
193
194     <!-- Sent when a target accepts pointer_focus or motion events.
195          If a target does not accept any of the offered types, type is
196          NULL -->
197     <event name="target">
198       <arg name="mime_type" type="string"/>
199     </event>
200
201     <!-- Request for data from another client.  Send the data in the
202          specified mime-type over the passed fd, the close it. -->
203     <event name="send">
204       <arg name="mime_type" type="string"/>
205       <arg name="fd" type="fd"/>
206     </event>
207
208     <!-- Another selection became active. -->
209     <event name="cancelled"/>
210   </interface>
211
212   <interface name="wl_data_device" version="1">
213     <request name="start_drag">
214       <arg name="source" type="object" interface="wl_data_source"/>
215       <arg name="surface" type="object" interface="wl_surface"/>
216       <arg name="time" type="uint"/>
217     </request>
218
219     <request name="attach">
220       <arg name="time" type="uint"/>
221       <arg name="buffer" type="object" interface="wl_buffer"/>
222       <arg name="x" type="int"/>
223       <arg name="y" type="int"/>
224     </request>
225
226     <request name="set_selection">
227       <arg name="source" type="object" interface="wl_data_source"/>
228       <arg name="time" type="uint"/>
229     </request>
230
231     <event name="data_offer">
232       <arg name="id" type="new_id" interface="wl_data_offer"/>
233     </event>
234
235     <event name="enter">
236       <arg name="time" type="uint"/>
237       <arg name="surface" type="object" interface="wl_surface"/>
238       <arg name="x" type="int"/>
239       <arg name="y" type="int"/>
240       <arg name="id" type="object" interface="wl_data_offer"/>
241     </event>
242
243     <event name="leave"/>
244
245     <event name="motion">
246       <arg name="time" type="uint"/>
247       <arg name="x" type="int"/>
248       <arg name="y" type="int"/>
249     </event>
250
251     <event name="drop"/>
252
253     <event name="selection">
254       <arg name="id" type="object" interface="wl_data_offer"/>
255     </event>
256   </interface>
257
258   <interface name="wl_data_device_manager" version="1">
259     <request name="create_data_source">
260       <arg name="id" type="new_id" interface="wl_data_source"/>
261     </request>
262
263     <request name="get_data_device">
264       <arg name="id" type="new_id" interface="wl_data_device"/>
265       <arg name="input_device" type="object" interface="wl_input_device"/>
266     </request>
267   </interface>
268
269   <interface name="wl_shell" version="1">
270     <request name="move">
271       <arg name="surface" type="object" interface="wl_surface"/>
272       <arg name="input_device" type="object" interface="wl_input_device"/>
273       <arg name="time" type="uint"/>
274     </request>
275
276     <enum name="resize">
277       <entry name="none" value="0"/>
278       <entry name="top" value="1"/>
279       <entry name="bottom" value="2"/>
280       <entry name="left" value="4"/>
281       <entry name="top_left" value="5"/>
282       <entry name="bottom_left" value="6"/>
283       <entry name="right" value="8"/>
284       <entry name="top_right" value="9"/>
285       <entry name="bottom_right" value="10"/>
286     </enum>
287
288     <request name="resize">
289       <arg name="surface" type="object" interface="wl_surface"/>
290       <arg name="input_device" type="object" interface="wl_input_device"/>
291       <arg name="time" type="uint"/>
292       <!-- edges is an enum, need to get the values in here -->
293       <arg name="edges" type="uint"/>
294     </request>
295
296     <!-- Make the surface visible as a toplevel window. -->
297     <request name="set_toplevel">
298       <arg name="surface" type="object" interface="wl_surface"/>
299     </request>
300
301     <!-- Map the surface relative to an existing surface. The x and y
302          arguments specify the locations of the upper left corner of
303          the surface relative to the upper left corner of the parent
304          surface.  The flags argument controls overflow/clipping
305          behaviour when the surface would intersect a screen edge,
306          panel or such.  And possibly whether the offset only
307          determines the initial position or if the surface is locked
308          to that relative position during moves. -->
309     <request name="set_transient">
310       <arg name="surface" type="object" interface="wl_surface"/>
311       <arg name="parent" type="object" interface="wl_surface"/>
312       <arg name="x" type="int"/>
313       <arg name="y" type="int"/>
314       <arg name="flags" type="uint"/>
315     </request>
316
317     <!-- Map the surface as a fullscreen surface.  There are a number
318          of options here: on which output? if the surface size doesn't
319          match the output size, do we scale, change resolution, or add
320          black borders? is that something the client controls?  what
321          about transient surfaces, do they float on top of the
322          fullscreen? what if there's already a fullscreen surface on
323          the output, maybe you can only go fullscreen if you're
324          active?  -->
325     <request name="set_fullscreen">
326       <arg name="surface" type="object" interface="wl_surface"/>
327     </request>
328
329     <!-- The configure event asks the client to resize its surface.
330          The size is a hint, in the sense that the client is free to
331          ignore it if it doesn't resize, pick a smaller size (to
332          satisfy aspect ration or resize in steps of NxM pixels).  The
333          client is free to dismiss all but the last configure event it
334          received. -->
335     <event name="configure">
336       <arg name="time" type="uint"/>
337       <arg name="edges" type="uint"/>
338       <arg name="surface" type="object" interface="wl_surface"/>
339       <arg name="width" type="int"/>
340       <arg name="height" type="int"/>
341     </event>
342   </interface>
343
344
345   <!-- A surface. This is an image that is displayed on the screen.
346        It has a location, size and pixel contents. Similar to a window. -->
347   <interface name="wl_surface" version="1">
348     <!-- Deletes the surface and invalidates its object id. -->
349     <request name="destroy" type="destructor"/>
350
351     <!-- Copy the contents of a buffer into this surface. The x and y
352          arguments specify the location of the new buffers upper left
353          corner, relative to the old buffers upper left corner. -->
354     <request name="attach">
355       <arg name="buffer" type="object" interface="wl_buffer"/>
356       <arg name="x" type="int"/>
357       <arg name="y" type="int"/>
358     </request>
359
360     <!-- After attaching a new buffer, this request is used to
361          describe the regions where the new buffer is different from
362          the previous buffer and needs to be repainted.  Coordinates
363          are relative to the new buffer. -->
364     <request name="damage">
365       <arg name="x" type="int"/>
366       <arg name="y" type="int"/>
367       <arg name="width" type="int"/>
368       <arg name="height" type="int"/>
369     </request>
370
371     <!-- Request notification when the next frame is displayed.
372          Useful for throttling redrawing operations, and driving
373          animations.  The notification will only be posted for one
374          frame unless requested again. -->
375     <request name="frame">
376       <arg name="callback" type="new_id" interface="wl_callback"/>
377     </request>
378
379   </interface>
380
381
382   <!-- A group of keyboards and pointer devices (mice, for
383        example). This object is published as a global during start up,
384        or when such a device is hot plugged.  A input_device group
385        typically has a pointer and maintains a keyboard_focus and a
386        pointer_focus.  -->
387   <interface name="wl_input_device" version="1">
388     <!-- Set the pointer's image.  This request only takes effect if
389          the pointer focus for this device is one of the requesting
390          clients surfaces.  -->
391     <request name="attach">
392       <arg name="time" type="uint"/>
393       <arg name="buffer" type="object" interface="wl_buffer"/>
394       <arg name="hotspot_x" type="int"/>
395       <arg name="hotspot_y" type="int"/>
396     </request>
397
398     <!-- Notification of pointer location change.
399          x,y are the absolute location on the screen.
400          surface_[xy] are the location relative to the focused surface. -->
401     <event name="motion">
402       <arg name="time" type="uint"/>
403       <arg name="x" type="int"/>
404       <arg name="y" type="int"/>
405       <arg name="surface_x" type="int"/>
406       <arg name="surface_y" type="int"/>
407     </event>
408
409     <!-- Mouse button click and release notifications.  The location
410          of the click is given by the last motion or pointer_focus
411          event. -->
412     <event name="button">
413       <arg name="time" type="uint"/>
414       <arg name="button" type="uint"/>
415       <arg name="state" type="uint"/>
416     </event>
417
418     <!-- Keyboard press. -->
419     <event name="key">
420       <arg name="time" type="uint"/>
421       <arg name="key" type="uint"/>
422       <arg name="state" type="uint"/>
423     </event>
424
425     <!-- Notification that this input device's pointer is focused on
426          certain surface. When an input_device enters a surface, the
427          pointer image is undefined and a client should respond to
428          this event by setting an apropriate pointer image. -->
429     <event name="pointer_focus">
430       <arg name="time" type="uint"/>
431       <arg name="surface" type="object" interface="wl_surface"/>
432       <arg name="x" type="int"/>
433       <arg name="y" type="int"/>
434       <arg name="surface_x" type="int"/>
435       <arg name="surface_y" type="int"/>
436     </event>
437
438     <event name="keyboard_focus">
439       <arg name="time" type="uint"/>
440       <arg name="surface" type="object" interface="wl_surface"/>
441       <arg name="keys" type="array"/>
442     </event>
443
444     <event name="touch_down">
445       <arg name="time" type="uint"/>
446       <arg name="id" type="int" />
447       <arg name="x" type="int" />
448       <arg name="y" type="int" />
449     </event>
450
451     <event name="touch_up">
452       <arg name="time" type="uint"/>
453       <arg name="id" type="int" />
454     </event>
455
456     <event name="touch_motion">
457       <arg name="time" type="uint"/>
458       <arg name="id" type="int" />
459       <arg name="x" type="int" />
460       <arg name="y" type="int" />
461     </event>
462
463     <!-- Indicates the end of a contact point list. -->
464     <event name="touch_frame"/>
465
466     <!-- Sent if the compositor decides the touch stream is a global
467          gesture. No further events are sent to the clients from that
468          particular gesture. -->
469     <event name="touch_cancel"/>
470   </interface>
471
472
473   <!-- An output describes part of the compositor geometry.  The
474        compositor work in the 'compositor coordinate system' and an
475        output corresponds to rectangular area in that space that is
476        actually visible.  This typically corresponds to a monitor that
477        displays part of the compositor space.  This object is
478        published as global during start up, or when a screen is hot
479        plugged.  -->
480   <interface name="wl_output" version="1">
481
482     <enum name="subpixel">
483       <entry name="unknown" value="0"/>
484       <entry name="none" value="1"/>
485       <entry name="horizontal_rgb" value="2"/>
486       <entry name="horizontal_bgr" value="3"/>
487       <entry name="vertical_rgb" value="4"/>
488       <entry name="vertical_bgr" value="5"/>
489     </enum>
490
491     <event name="geometry">
492       <arg name="x" type="int"/>
493       <arg name="y" type="int"/>
494       <arg name="physical_width" type="int"/>
495       <arg name="physical_height" type="int"/>
496       <arg name="subpixel" type="int"/>
497       <arg name="make" type="string"/>
498       <arg name="model" type="string"/>
499     </event>
500
501     <!-- Values for the flags bitfield of the mode event. -->
502     <enum name="mode">
503       <entry name="current" value="0x1"/>
504       <entry name="preferred" value="0x2"/>
505     </enum>
506       
507     <event name="mode">
508       <arg name="flags" type="uint"/>
509       <arg name="width" type="int"/>
510       <arg name="height" type="int"/>
511       <arg name="refresh" type="int"/>
512     </event>
513   </interface>
514
515 </protocol>