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"> |
Benjamin Franzke | d0f79ab | 2011-11-22 12:43:52 +0100 | [diff] [blame^] | 5 | <arg name="output" type="object" interface="wl_output"/> |
Kristian Høgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 6 | <arg name="surface" type="object" interface="wl_surface"/> |
| 7 | </request> |
| 8 | |
| 9 | <request name="set_panel"> |
Benjamin Franzke | d0f79ab | 2011-11-22 12:43:52 +0100 | [diff] [blame^] | 10 | <arg name="output" type="object" interface="wl_output"/> |
Kristian Høgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 11 | <arg name="surface" type="object" interface="wl_surface"/> |
| 12 | </request> |
| 13 | |
Pekka Paalanen | 9ef3e01 | 2011-11-15 13:34:48 +0200 | [diff] [blame] | 14 | <request name="set_lock_surface"> |
| 15 | <arg name="surface" type="object" interface="wl_surface"/> |
| 16 | </request> |
| 17 | |
| 18 | <request name="unlock"/> |
| 19 | |
Kristian Høgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 20 | <!-- 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 Paalanen | 9ef3e01 | 2011-11-15 13:34:48 +0200 | [diff] [blame] | 30 | <!-- 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øgsberg | 7584062 | 2011-09-06 13:48:16 -0400 | [diff] [blame] | 36 | </interface> |
| 37 | |
| 38 | </protocol> |