Kristian Høgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 1 | <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 Paalanen | 9ef3e01 | 2011-11-15 13:34:48 +0200 | [diff] [blame^] | 12 | <request name="set_lock_surface"> |
| 13 | <arg name="surface" type="object" interface="wl_surface"/> |
| 14 | </request> |
| 15 | |
| 16 | <request name="unlock"/> |
| 17 | |
Kristian Høgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 18 | <!-- 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 Paalanen | 9ef3e01 | 2011-11-15 13:34:48 +0200 | [diff] [blame^] | 28 | <!-- 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øgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 34 | </interface> |
| 35 | |
| 36 | </protocol> |