blob: fef666271127b87344d43ef8afb2f4716d041273 [file] [log] [blame]
Kristian Høgsberg75840622011-09-06 13:48:16 -04001<protocol name="desktop">
2
3 <interface name="desktop_shell" version="1">
4 <request name="set_background">
Benjamin Franzked0f79ab2011-11-22 12:43:52 +01005 <arg name="output" type="object" interface="wl_output"/>
Kristian Høgsberg75840622011-09-06 13:48:16 -04006 <arg name="surface" type="object" interface="wl_surface"/>
7 </request>
8
9 <request name="set_panel">
Benjamin Franzked0f79ab2011-11-22 12:43:52 +010010 <arg name="output" type="object" interface="wl_output"/>
Kristian Høgsberg75840622011-09-06 13:48:16 -040011 <arg name="surface" type="object" interface="wl_surface"/>
12 </request>
13
Pekka Paalanen9ef3e012011-11-15 13:34:48 +020014 <request name="set_lock_surface">
15 <arg name="surface" type="object" interface="wl_surface"/>
16 </request>
17
18 <request name="unlock"/>
19
Kristian Høgsberg75840622011-09-06 13:48:16 -040020 <!-- We'll fold most of wl_shell into this interface and then
21 they'll share the configure event. -->
22 <event name="configure">
23 <arg name="time" type="uint"/>
24 <arg name="edges" type="uint"/>
25 <arg name="surface" type="object" interface="wl_surface"/>
26 <arg name="width" type="int"/>
27 <arg name="height" type="int"/>
28 </event>
29
Pekka Paalanen9ef3e012011-11-15 13:34:48 +020030 <!-- Tell the shell we want it to create and set the lock surface,
31 which is a GUI asking the user to unlock the screen. The lock
32 surface is announced with 'set_lock_surface'. Whether or not
33 the shell actually implements locking, it MUST send 'unlock'
34 request to let the normal desktop resume. -->
35 <event name="prepare_lock_surface"/>
Kristian Høgsberg75840622011-09-06 13:48:16 -040036 </interface>
37
38</protocol>