blob: d099925f96f02b45370b954735ab690a521dfe3b [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">
5 <arg name="surface" type="object" interface="wl_surface"/>
6 </request>
7
8 <request name="set_panel">
9 <arg name="surface" type="object" interface="wl_surface"/>
10 </request>
11
Pekka Paalanen9ef3e012011-11-15 13:34:48 +020012 <request name="set_lock_surface">
13 <arg name="surface" type="object" interface="wl_surface"/>
14 </request>
15
16 <request name="unlock"/>
17
Kristian Høgsberg75840622011-09-06 13:48:16 -040018 <!-- We'll fold most of wl_shell into this interface and then
19 they'll share the configure event. -->
20 <event name="configure">
21 <arg name="time" type="uint"/>
22 <arg name="edges" type="uint"/>
23 <arg name="surface" type="object" interface="wl_surface"/>
24 <arg name="width" type="int"/>
25 <arg name="height" type="int"/>
26 </event>
27
Pekka Paalanen9ef3e012011-11-15 13:34:48 +020028 <!-- Tell the shell we want it to create and set the lock surface,
29 which is a GUI asking the user to unlock the screen. The lock
30 surface is announced with 'set_lock_surface'. Whether or not
31 the shell actually implements locking, it MUST send 'unlock'
32 request to let the normal desktop resume. -->
33 <event name="prepare_lock_surface"/>
Kristian Høgsberg75840622011-09-06 13:48:16 -040034 </interface>
35
36</protocol>