Switch protocol to using serial numbers for ordering events and requests
[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 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   <interface name="wl_display" version="1">
31     <description summary="core global object">
32       The core global object.  This is a special singleton object.  It
33       is used for internal wayland protocol features.
34     </description>
35     <request name="bind">
36       <description summary="bind an object to the display">
37         Binds a new, client-created object to the server using @name as
38         the identifier.
39       </description>
40       <arg name="name" type="uint" summary="unique number id for object"/>
41       <arg name="interface" type="string"/>
42       <arg name="version" type="uint"/>
43       <arg name="id" type="new_id" interface="wl_object"/>
44     </request>
45
46     <request name="sync">
47       <description summary="asynchronous roundtrip">
48         The sync request asks the server to invoke the 'done' request
49         on the provided wl_callback object.  Since requests are
50         handled in-order, this can be used as a barrier to ensure all
51         previous requests have been handled.
52       </description>
53       <arg name="callback" type="new_id" interface="wl_callback"/>
54     </request>
55
56     <event name="error">
57       <description summary="fatal error event">
58         The error event is sent out when a fatal (non-recoverable)
59         error has occurred.
60       </description>
61       <arg name="object_id" type="object" interface="wl_object"/>
62       <arg name="code" type="uint"/>
63       <arg name="message" type="string"/>
64     </event>
65
66     <enum name="error">
67       <description summary="global error values">
68         These errors are global and can be emitted in response to any
69         server request.
70       </description>
71       <entry name="invalid_object" value="0"
72              summary="server couldn't find object"/>
73       <entry name="invalid_method" value="1"
74              summary="method doesn't exist on the specified interface"/>
75       <entry name="no_memory" value="2"
76              summary="server is out of memory"/>
77     </enum>
78
79     <event name="global">
80       <description summary="announce global object">
81         Notify the client of global objects.  These are objects that
82         are created by the server.  Globals are published on the
83         initial client connection sequence, upon device hotplugs,
84         device disconnects, reconfiguration or other events.  A client
85         can 'bind' to a global object by using the bind request.  This
86         creates a client side handle that lets the object emit events
87         to the client and lets the client invoke requests on the
88         object.
89       </description>
90       <arg name="name" type="uint"/>
91       <arg name="interface" type="string"/>
92       <arg name="version" type="uint"/>
93     </event>
94
95     <event name="global_remove">
96       <description summary="announce removal of global object">
97         Notify the client of removed global objects.
98       </description>
99       <arg name="name" type="uint"/>
100     </event>
101
102     <event name="delete_id">
103       <description summary="acknowledge object id deletion">
104         Server has deleted the id and client can now reuse it.
105       </description>
106       <arg name="id" type="uint" />
107     </event>
108   </interface>
109
110   <interface name="wl_callback" version="1">
111     <event name="done">
112       <arg name="serial" type="uint"/>
113     </event>
114   </interface>
115
116   <interface name="wl_compositor" version="1">
117     <description summary="the compositor singleton">
118       A compositor.  This object is a singleton global.  The
119       compositor is in charge of combining the contents of multiple
120       surfaces into one displayable output.
121     </description>
122
123     <request name="create_surface">
124       <description summary="create new surface">
125         Ask the compositor to create a new surface.
126       </description>
127       <arg name="id" type="new_id" interface="wl_surface"/>
128     </request>
129
130     <request name="create_region">
131       <description summary="create new region">
132         Ask the compositor to create a new region.
133       </description>
134       <arg name="id" type="new_id" interface="wl_region"/>
135     </request>
136   </interface>
137
138   <interface name="wl_shm_pool" version="1">
139     <description summary="a shared memory pool">
140       The wl_shm_pool object encapsulates a piece of memory shared
141       between the compsitor and client.  Through the wl_shm_pool
142       object, the client can allocate shared memory wl_buffer objects.
143       The objects will share the same underlying mapped memory.
144       Reusing the mapped memory avoids the setup/teardown overhead and
145       is useful when interactively resizing a surface or for many
146       small buffers.
147     </description>
148
149     <request name="create_buffer">
150       <description summary="create wl_buffer from pool">
151         Create a wl_buffer from the pool.  The buffer is created a
152         offset bytes into the pool and has width and height as
153         specified.  The stride arguments specifies the number of bytes
154         from beginning of one row to the beginning of the next.  The
155         format is the pixel format of the buffer and must be one of
156         those advertised through the wl_shm.format event.
157
158         A buffer will keep a reference to the pool it was created from
159         so it is valid to destroy the pool immediatedly after creating
160         a buffer from it.
161       </description>
162
163       <arg name="id" type="new_id" interface="wl_buffer"/>
164       <arg name="offset" type="int"/>
165       <arg name="width" type="int"/>
166       <arg name="height" type="int"/>
167       <arg name="stride" type="int"/>
168       <arg name="format" type="uint"/>
169     </request>
170
171     <request name="destroy" type="destructor">
172       <description summary="destroy the pool">
173         Destroy the pool.
174       </description>
175     </request>
176   </interface>
177
178   <interface name="wl_shm" version="1">
179     <description summary="shared memory support">
180       Support for shared memory buffers.
181     </description>
182
183     <enum name="error">
184       <entry name="invalid_format" value="0"/>
185       <entry name="invalid_stride" value="1"/>
186       <entry name="invalid_fd" value="2"/>
187     </enum>
188
189     <enum name="format">
190       <entry name="argb8888" value="0"/>
191       <entry name="xrgb8888" value="1"/>
192     </enum>
193
194     <request name="create_pool">
195       <description summary="create a shm pool">
196         This creates wl_shm_pool object, which can be used to create
197         shared memory based wl_buffer objects.  The server will mmap
198         size bytes of the passed fd, to use as backing memory for then
199         pool.
200       </description>
201
202       <arg name="id" type="new_id" interface="wl_shm_pool"/>
203       <arg name="fd" type="fd"/>
204       <arg name="size" type="int"/>
205     </request>
206
207     <event name="format">
208       <arg name="format" type="uint"/>
209     </event>
210   </interface>
211
212   <interface name="wl_buffer" version="1">
213     <description summary="content for a wl_surface">
214       A buffer provides the content for a wl_surface.  Buffers are
215       created through factory interfaces such as wl_drm, wl_shm or
216       similar.  It has a width and a height and can be attached to a
217       wl_surface, but the mechanism by which a client provides and
218       updates the contents is defined by the buffer factory interface
219     </description>
220
221     <request name="destroy" type="destructor">
222       <description summary="destroy a buffer">
223         Destroy a buffer.  This will invalidate the object id.
224       </description>
225     </request>
226
227     <event name="release">
228       <description summary="compositor releases buffer">
229         Sent when an attached buffer is no longer used by the compositor.
230       </description>
231     </event>
232   </interface>
233
234
235   <interface name="wl_data_offer" version="1">
236     <request name="accept">
237       <description summary="accept one of the offered mime-types">
238         Indicate that the client can accept the given mime-type, or
239         NULL for not accepted.  Use for feedback during drag and drop.
240       </description>
241
242       <arg name="serial" type="uint"/>
243       <arg name="type" type="string"/>
244     </request>
245
246     <request name="receive">
247       <arg name="mime_type" type="string"/>
248       <arg name="fd" type="fd"/>
249     </request>
250
251     <request name="destroy" type="destructor"/>
252
253     <event name="offer">
254       <description summary="advertise offered mime-type">
255         Sent immediately after creating the wl_data_offer object.  One
256         event per offered mime type.
257       </description>
258
259       <arg name="type" type="string"/>
260     </event>
261   </interface>
262
263   <interface name="wl_data_source" version="1">
264     <request name="offer">
265       <description summary="add an offered mime type">
266         This request adds a mime-type to the set of mime-types
267         advertised to targets.  Can be called several times to offer
268         multiple types.
269       </description>
270       <arg name="type" type="string"/>
271     </request>
272
273     <request name="destroy" type="destructor">
274       <description summary="destroy the data source">
275         Destroy the data source.
276       </description>
277     </request>
278
279     <event name="target">
280       <description summary="a target accepts an offered mime-type">
281         Sent when a target accepts pointer_focus or motion events.  If
282         a target does not accept any of the offered types, type is NULL.
283       </description>
284
285       <arg name="mime_type" type="string"/>
286     </event>
287
288     <event name="send">
289       <description summary="send the data">
290         Request for data from another client.  Send the data as the
291         specified mime-type over the passed fd, then close the fd.
292       </description>
293
294       <arg name="mime_type" type="string"/>
295       <arg name="fd" type="fd"/>
296     </event>
297
298     <event name="cancelled">
299       <description summary="selection was cancelled">
300         Another selection became active.
301       </description>
302     </event>
303
304   </interface>
305
306   <interface name="wl_data_device" version="1">
307     <request name="start_drag">
308       <description summary="start drag and drop operation">
309         This request asks the compositor to start a drag and drop
310         operation on behalf of the client.  The source argument is the
311         data source that provides the data for the eventual data
312         transfer.  The origin surface is the surface where the drag
313         originates and the client must have an active implicit grab
314         that matches the serial.  The icon surface is an optional
315         (can be nil) surface that provides an icon to be moved around
316         with the cursor.  Initially, the top-left corner of the icon
317         surface is placed at the cursor hotspot, but subsequent
318         surface.attach request can move the relative position.
319       </description>
320       <arg name="source" type="object" interface="wl_data_source"/>
321       <arg name="origin" type="object" interface="wl_surface"/>
322       <arg name="icon" type="object" interface="wl_surface"/>
323       <arg name="serial" type="uint"/>
324     </request>
325
326     <request name="set_selection">
327       <arg name="source" type="object" interface="wl_data_source"/>
328       <arg name="serial" type="uint"/>
329     </request>
330
331     <event name="data_offer">
332       <description summary="introduce a new wl_data_offer">
333         The data_offer event introduces a new wl_data_offer object,
334         which will subsequently be used in either the
335         data_device.enter event (for drag and drop) or the
336         data_device.selection event (for selections).  Immediately
337         following the data_device_data_offer event, the new data_offer
338         object will send out data_offer.offer events to describe the
339         mime-types it offers.
340       </description>
341
342       <arg name="id" type="new_id" interface="wl_data_offer"/>
343     </event>
344
345     <event name="enter">
346       <arg name="serial" type="uint"/>
347       <arg name="surface" type="object" interface="wl_surface"/>
348       <arg name="x" type="int"/>
349       <arg name="y" type="int"/>
350       <arg name="id" type="object" interface="wl_data_offer"/>
351     </event>
352
353     <event name="leave"/>
354
355     <event name="motion">
356       <arg name="time" type="uint"/>
357       <arg name="x" type="int"/>
358       <arg name="y" type="int"/>
359     </event>
360
361     <event name="drop"/>
362
363     <event name="selection">
364       <description summary="advertise new selection">
365         The selection event is sent out to notify the client of a new
366         wl_data_offer for the selection for this device.  The
367         data_device.data_offer and the data_offer.offer events are
368         sent out immediately before this event to introduce the data
369         offer object.  The selection event is sent to a client
370         immediately before receiving keyboard focus and when a new
371         selection is set while the client has keyboard focus.  The
372         data_offer is valid until a new data_offer or NULL is received
373         or until the client loses keyboard focus.
374       </description>
375       <arg name="id" type="object" interface="wl_data_offer"/>
376     </event>
377   </interface>
378
379   <interface name="wl_data_device_manager" version="1">
380     <request name="create_data_source">
381       <arg name="id" type="new_id" interface="wl_data_source"/>
382     </request>
383
384     <request name="get_data_device">
385       <arg name="id" type="new_id" interface="wl_data_device"/>
386       <arg name="input_device" type="object" interface="wl_input_device"/>
387     </request>
388   </interface>
389
390   <interface name="wl_shell" version="1">
391     <request name="get_shell_surface">
392       <arg name="id" type="new_id" interface="wl_shell_surface"/>
393       <arg name="surface" type="object" interface="wl_surface"/>
394     </request>
395   </interface>
396
397   <interface name="wl_shell_surface" version="1">
398
399     <description summary="desktop style meta data interface">
400       An interface implemented by a wl_surface.  On server side the
401       object is automatically destroyed when the related wl_surface is
402       destroyed.  On client side, wl_shell_surface_destroy() must be
403       called before destroying the wl_surface object.
404     </description>
405
406     <request name="move">
407       <arg name="input_device" type="object" interface="wl_input_device"/>
408       <arg name="serial" type="uint"/>
409     </request>
410
411     <enum name="resize">
412       <entry name="none" value="0"/>
413       <entry name="top" value="1"/>
414       <entry name="bottom" value="2"/>
415       <entry name="left" value="4"/>
416       <entry name="top_left" value="5"/>
417       <entry name="bottom_left" value="6"/>
418       <entry name="right" value="8"/>
419       <entry name="top_right" value="9"/>
420       <entry name="bottom_right" value="10"/>
421     </enum>
422
423     <request name="resize">
424       <arg name="input_device" type="object" interface="wl_input_device"/>
425       <arg name="serial" type="uint"/>
426       <arg name="edges" type="uint"/>
427     </request>
428
429     <request name="set_toplevel">
430       <description summary="make the surface a top level surface">
431         Make the surface a toplevel window.
432       </description>
433     </request>
434
435     <request name="set_transient">
436       <description summary="make the surface a transient surface">
437         Map the surface relative to an existing surface. The x and y
438         arguments specify the locations of the upper left corner of
439         the surface relative to the upper left corner of the parent
440         surface.  The flags argument controls overflow/clipping
441         behaviour when the surface would intersect a screen edge,
442         panel or such.  And possibly whether the offset only
443         determines the initial position or if the surface is locked to
444         that relative position during moves.
445       </description>
446
447       <arg name="parent" type="object" interface="wl_shell_surface"/>
448       <arg name="x" type="int"/>
449       <arg name="y" type="int"/>
450       <arg name="flags" type="uint"/>
451     </request>
452
453     <request name="set_fullscreen">
454       <description summary="make the surface a fullscreen surface">
455         Map the surface as a fullscreen surface. If an output parameter is
456         given then the surface will be made fullscreen on that output. If the
457         client does not specify the output then the compositor will apply its
458         policy - usually choosing the output on which the surface has the
459         biggest surface area.
460
461         The client may specify a method to resolve a size conflict between the
462         output size and the surface size - this is provided through the
463         fullscreen_method parameter.
464
465         The framerate parameter is used only when the fullscreen_method is set
466         to "driver", to indicate the preferred framerate. framerate=0 indicates
467         that the app does not care about framerate.
468
469         The compositor must reply to this request with a configure event with
470         the dimensions for the output on which the surface will be made fullscreen.
471       </description>
472       <arg name="method" type="uint"/>
473       <arg name="framerate" type="uint"/>
474       <arg name="output" type="object" interface="wl_output"/>
475     </request>
476
477     <enum name="fullscreen_method">
478       <description summary="different method to set the surface fullscreen">
479         Hints to indicate compositor how to deal with a conflict between the
480         dimensions for the surface and the dimensions of the output. As a hint
481         the compositor is free to ignore this parameter.
482
483         "default" The client has no preference on fullscreen behavior,
484         policies are determined by compositor.
485
486         "scale" The client prefers scaling by the compositor. Scaling would
487         always preserve surface's aspect ratio with surface centered on the
488         output
489
490         "driver" The client wants to switch video mode to the smallest mode
491         that can fit the client buffer. If the sizes do not match the
492         compositor must add black borders.
493
494         "fill" The surface is centered on the output on the screen with no
495         scaling. If the surface is of insufficient size the compositor must
496         add black borders.
497       </description>
498       <entry name="default" value="0"/>
499       <entry name="scale" value="1"/>
500       <entry name="driver" value="2"/>
501       <entry name="fill" value="3"/>
502     </enum>
503
504     <request name="set_popup">
505       <description summary="make the surface a popup surface">
506         Popup surfaces.  Will switch an implicit grab into
507         owner-events mode, and grab will continue after the implicit
508         grab ends (button released).  Once the implicit grab is over,
509         the popup grab continues until the window is destroyed or a
510         mouse button is pressed in any other clients window.  A click
511         in any of the clients surfaces is reported as normal, however,
512         clicks in other clients surfaces will be discarded and trigger
513         the callback.
514
515         TODO: Grab keyboard too, maybe just terminate on any click
516         inside or outside the surface?
517       </description>
518
519       <arg name="input_device" type="object" interface="wl_input_device"/>
520       <arg name="serial" type="uint"/>
521       <arg name="parent" type="object" interface="wl_shell_surface"/>
522       <arg name="x" type="int"/>
523       <arg name="y" type="int"/>
524       <arg name="flags" type="uint"/>
525     </request>
526
527     <request name="set_maximized">
528       <description summary="make the surface a maximized surface">
529         A request from the client to notify the compositor the maximized
530         operation. The compositor will reply with a configure event telling
531         the expected new surface size. The operation is completed on the
532         next buffer attach to this surface.
533         A maximized client will fill the fullscreen of the output it is bound
534         to, except the panel area. This is the main difference between
535         a maximized shell surface and a fullscreen shell surface.
536       </description>
537       <arg name="output" type="object" interface="wl_output"/>
538     </request>
539
540     <event name="configure">
541       <description summary="suggest resize">
542         The configure event asks the client to resize its surface.
543         The size is a hint, in the sense that the client is free to
544         ignore it if it doesn't resize, pick a smaller size (to
545         satisfy aspect ration or resize in steps of NxM pixels).  The
546         client is free to dismiss all but the last configure event it
547         received.
548       </description>
549
550       <arg name="edges" type="uint"/>
551       <arg name="width" type="int"/>
552       <arg name="height" type="int"/>
553     </event>
554
555     <event name="popup_done">
556       <description summary="popup interaction is done">
557         The popup_done event is sent out when a popup grab is broken,
558         that is, when the users clicks a surface that doesn't belong
559         to the client owning the popup surface.
560       </description>
561     </event>
562   </interface>
563
564   <interface name="wl_surface" version="1">
565     <description summary="an onscreen surface">
566       A surface.  This is an image that is displayed on the screen.
567       It has a location, size and pixel contents.
568     </description>
569
570     <request name="destroy" type="destructor">
571       <description summary="delete surface">
572         Deletes the surface and invalidates its object id.
573       </description>
574     </request>
575
576     <request name="attach">
577       <description summary="set the surface contents">
578         Copy the contents of a buffer into this surface. The x and y
579         arguments specify the location of the new buffers upper left
580         corner, relative to the old buffers upper left corner.
581       </description>
582
583       <arg name="buffer" type="object" interface="wl_buffer"/>
584       <arg name="x" type="int"/>
585       <arg name="y" type="int"/>
586     </request>
587
588     <request name="damage">
589       <description summary="mark part of the surface damaged">
590         After attaching a new buffer, this request is used to describe
591         the regions where the new buffer is different from the
592         previous buffer and needs to be repainted.  Coordinates are
593         relative to the new buffer.
594       </description>
595
596       <arg name="x" type="int"/>
597       <arg name="y" type="int"/>
598       <arg name="width" type="int"/>
599       <arg name="height" type="int"/>
600     </request>
601
602     <request name="frame">
603       <description summary="request repaint feedback">
604         Request notification when the next frame is displayed.  Useful
605         for throttling redrawing operations, and driving animations.
606         The notification will only be posted for one frame unless
607         requested again.
608       </description>
609
610       <arg name="callback" type="new_id" interface="wl_callback"/>
611     </request>
612
613     <request name="set_opaque_region">
614       <description summary="set opaque region">
615         This requests sets the region of the surface that contain
616         opaque content.  The opaque region is an optimization hint for
617         the compositor that lets it optimize out redrawing of content
618         behind opaque regions.  Setting an opaque region is not
619         required for correct behaviour, but marking transparent
620         content as opaque will result in repaint artifacts.
621
622         The region will be clipped to the extents of the current
623         surface size.  Setting the region has copy semantics, and the
624         region object can be destroyed immediately after setting the
625         opaque region.  If a buffer of a different size is attached or
626         if a nil region is set, the opaque region will revert back to
627         default.  The default opaque region is empty.
628       </description>
629
630       <arg name="region" type="object" interface="wl_region"/>
631     </request>
632
633     <request name="set_input_region">
634       <description summary="set input region">
635         This requests sets the region of the surface that can receive
636         pointer and touch events.  The region will be clipped to the
637         extents of the current surface size.  Setting the region has
638         copy semantics, and the region object can be destroyed
639         immediately after setting the input region.  If a buffer of a
640         different size is attached or if a nil region is passed, the
641         input region will revert back to default.  The default input
642         region is the entire surface.
643       </description>
644
645       <arg name="region" type="object" interface="wl_region"/>
646     </request>
647   </interface>
648
649   <interface name="wl_input_device" version="1">
650     <description summary="input device group">
651       A group of keyboards and pointer devices (mice, for
652       example). This object is published as a global during start up,
653       or when such a device is hot plugged.  A input_device group
654       typically has a pointer and maintains a keyboard_focus and a
655       pointer_focus.
656     </description>
657
658     <request name="attach">
659       <description summary="set the pointer image">
660         Set the pointer's image.  This request only takes effect if
661         the pointer focus for this device is one of the requesting
662         clients surfaces.
663       </description>
664
665       <arg name="serial" type="uint"/>
666       <arg name="buffer" type="object" interface="wl_buffer"/>
667       <arg name="hotspot_x" type="int"/>
668       <arg name="hotspot_y" type="int"/>
669     </request>
670
671     <event name="motion">
672       <description summary="pointer motion event">
673         Notification of pointer location change. The arguments surface_[xy]
674         are the location relative to the focused surface.
675       </description>
676
677       <arg name="time" type="uint"/>
678       <arg name="surface_x" type="int"/>
679       <arg name="surface_y" type="int"/>
680     </event>
681
682     <event name="button">
683       <description summary="pointer button event">
684         Mouse button click and release notifications.  The location
685         of the click is given by the last motion or pointer_focus event.
686       </description>
687
688       <arg name="serial" type="uint"/>
689       <arg name="time" type="uint"/>
690       <arg name="button" type="uint"/>
691       <arg name="state" type="uint"/>
692     </event>
693
694     <enum name="axis">
695       <description summary="axis types"/>
696       <entry name="vertical_scroll" value="0"/>
697       <entry name="horizontal_scroll" value="1"/>
698     </enum>
699
700     <event name="axis">
701       <description summary="axis event">
702         Scroll and other axis notifications.
703       </description>
704
705       <arg name="time" type="uint"/>
706       <arg name="axis" type="uint"/>
707       <arg name="value" type="int"/>
708     </event>
709
710     <event name="key">
711       <description summary="key event">
712         A key was pressed or released.
713       </description>
714
715       <arg name="serial" type="uint"/>
716       <arg name="time" type="uint"/>
717       <arg name="key" type="uint"/>
718       <arg name="state" type="uint"/>
719     </event>
720
721     <event name="pointer_enter">
722       <description summary="pointer enter event">
723         Notification that this input device's pointer is focused on
724         certain surface. When an input_device enters a surface, the
725         pointer image is undefined and a client should respond to this
726         event by setting an appropriate pointer image.
727       </description>
728
729       <arg name="serial" type="uint"/>
730       <arg name="surface" type="object" interface="wl_surface"/>
731       <arg name="surface_x" type="int"/>
732       <arg name="surface_y" type="int"/>
733     </event>
734
735     <event name="pointer_leave">
736       <description summary="pointer leave event">
737       </description>
738       <arg name="serial" type="uint"/>
739       <arg name="surface" type="object" interface="wl_surface"/>
740     </event>
741
742     <event name="keyboard_enter">
743       <arg name="serial" type="uint"/>
744       <arg name="surface" type="object" interface="wl_surface"/>
745       <arg name="keys" type="array"/>
746     </event>
747
748     <event name="keyboard_leave">
749       <arg name="serial" type="uint"/>
750       <arg name="surface" type="object" interface="wl_surface"/>
751     </event>
752
753     <event name="touch_down">
754       <arg name="serial" type="uint"/>
755       <arg name="time" type="uint"/>
756       <arg name="surface" type="object" interface="wl_surface"/>
757       <arg name="id" type="int" />
758       <arg name="x" type="int" />
759       <arg name="y" type="int" />
760     </event>
761
762     <event name="touch_up">
763       <arg name="serial" type="uint"/>
764       <arg name="time" type="uint"/>
765       <arg name="id" type="int" />
766     </event>
767
768     <event name="touch_motion">
769       <arg name="time" type="uint"/>
770       <arg name="id" type="int" />
771       <arg name="x" type="int" />
772       <arg name="y" type="int" />
773     </event>
774
775     <event name="touch_frame">
776       <description summary="end of touch frame event">
777         Indicates the end of a contact point list.
778       </description>
779     </event>
780
781     <event name="touch_cancel">
782       <description summary="touch session cancelled">
783         Sent if the compositor decides the touch stream is a global
784         gesture. No further events are sent to the clients from that
785         particular gesture.
786       </description>
787     </event>
788   </interface>
789
790
791   <interface name="wl_output" version="1">
792     <description summary="compositor output region">
793       An output describes part of the compositor geometry.  The
794       compositor work in the 'compositor coordinate system' and an
795       output corresponds to rectangular area in that space that is
796       actually visible.  This typically corresponds to a monitor that
797       displays part of the compositor space.  This object is published
798       as global during start up, or when a screen is hot plugged.
799     </description>
800
801     <enum name="subpixel">
802       <entry name="unknown" value="0"/>
803       <entry name="none" value="1"/>
804       <entry name="horizontal_rgb" value="2"/>
805       <entry name="horizontal_bgr" value="3"/>
806       <entry name="vertical_rgb" value="4"/>
807       <entry name="vertical_bgr" value="5"/>
808     </enum>
809
810     <event name="geometry">
811       <arg name="x" type="int"/>
812       <arg name="y" type="int"/>
813       <arg name="physical_width" type="int"/>
814       <arg name="physical_height" type="int"/>
815       <arg name="subpixel" type="int"/>
816       <arg name="make" type="string"/>
817       <arg name="model" type="string"/>
818     </event>
819
820     <enum name="mode">
821       <description summary="values for the flags bitfield in the mode event"/>
822       <entry name="current" value="0x1"/>
823       <entry name="preferred" value="0x2"/>
824     </enum>
825       
826     <event name="mode">
827       <arg name="flags" type="uint"/>
828       <arg name="width" type="int"/>
829       <arg name="height" type="int"/>
830       <arg name="refresh" type="int"/>
831     </event>
832   </interface>
833
834   <interface name="wl_region" version="1">
835     <description summary="region interface">
836       Region.
837     </description>
838
839     <request name="destroy" type="destructor">
840       <description summary="destroy region">
841         Destroy the region.  This will invalidate the object id.
842       </description>
843     </request>
844
845     <request name="add">
846       <description summary="add rectangle to region">
847         Add the specified rectangle to the region
848       </description>
849
850       <arg name="x" type="int"/>
851       <arg name="y" type="int"/>
852       <arg name="width" type="int"/>
853       <arg name="height" type="int"/>
854     </request>
855
856     <request name="subtract">
857       <description summary="subtract rectangle from region">
858         Subtract the specified rectangle from the region
859       </description>
860
861       <arg name="x" type="int"/>
862       <arg name="y" type="int"/>
863       <arg name="width" type="int"/>
864       <arg name="height" type="int"/>
865     </request>
866
867   </interface>
868
869 </protocol>