| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <protocol name="remote_shell_unstable_v1"> | 2 <protocol name="remote_shell_unstable_v1"> |
| 3 | 3 |
| 4 <copyright> | 4 <copyright> |
| 5 Copyright 2016 The Chromium Authors. | 5 Copyright 2016 The Chromium Authors. |
| 6 | 6 |
| 7 Permission is hereby granted, free of charge, to any person obtaining a | 7 Permission is hereby granted, free of charge, to any person obtaining a |
| 8 copy of this software and associated documentation files (the "Software"), | 8 copy of this software and associated documentation files (the "Software"), |
| 9 to deal in the Software without restriction, including without limitation | 9 to deal in the Software without restriction, including without limitation |
| 10 the rights to use, copy, modify, merge, publish, distribute, sublicense, | 10 the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 Warning! The protocol described in this file is experimental and backward | 31 Warning! The protocol described in this file is experimental and backward |
| 32 incompatible changes may be made. Backward compatible changes may be added | 32 incompatible changes may be made. Backward compatible changes may be added |
| 33 together with the corresponding interface version bump. Backward | 33 together with the corresponding interface version bump. Backward |
| 34 incompatible changes are done by bumping the version number in the protocol | 34 incompatible changes are done by bumping the version number in the protocol |
| 35 and interface names and resetting the interface version. Once the protocol | 35 and interface names and resetting the interface version. Once the protocol |
| 36 is to be declared stable, the 'z' prefix and the version number in the | 36 is to be declared stable, the 'z' prefix and the version number in the |
| 37 protocol and interface names are removed and the interface version number is | 37 protocol and interface names are removed and the interface version number is |
| 38 reset. | 38 reset. |
| 39 </description> | 39 </description> |
| 40 | 40 |
| 41 <interface name="zwp_remote_shell_v1" version="9"> | 41 <interface name="zwp_remote_shell_v1" version="10"> |
| 42 <description summary="remote_shell"> | 42 <description summary="remote_shell"> |
| 43 The global interface that allows clients to turn a wl_surface into a | 43 The global interface that allows clients to turn a wl_surface into a |
| 44 "real window" which is remotely managed but can be stacked, activated | 44 "real window" which is remotely managed but can be stacked, activated |
| 45 and made fullscreen by the user. | 45 and made fullscreen by the user. |
| 46 </description> | 46 </description> |
| 47 | 47 |
| 48 <enum name="container"> | 48 <enum name="container"> |
| 49 <description summary="containers for remote surfaces"> | 49 <description summary="containers for remote surfaces"> |
| 50 Determine how a remote surface should be stacked relative to other | 50 Determine how a remote surface should be stacked relative to other |
| 51 shell surfaces. | 51 shell surfaces. |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 <arg name="transform" type="int"/> | 160 <arg name="transform" type="int"/> |
| 161 <arg name="scale_factor" type="fixed"/> | 161 <arg name="scale_factor" type="fixed"/> |
| 162 <arg name="work_area_inset_left" type="int"/> | 162 <arg name="work_area_inset_left" type="int"/> |
| 163 <arg name="work_area_inset_top" type="int"/> | 163 <arg name="work_area_inset_top" type="int"/> |
| 164 <arg name="work_area_inset_right" type="int"/> | 164 <arg name="work_area_inset_right" type="int"/> |
| 165 <arg name="work_area_inset_bottom" type="int"/> | 165 <arg name="work_area_inset_bottom" type="int"/> |
| 166 <arg name="layout_mode" type="uint"/> | 166 <arg name="layout_mode" type="uint"/> |
| 167 </event> | 167 </event> |
| 168 </interface> | 168 </interface> |
| 169 | 169 |
| 170 <interface name="zwp_remote_surface_v1" version="9"> | 170 <interface name="zwp_remote_surface_v1" version="10"> |
| 171 <description summary="A desktop window"> | 171 <description summary="A desktop window"> |
| 172 An interface that may be implemented by a wl_surface, for | 172 An interface that may be implemented by a wl_surface, for |
| 173 implementations that provide a desktop-style user interface | 173 implementations that provide a desktop-style user interface |
| 174 and allows for remotely managed windows. | 174 and allows for remotely managed windows. |
| 175 | 175 |
| 176 It provides requests to treat surfaces like windows, allowing to set | 176 It provides requests to treat surfaces like windows, allowing to set |
| 177 properties like app id and geometry. | 177 properties like app id and geometry. |
| 178 | 178 |
| 179 The client must call wl_surface.commit on the corresponding wl_surface | 179 The client must call wl_surface.commit on the corresponding wl_surface |
| 180 for the remote_surface state to take effect. | 180 for the remote_surface state to take effect. |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 | 489 |
| 490 <!-- Version 9 additions --> | 490 <!-- Version 9 additions --> |
| 491 | 491 |
| 492 <request name="set_rectangular_shadow_background_opacity" since="9"> | 492 <request name="set_rectangular_shadow_background_opacity" since="9"> |
| 493 <description summary="suggests the window's background opacity"> | 493 <description summary="suggests the window's background opacity"> |
| 494 Suggests the window's background opacity when the shadow is requested. | 494 Suggests the window's background opacity when the shadow is requested. |
| 495 </description> | 495 </description> |
| 496 <arg name="opacity" type="fixed"/> | 496 <arg name="opacity" type="fixed"/> |
| 497 </request> | 497 </request> |
| 498 | 498 |
| 499 <!-- Version 10 additions --> |
| 500 |
| 501 <request name="activate" since="10"> |
| 502 <description summary="make the surface active"> |
| 503 Make the surface active and bring it to the front. |
| 504 </description> |
| 505 <arg name="serial" type="uint" summary="the serial of the user event"/> |
| 506 </request> |
| 499 </interface> | 507 </interface> |
| 500 | 508 |
| 501 <!-- Version 6 additions --> | 509 <!-- Version 6 additions --> |
| 502 | 510 |
| 503 <interface name="zwp_notification_surface_v1" version="6"> | 511 <interface name="zwp_notification_surface_v1" version="6"> |
| 504 <description summary="A notification window"> | 512 <description summary="A notification window"> |
| 505 An interface that may be implemented by a wl_surface to host | 513 An interface that may be implemented by a wl_surface to host |
| 506 notification contents. | 514 notification contents. |
| 507 </description> | 515 </description> |
| 508 | 516 |
| 509 <request name="destroy" type="destructor"> | 517 <request name="destroy" type="destructor"> |
| 510 <description summary="Destroy the notification_surface"> | 518 <description summary="Destroy the notification_surface"> |
| 511 Unmap and destroy the notification surface. | 519 Unmap and destroy the notification surface. |
| 512 </description> | 520 </description> |
| 513 </request> | 521 </request> |
| 514 </interface> | 522 </interface> |
| 515 | 523 |
| 516 </protocol> | 524 </protocol> |
| OLD | NEW |