1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
|
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="remote_shell_unstable_v1">
<copyright>
Copyright 2016 The Chromium Authors
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice (including the next
paragraph) shall be included in all copies or substantial portions of the
Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
</copyright>
<description summary="Create remote desktop-style surfaces">
remote_shell allows clients to turn a wl_surface into a "real window"
which can be stacked and activated by the user.
Warning! The protocol described in this file is experimental and backward
incompatible changes may be made. Backward compatible changes may be added
together with the corresponding interface version bump. Backward
incompatible changes are done by bumping the version number in the protocol
and interface names and resetting the interface version. Once the protocol
is to be declared stable, the 'z' prefix and the version number in the
protocol and interface names are removed and the interface version number is
reset.
</description>
<interface name="zcr_remote_shell_v1" version="33">
<description summary="remote_shell">
The global interface that allows clients to turn a wl_surface into a
"real window" which is remotely managed but can be stacked, activated
and made fullscreen by the user.
</description>
<enum name="container">
<description summary="containers for remote surfaces">
Determine how a remote surface should be stacked relative to other
shell surfaces.
</description>
<entry name="default" value="1" summary="default container"/>
<entry name="overlay" value="2" summary="system modal container"/>
</enum>
<enum name="state_type">
<description summary="state types for remote surfaces">
Defines common show states for shell surfaces.
</description>
<entry name="normal" value="1" summary="normal window state"/>
<entry name="minimized" value="2" summary="minimized window state"/>
<entry name="maximized" value="3" summary="maximized window state"/>
<entry name="fullscreen" value="4" summary="fullscreen window state"/>
<entry name="pinned" value="5" summary="pinned window state"/>
<entry name="trusted_pinned" value="6" summary="trusted pinned window state"/>
<entry name="moving" value="7" summary="moving window state"/>
<entry name="resizing" value="8" summary="resizing window state"/>
<entry name="left_snapped" value="9" summary="left snapped window state"/>
<entry name="right_snapped" value="10" summary="right snapped window state"/>
<entry name="pip" value="11" summary="pip window state"/>
</enum>
<enum name="error">
<entry name="role" value="0" summary="given wl_surface has another role"/>
<entry name="invalid_notification_key" value="1"
summary="invalid notification key"/>
</enum>
<enum name="layout_mode">
<description summary="the layout mode">
Determine how a client should layout surfaces.
</description>
<entry name="windowed" value="1" summary="multiple windows"/>
<entry name="tablet" value="2" summary="restricted mode for tablet"/>
</enum>
<request name="destroy" type="destructor">
<description summary="destroy remote_shell">
Destroy this remote_shell object.
Destroying a bound remote_shell object while there are surfaces
still alive created by this remote_shell object instance is illegal
and will result in a protocol error.
</description>
</request>
<request name="get_remote_surface">
<description summary="create a remote shell surface from a surface">
This creates an remote_surface for the given surface and gives it the
remote_surface role. A wl_surface can only be given a remote_surface
role once. If get_remote_surface is called with a wl_surface that
already has an active remote_surface associated with it, or if it had
any other role, an error is raised.
See the documentation of remote_surface for more details about what an
remote_surface is and how it is used.
</description>
<arg name="id" type="new_id" interface="zcr_remote_surface_v1"/>
<arg name="surface" type="object" interface="wl_surface"/>
<arg name="container" type="uint"/>
</request>
<event name="activated">
<description summary="activated surface changed">
Notifies client that the activated surface changed.
</description>
<arg name="gained_active" type="object" interface="wl_surface" allow-null="true"/>
<arg name="lost_active" type="object" interface="wl_surface" allow-null="true"/>
</event>
<request name="get_notification_surface">
<description summary="create a notification surface from a surface">
Creates a notification_surface for the given surface, gives it the
notification_surface role and associated it with a notification id.
</description>
<arg name="id" type="new_id" interface="zcr_notification_surface_v1"/>
<arg name="surface" type="object" interface="wl_surface"/>
<arg name="notification_key" type="string" />
</request>
<event name="configuration_changed">
<description summary="suggests a re-configuration of remote shell">
[Deprecated] Suggests a re-configuration of remote shell.
</description>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
<arg name="transform" type="int"/>
<arg name="scale_factor" type="fixed"/>
<arg name="work_area_inset_left" type="int"/>
<arg name="work_area_inset_top" type="int"/>
<arg name="work_area_inset_right" type="int"/>
<arg name="work_area_inset_bottom" type="int"/>
<arg name="layout_mode" type="uint"/>
</event>
<!-- Version 5 additions -->
<event name="workspace" since="5">
<description summary="area of remote shell">
[Deprecated] Defines an area of the remote shell used for layout. Each series of
"workspace" events must be terminated by a "configure" event.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
<arg name="inset_left" type="int"/>
<arg name="inset_top" type="int"/>
<arg name="inset_right" type="int"/>
<arg name="inset_bottom" type="int"/>
<arg name="transform" type="int"/>
<arg name="scale_factor" type="fixed"/>
<arg name="is_internal" type="uint" summary="1 if screen is built-in"/>
</event>
<event name="configure" since="5">
<description summary="suggests configuration of remote shell">
Suggests a new configuration of the remote shell. Preceded by a series
of "workspace" events.
</description>
<arg name="layout_mode" type="uint"/>
</event>
<!-- Version 8 additions -->
<event name="default_device_scale_factor" since="8">
<description summary="initialize scale configuration">
Sends the default device scale factor.
</description>
<arg name="scale" type="int" summary="DP to pixels ratio, in 8.24 fixed point format"/>
</event>
<!-- Version 17 additions -->
<request name="get_input_method_surface" since="17">
<description summary="Create a input method surface from a surface">
Creates an input_method_surface for the given surface, gives it
the input_method_surface role.
</description>
<arg name="id" type="new_id" interface="zcr_input_method_surface_v1"/>
<arg name="surface" type="object" interface="wl_surface"/>
</request>
<!-- Version 19 additions -->
<event name="display_info" since="19">
<description summary="extra display information">
[Deprecated] Sends display size in pixels and display identification data, typically
in EDID format. Preceded by a "workspace" event for the same display.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
<arg name="identification_data" type="array"/>
</event>
<!-- Version 20 additions -->
<event name="workspace_info" since="20">
<description summary="area of remote shell in pixels">
[Deprecated] Sends display information such as size, work area and its related information.
Each series of "workspace_info" events must be terminated by a "configure" event.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
<arg name="inset_left" type="int"/>
<arg name="inset_top" type="int"/>
<arg name="inset_right" type="int"/>
<arg name="inset_bottom" type="int"/>
<arg name="stable_inset_left" type="int"/>
<arg name="stable_inset_top" type="int"/>
<arg name="stable_inset_right" type="int"/>
<arg name="stable_inset_bottom" type="int"/>
<arg name="systemui_visibility" type="int" summary="systemui_visibility_state"/>
<arg name="transform" type="int"/>
<arg name="is_internal" type="uint" summary="1 if screen is built-in"/>
<arg name="identification_data" type="array" summary="EDID blob data"/>
</event>
<!-- Version 28 additions -->
<request name="get_toast_surface" since="28">
<description summary="Create a toast surface from a surface">
Creates an toast_surface for the given surface, gives it
the toast_surface role.
</description>
<arg name="id" type="new_id" interface="zcr_toast_surface_v1"/>
<arg name="surface" type="object" interface="wl_surface"/>
</request>
<!-- Version 29 additions -->
<event name="layout_mode" since="29">
<description summary="sends the layout_mode">
Sends the layout_mode used by the server.
</description>
<arg name="layout_mode" type="uint" summary="layout_mode enum"/>
</event>
<request name="get_remote_output" since="29">
<description summary="extend output interface for remote shell">
Instantiate an interface extension for the given wl_output to
provide remote shell functionality.
</description>
<arg name="id" type="new_id" interface="zcr_remote_output_v1" summary="the new remote output interface id"/>
<arg name="output" type="object" interface="wl_output" summary="the output"/>
</request>
<request name="set_use_default_device_scale_cancellation" since="29">
<description summary="set use default device scale cancellation">
Request the compositor to use the default_device_scale_factor to undo any
scaling applied to the client's buffers. When this is disabled, the
compositor will use the device_scale_factor of the display of the buffer to
cancel any buffer scaling.
</description>
<arg name="use_default_device_scale_factor" type="int" summary="0 if false"/>
</request>
<!-- Version 30 additions -->
<enum name="desktop_focus_state">
<description summary="desktop foucs state">
Desktop client window focus state.
</description>
<entry name="no_focus" value="1" summary="no window get focused"/>
<entry name="client_focused" value="2" summary="client window get focused"/>
<entry name="other_client_focused" value="3" summary="other client window get focused"/>
</enum>
<event name="desktop_focus_state_changed" since="30">
<description summary="desktop window focus state change">
Notifies client that the window focus state change.
</description>
<arg name="focus_state" type="uint"/>
</event>
</interface>
<interface name="zcr_remote_surface_v1" version="33">
<description summary="A desktop window">
An interface that may be implemented by a wl_surface, for
implementations that provide a desktop-style user interface
and allows for remotely managed windows.
It provides requests to treat surfaces like windows, allowing to set
properties like app id and geometry.
The client must call wl_surface.commit on the corresponding wl_surface
for the remote_surface state to take effect.
For a surface to be mapped by the compositor the client must have
committed both an remote_surface state and a buffer.
</description>
<enum name="systemui_visibility_state">
<description summary="systemui visibility behavior">
Determine the visibility behavior of the system UI.
</description>
<entry name="visible" value="1" summary="system ui is visible"/>
<entry name="autohide_non_sticky" value="2" summary="system ui autohides and is not sticky"/>
<entry name="autohide_sticky" value="3" summary="system ui autohides and is sticky"/>
</enum>
<enum name="orientation">
<description summary="window orientation">
The orientation of the window.
</description>
<entry name="portrait" value="1" summary="portrait"/>
<entry name="landscape" value="2" summary="landscape"/>
</enum>
<enum name="window_type">
<description summary="window type">
The type of the window.
</description>
<entry name="normal" value="1" summary="normal app window"/>
<entry name="system_ui" value="2" summary="window is treated as systemui"/>
<entry name="hidden_in_overview" value="3" summary="window is normal, but hidden in overview"/>
</enum>
<request name="destroy" type="destructor">
<description summary="Destroy the remote_surface">
Unmap and destroy the window. The window will be effectively
hidden from the user's point of view, and all state will be lost.
</description>
</request>
<request name="set_app_id">
<description summary="set application ID">
Set an application identifier for the surface.
</description>
<arg name="app_id" type="string"/>
</request>
<request name="set_window_geometry">
<description summary="set the new window geometry">
[Deprecated] The window geometry of a window is its "visible bounds"
from the user's perspective. Client-side decorations often have
invisible portions like drop-shadows which should be ignored for the
purposes of aligning, placing and constraining windows.
The window geometry is double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the window geometry of the surface is set once, it is not
possible to unset it, and it will remain the same until
set_window_geometry is called again, even if a new subsurface or
buffer is attached.
If never set, the value is the full bounds of the output. This
updates dynamically on every commit.
The arguments are given in the output coordinate space.
The width and height must be greater than zero.
</description>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<request name="set_scale">
<description summary="set scale">
Set a scale factor that will be applied to surface and all descendants.
</description>
<arg name="scale" type="fixed"/>
</request>
<request name="set_rectangular_shadow">
<description summary="set a rectangular shadow">
[Deprecated] Request that surface needs a rectangular shadow.
This is only a request that the surface should have a rectangular
shadow. The compositor may choose to ignore this request.
The arguments are given in the output coordinate space and specifies
the inner bounds of the shadow.
The arguments are given in the output coordinate space.
Specifying zero width and height will disable the shadow.
</description>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<request name="set_rectangular_shadow_background_opacity">
<description summary="suggests the window's background opacity">
[Deprecated] Suggests the window's background opacity when the shadow is requested.
</description>
<arg name="opacity" type="fixed"/>
</request>
<request name="set_title">
<description summary="set surface title">
Set a short title for the surface.
This string may be used to identify the surface in a task bar,
window list, or other user interface elements provided by the
compositor.
The string must be encoded in UTF-8.
</description>
<arg name="title" type="string"/>
</request>
<request name="set_top_inset">
<description summary="set top inset for surface">
Set distance from the top of the surface to the contents.
This distance typically represents the size of the window caption.
</description>
<arg name="height" type="int"/>
</request>
<request name="activate">
<description summary="make the surface active">
Make the surface active and bring it to the front.
</description>
<arg name="serial" type="uint" summary="the serial of the user event"/>
</request>
<request name="maximize">
<description summary="maximize">
Request that surface is maximized. The window geometry will be updated
to whatever the compositor finds appropriate for a maximized window.
This is only a request that the window should be maximized. The
compositor may choose to ignore this request. The client should
listen to set_maximized events to determine if the window was
maximized or not.
</description>
</request>
<request name="minimize">
<description summary="minimize">
Request that surface is minimized.
This is only a request that the window should be minimized. The
compositor may choose to ignore this request. The client should
listen to set_minimized events to determine if the window was
minimized or not.
</description>
</request>
<request name="restore">
<description summary="restore">
Request that surface is restored. This restores the window geometry
to what it was before the window was minimized, maximized or made
fullscreen.
This is only a request that the window should be restored. The
compositor may choose to ignore this request. The client should
listen to unset_maximized, unset_minimize and unset_fullscreen
events to determine if the window was restored or not.
</description>
</request>
<request name="fullscreen">
<description summary="fullscreen">
Request that surface is made fullscreen.
This is only a request that the window should be made fullscreen.
The compositor may choose to ignore this request. The client should
listen to set_fullscreen events to determine if the window was
made fullscreen or not.
</description>
</request>
<request name="unfullscreen">
<description summary="unfullscreen">
Request that surface is made unfullscreen.
This is only a request that the window should be made unfullscreen.
The compositor may choose to ignore this request. The client should
listen to unset_fullscreen events to determine if the window was
made unfullscreen or not.
</description>
</request>
<request name="pin">
<description summary="pin">
Request that surface is pinned.
This is only a request that the window should be pinned.
The compositor may choose to ignore this request. The client should
listen to state_changed events to determine if the window was
pinned or not. If trusted flag is non-zero, the app can prevent users
from exiting the pinned mode.
</description>
<arg name="trusted" type="int"/>
</request>
<request name="unpin">
<description summary="unpin">
Request that surface is unpinned.
This is only a request that the window should be unpinned.
The compositor may choose to ignore this request. The client should
listen to unset_pinned events to determine if the window was
unpinned or not.
</description>
</request>
<request name="set_system_modal">
<description summary="suggests a re-layout of remote shell input area">
Suggests a surface should become system modal.
</description>
</request>
<request name="unset_system_modal">
<description summary="suggests a re-layout of remote shell input area">
Suggests a surface should become non system modal.
</description>
</request>
<event name="close">
<description summary="surface wants to be closed">
The close event is sent by the compositor when the user
wants the surface to be closed. This should be equivalent to
the user clicking the close button in client-side decorations,
if your application has any...
This is only a request that the user intends to close your
window. The client may choose to ignore this request, or show
a dialog to ask the user to save their data...
</description>
</event>
<event name="state_type_changed">
<description summary="surface state type changed">
[Deprecated] The state_type_changed event is sent by the compositor when
the surface state changed.
This is an event to notify that the window state changed in compositor.
The state change may be triggered by a client's request, or some user
action directly handled by the compositor. The client may choose to
ignore this event.
</description>
<arg name="state_type" type="uint"/>
</event>
<!-- Version 2 additions -->
<request name="set_rectangular_surface_shadow" since="2">
<description summary="set a rectangular shadow">
Request that surface needs a rectangular shadow.
This is only a request that the surface should have a rectangular
shadow. The compositor may choose to ignore this request.
The arguments are given in the remote surface coordinate space and
specifies inner bounds of the shadow. Specifying zero width and height
will disable the shadow.
</description>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<!-- Version 3 additions -->
<request name="set_systemui_visibility" since="3">
<description summary="requests the system ui visibility behavior for the surface">
Requests how the surface will change the visibility of the system UI when it is made active.
</description>
<arg name="visibility" type="uint"/>
</request>
<!-- Version 4 additions -->
<request name="set_always_on_top" since="4">
<description summary="set always on top">
Request that surface is made to be always on top.
This is only a request that the window should be always on top.
The compositor may choose to ignore this request.
</description>
</request>
<request name="unset_always_on_top" since="4">
<description summary="unset always on top">
Request that surface is made to be not always on top.
This is only a request that the window should be not always on top.
The compositor may choose to ignore this request.
</description>
</request>
<!-- Version 5 additions -->
<event name="configure" since="5">
<description summary="suggest a surface change">
The configure event asks the client to change surface state.
The client must apply the origin offset to window positions in
set_window_geometry requests.
The states listed in the event are state_type values, and might change
due to a client request or an event directly handled by the compositor.
Clients should arrange their surface for the new state, and then send an
ack_configure request with the serial sent in this configure event at
some point before committing the new surface.
If the client receives multiple configure events before it can respond
to one, it is free to discard all but the last event it received.
</description>
<arg name="origin_offset_x" type="int"/>
<arg name="origin_offset_y" type="int"/>
<arg name="states" type="array"/>
<arg name="serial" type="uint"/>
</event>
<request name="ack_configure" since="5">
<description summary="ack a configure event">
When a configure event is received, if a client commits the
surface in response to the configure event, then the client
must make an ack_configure request sometime before the commit
request, passing along the serial of the configure event.
For instance, the compositor might use this information during display
configuration to change its coordinate space for set_window_geometry
requests only when the client has switched to the new coordinate space.
If the client receives multiple configure events before it
can respond to one, it only has to ack the last configure event.
A client is not required to commit immediately after sending
an ack_configure request - it may even ack_configure several times
before its next surface commit.
A client may send multiple ack_configure requests before committing, but
only the last request sent before a commit indicates which configure
event the client really is responding to.
</description>
<arg name="serial" type="uint" summary="the serial from the configure event"/>
</request>
<request name="move" since="5">
<description summary="start an interactive move">
[Deprecated] Start an interactive, user-driven move of the surface.
The compositor responds to this request with a configure event that
transitions to the "moving" state. The client must only initiate motion
after acknowledging the state change. The compositor can assume that
subsequent set_window_geometry requests are position updates until the
next state transition is acknowledged.
The compositor may ignore move requests depending on the state of the
surface, e.g. fullscreen or maximized.
</description>
</request>
<!-- Version 6 additions -->
<request name="set_orientation" since="6">
<description summary="set orientation">
Set an orientation for the surface.
</description>
<arg name="orientation" type="int"/>
</request>
<!-- Version 7 additions -->
<request name="set_window_type" since="7">
<description summary="set the type of the window">
Set the type of window. This is only a hint to the compositor and the
compositor is free to ignore it.
</description>
<arg name="type" type="uint" summary="type of the window"/>
</request>
<!-- Version 9 additions -->
<request name="resize" since="9">
<description summary="start an interactive resize">
[Deprecated] Start an interactive, user-driven resize of the surface.
The compositor responds to this request with a configure event that
transitions to the "resizing" state. The client must only initiate
resizing after acknowledging the state change. The compositor can assume
that subsequent set_window_geometry requests are resizes until the next
state transition is acknowledged.
The compositor may ignore resize requests depending on the state of the
surface, e.g. fullscreen or maximized.
</description>
</request>
<request name="set_resize_outset" since="9">
<description summary="expand input region for resizing">
Expand input region of surface with resize outset.
The compositor clips the input region of each surface to its bounds,
unless the client requests a resize outset. In that case, the input
region of the root surface is expanded to allow for some leeway around
visible bounds when starting a user-driven resize.
</description>
<arg name="outset" type="int"/>
</request>
<event name="window_geometry_changed" since="9">
<description summary="announce window geometry commit">
Notify the client of committed window geometry.
The compositor sends this event when it commits window geometry. The
client may use this information to convert coordinates of input events
using the latest committed geometry.
</description>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</event>
<!-- Version 10 additions -->
<enum name="bounds_change_reason">
<description summary="bounds_change_reason">
Specifies the cause of the window bounds change event.
</description>
<entry name="drag_move" value="1" summary="the window is being moved by drag operation"/>
<entry name="drag_resize" value="2" summary="the window is being resized by drag operation."/>
<entry name="snap_to_left" value="3"
summary="the window is resized to left snapped state"/>
<entry name="snap_to_right" value="4"
summary="the window is resized to right snapped state"/>
<entry name="move" value="5"
summary="the window bounds is moved due to other WM operations"/>
<entry name="resize" value="6"
summary="the window bounds is reiszed due to other WM operations"/>
<entry name="pip" value="7" summary="the window bounds is resized or moved for PIP"/>
</enum>
<event name="bounds_changed" since="10">
<description summary="The compositor requested to change the bounds">
[Deprecated] The compositor requested to change its
bounds. "bounds_change_reason" specifies the cause of the
bounds change. The client may apply the different move/resize
strategy depending on the reason.
"display_id_hi", "display_id_lo" specifies in which workspace
the surface should live in.
The client responds with set_window_geometry request, with the
bounds it is resized to (this may be different from the bounds
requested).
The client may ignore move request depending on the state,
e.g, if it becomes resizable or other constrants.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
<arg name="bounds_change_reason" type="uint"/>
</event>
<request name="start_move" since="10">
<description summary="start an interactive move">
Request an interactive, user-driven move of the surface. "x"
and "y" specifies the starting point of the pointer device
that initiated the move.
The compositor responds to this request with a drag_started
event with "none" direction. Please see drag_started event
for more details.
The compositor may ignore move requests depending on the state of the
surface, e.g. fullscreen or maximized.
</description>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
</request>
<enum name="resize_direction">
<description summary="resize direction">
The resize direction for drag operation
</description>
<entry name="none" value="0" summary="move only, no resize"/>
<entry name="left" value="1" summary="resize to the left"/>
<entry name="topleft" value="2" summary="resize to the top left"/>
<entry name="top" value="3" summary="resize to the top"/>
<entry name="topright" value="4" summary="resize to the top right"/>
<entry name="right" value="5" summary="resize to the right"/>
<entry name="bottomright" value="6" summary="resize to the buttom right"/>
<entry name="bottom" value="7" summary="resize to the bottom"/>
<entry name="bottomleft" value="8" summary="resize to the bottom left"/>
</enum>
<event name="drag_started" since="10">
<description summary="Notifies that a drag to move/resize started.">
Notifies a client that the compositor started drag
operation. "direction" specifies which direction it is being
resized. "none" direction means just move but not resize.
This will be followed by series of the "bounds_changed" event
with "drag_resize" or "drag_move" reasons to update the window
bounds druing the drag operation.
</description>
<arg name="direction" type="uint"/>
</event>
<event name="drag_finished" since="10">
<description summary="Notifies that a drag operation has finished.">
Called when the drag operation is finished. "x" and "y"
specifies the position of the pointer device used to drag.
"canceled" is true if the drag operation is aborted during
drag (e.g. by capture change or user action.)
</description>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="canceled" type="int" summary="true if the operation was canceled"/>
</event>
<request name="set_can_maximize" since="10">
<description summary="set can_maximize">
Request that surface can be in maximzied state.
</description>
</request>
<request name="unset_can_maximize" since="10">
<description summary="unset can_maximize">
Request that surface can not be in maximzied state.
</description>
</request>
<request name="set_min_size" since="10">
<description summary="set the minimum size">
Set a minimum size of the surface.
Values set in this way are double-buffered. They will get
applied on the next commit.
</description>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<request name="set_max_size" since="10">
<description summary="set the maximum size">
Set a maximum size of the surface.
Values set in this way are double-buffered. They will get
applied on the next commit.
Setting the same size as minimum size makes the surface
unresizable.
</description>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<!-- Version 11 additions -->
<request name="set_snapped_to_left" since="11">
<description summary="set the surface to left snapped">
Request that surface is snapped to left.
</description>
</request>
<request name="set_snapped_to_right" since="11">
<description summary="set the surface to right snapped">
Request that surface is snapped to right.
</description>
</request>
<!-- Version 12 additions -->
<request name="start_resize" since="12">
<description summary="start an interactive resize">
Request to start an interactive, user-driven resize of the surface.
"x" and "y" specifies the starting point of the pointer device
that initiated the reize.
The compositor responds to this request with a "drag_started"
event, followed by "bounds_changed" events, and ends the
resize operation with a "drag_finhsed" event. The compositor
determines the new bounds using the resize_direction and the
pointer event location.
The compositor may ignore resize requests depending on the state of the
surface, e.g. fullscreen or maximized, or no drag event is in pregress.
</description>
<arg name="resize_direction" type="uint" summary="the direction of resize"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
</request>
<!-- Version 13 additions -->
<enum name="frame_type">
<description summary="frame types">
Frame type that can be used to decorate a surface.
</description>
<entry name="none" value="0" summary="no frame"/>
<entry name="normal" value="1" summary="caption with shadow" />
<entry name="shadow" value="2" summary="shadow only"/>
<entry name="autohide" value="3" summary="autohide frame with shadow"/>
<entry name="overlay" value="4" summary="overlay frame with shadow" />
</enum>
<request name="set_frame" since="13">
<description summary="request a frame for surface">
Enables compositor side frame decoration. |type|
specifies the type of frame to use for the surface.
</description>
<arg name="type" type="uint" summary="the frame type"/>
</request>
<enum name="frame_button_type">
<description summary="frame button types">
The mask that represents buttons on frame.
</description>
<entry name="back" value="1" summary="a button to naviate backwards"/>
<entry name="minimize" value="2" summary="a button to minimize the window"/>
<entry name="maximize_restore" value="4"
summary="a button to maximize or restore"/>
<entry name="menu" value="8"
summary="a button to activate application's menu"/>
<entry name="close" value="16" summary="a button to close the window"/>
<entry name="zoom" value="32"
summary="a mask to turn the maximize_restore button to zoom button"/>
<entry name="center" value="64"
summary="a customizable, center-aligned button"/>
</enum>
<request name="set_frame_buttons" since="13">
<description summary="updates buttons' state on frame">
Updates the frame's button state. |visible_buttons| and |enabled_buttons|
are the union of button mask defined in |frame_button_type| enum.
The mask present in |enabled_buttons| but not in |visible_buttons| will
be ignored.
</description>
<arg name="visible_buttons" type="uint"/>
<arg name="enabled_buttons" type="uint"/>
</request>
<request name="set_extra_title" since="13">
<description summary="set extra title string">
The extra informational string about the surface. This can be
used to show the debug information in the title bar, or log
messages.
This is different from "set_title" which is used to identify
the surface.
The string must be encoded in UTF-8.
</description>
<arg name="extra_title" type="string"/>
</request>
<!-- Version 14 additions -->
<enum name="orientation_lock">
<description summary="orientation lock request for remote surfaces">
Defines orientation request when a remote surface is in foreground.
</description>
<entry name="none" value="1" summary="no orientation lock"/>
<entry name="portrait" value="2" summary="primary or secondary portrait"/>
<entry name="landscape" value="3" summary="primary or secondary landscape"/>
<entry name="current" value="4" summary="keep current orientation"/>
<entry name="portrait_primary" value="5" summary="primary portrait"/>
<entry name="landscape_primary" value="6" summary="primary landscape"/>
<entry name="portrait_secondary" value="7" summary="secondary portrait"/>
<entry name="landscape_secondary" value="8" summary="secondary landscape"/>
</enum>
<request name="set_orientation_lock" since="14">
<description summary="set orientation lock for a remote surface">
Request a specific orientation behavior when this surface is in foreground.
</description>
<arg name="orientation_lock" type="uint" summary="the orientation lock"/>
</request>
<!-- Version 15 additions -->
<request name="pip" since="15">
<description summary="set pip for a remote surface">
Request that surface is set to Picture-in-Picture (PIP).
</description>
</request>
<!-- Version 18 additions -->
<request name="set_bounds" since="18">
<description summary="set window bounds">
[Deprecated] Set the "visible bounds" of a window from the user's perspective.
Client-side decorations often have invisible portions like drop shadows
which should be ignored for the purposes of aligning, placing and
constraining windows.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_bounds is called again, even if a new sub-
surface or buffer is attached.
If never set, the value is the surface content bounds. This updates
dynamically on every commit.
The bounds are relative to the given display. If the display is invalid,
they are assumed to be relative to the primary display.
The width and height must be greater than zero.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<!-- Version 19 additions -->
<request name="set_aspect_ratio" since="19">
<description summary="set the maximum size">
Set an aspect ratio of the surface.
Values set in this way are double-buffered. They will get
applied on the next commit.
Setting the aspect ratio of the surface. The ratio of the values is used
for the ratio of width to height of the surface. The size of surface is
restricted to the ratio. If any value is zero, the restriction on aspect
ratio is unset.
</description>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<!-- Version 20 additions -->
<request name="block_ime" since="20">
<description summary="block server side IME">
Block server side IME and always send key events through Wayland.
For some client, it's possible that server side IME is connected to the
client through other mechanism e.g. ime.mojom. When set_ime_blocked
is requested, server side IME should give up handling key events and
forward those events through Wayland protocol.
</description>
</request>
<request name="unblock_ime" since="20">
<description summary="unblock host side IME">
Unblock server side IME. Some events can be handled by server side IME,
while others can still be sent through Wayland protocol. See the
description of set_ime_blocked for detail.
</description>
</request>
<!-- Version 23 additions -->
<enum name="zoom_change">
<description summary="zoom level change">
Zoom level change.
</description>
<entry name="in" value="0" summary="zoom in"/>
<entry name="out" value="1" summary="zoom out"/>
<entry name="reset" value="2" summary="reset zoom level"/>
</enum>
<event name="change_zoom_level" since="23">
<description summary="change zoom level">
Request application zoom level change.
</description>
<arg name="change" type="int" summary="zoom_change"/>
</event>
<!-- Version 25 additions -->
<request name="set_accessibility_id" since="25">
<description summary="set accessibility ID to the surface">
Set accessibility window ID to the surface
</description>
<arg name="id" type="int" summary="Accessibility ID. Negative number causes to unset existing accessibility ID from the surface."/>
</request>
<!-- Version 26 additions -->
<request name="set_pip_original_window" since="26">
<description summary="set the pip original window">
Set this surface the original window for the current PIP window.
</description>
</request>
<request name="unset_pip_original_window" since="26">
<description summary="unset the pip original window">
Unset this surface the original window for the current PIP window.
</description>
</request>
<!-- Version 27 additions -->
<request name="set_system_gesture_exclusion" since="27">
<description summary="set system gesture exclusion">
Set system gesture exclusion region in which system gestures e.g. back
gesture should not be triggered.
</description>
<arg name="region" type="object" interface="wl_region" allow-null="true"/>
</request>
<!-- Version 31 additions -->
<request name="set_resize_lock" since="31">
<description summary="set resize lock state">
Enable the resize lock and put restrictions related to resizing on
the shell surface.
The resize lock state is double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
</description>
</request>
<request name="unset_resize_lock" since="31">
<description summary="unset resize lock state">
Disable the resize lock and allow the shell surface to be resized
freely.
The resize lock state is double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
</description>
</request>
<!-- Version 33 additions -->
<event name="bounds_changed_in_output" since="33">
<description summary="The compositor requested to change the bounds">
The compositor requested to change its
bounds. "bounds_change_reason" specifies the cause of the
bounds change. The client may apply the different move/resize
strategy depending on the reason.
The "output" specifies the wayland output in which the suface should live.
The client responds with set_window_geometry request, with the
bounds it is resized to (this may be different from the bounds
requested).
The client may ignore move request depending on the state,
e.g, if it becomes resizable or other constrants.
</description>
<arg name="output" type="object" interface="wl_output" summary="the output"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
<arg name="bounds_change_reason" type="uint"/>
</event>
<request name="set_bounds_in_output" since="33">
<description summary="set window bounds">
Set the "visible bounds" of a window from the user's perspective.
Client-side decorations often have invisible portions like drop shadows
which should be ignored for the purposes of aligning, placing and
constraining windows.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_bounds is called again, even if a new sub-
surface or buffer is attached.
If never set, the value is the surface content bounds. This updates
dynamically on every commit.
The bounds are relative to the given display. If the display is invalid,
they are assumed to be relative to the primary display.
The width and height must be greater than zero.
</description>
<arg name="output" type="object" interface="wl_output" summary="the output"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
</interface>
<interface name="zcr_notification_surface_v1" version="16">
<description summary="A notification window">
An interface that may be implemented by a wl_surface to host
notification contents.
</description>
<request name="destroy" type="destructor">
<description summary="Destroy the notification_surface">
Unmap and destroy the notification surface.
</description>
</request>
<!-- Version 16 additions -->
<request name="set_app_id" since="16">
<description summary="set application ID">
Set an application identifier for the notification surface.
</description>
<arg name="app_id" type="string"/>
</request>
</interface>
<interface name="zcr_input_method_surface_v1" version="33">
<description summary="An input method window">
An interface that may be implemented by a wl_surface to host IME contents.
</description>
<request name="destroy" type="destructor">
<description summary="Destroy the ime_surface">
Unmap and destroy the input mtehod surface.
</description>
</request>
<!-- Version 18 additions -->
<request name="set_bounds" since="18">
<description summary="set window bounds">
[Deprecated] Set the "visible bounds" of a window from the user's perspective.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_bounds is called again, even if a new sub-
surface or buffer is attached.
If never set, the value is the surface content bounds. This updates
dynamically on every commit.
The bounds are relative to the given display. If the display is invalid,
they are assumed to be relative to the primary display.
The width and height must be greater than zero.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<!-- Version 33 additions -->
<request name="set_bounds_in_output" since="33">
<description summary="set window bounds">
Set the "visible bounds" of a window from the user's perspective.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_bounds is called again, even if a new sub-
surface or buffer is attached.
If never set, the value is the surface content bounds. This updates
dynamically on every commit.
The bounds are relative to the given display. If the display is invalid,
they are assumed to be relative to the primary display.
The width and height must be greater than zero.
</description>
<arg name="output" type="object" interface="wl_output" summary="the output"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
</interface>
<interface name="zcr_toast_surface_v1" version="33">
<description summary="A toast window">
An interface that may be implemented by a wl_surface to host
toast contents.
</description>
<request name="destroy" type="destructor">
<description summary="Destroy the toast_surface">
Unmap and destroy the toast surface.
</description>
</request>
<request name="set_position">
<description summary="set toast bounds position">
[Deprecated] Set the position of bounds of a window from the user's perspective.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_position is called again, even if a new sub-
surface or buffer is attached.
If never set, the compositor will determine the toast position.
The bounds are relative to the given display. If the display is invalid,
they are assumed to be relative to the primary display.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
</request>
<request name="set_size">
<description summary="set toast bounds size">
[Deprecated] Set the size of bounds of a window from the user's perspective.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_size is called again, even if a new sub-
surface or buffer is attached.
If never set, the value is the surface content bounds. This updates
dynamically on every commit.
The width and height must be greater than zero.
</description>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
<!-- Version 33 additions -->
<request name="set_bounds_in_output" since="33">
<description summary="set toast bounds position">
Set the bounds of a toast window from the user's perspective.
The bounds are double buffered, and will be applied at the
time wl_surface.commit of the corresponding wl_surface is called.
Once the bounds are set, it is not possible to unset them, and they will
remain the same until set_bounds is called again, even if a new sub-
surface or buffer is attached.
If never set, the compositor will determine the toast position.
The bounds are relative to the given display. If the display is invalid,
they are assumed to be relative to the primary display.
</description>
<arg name="output" type="object" interface="wl_output" summary="the output"/>
<arg name="x" type="int"/>
<arg name="y" type="int"/>
<arg name="width" type="int"/>
<arg name="height" type="int"/>
</request>
</interface>
<interface name="zcr_remote_output_v1" version="32">
<description summary="remote shell interface to a wl_output">
An additional interface to a wl_output object, which allows the
client to access additional functionality for output.
</description>
<request name="destroy" type="destructor" since="29">
<description summary="destroy remote_output">
Destroy this remote_output object.
</description>
</request>
<event name="display_id" since="29">
<description summary="the identifier for the display">
[Deprecated] Sends the display identifier used by the server for the display.
</description>
<arg name="display_id_hi" type="uint"/>
<arg name="display_id_lo" type="uint"/>
</event>
<event name="port" since="29">
<description summary="the port of the display">
Sends the port to which the display is connected for the server.
</description>
<arg name="port" type="uint"/>
</event>
<event name="identification_data" since="29">
<description summary="the identification data for the display">
Sends the identification data for the display, typically in the EDID format.
</description>
<arg name="identification_data" type="array"/>
</event>
<event name="insets" since="29">
<description summary="insets for the display in pixels">
Sends inset information about a particular display in the display's native coordinates.
</description>
<arg name="inset_left" type="int"/>
<arg name="inset_top" type="int"/>
<arg name="inset_right" type="int"/>
<arg name="inset_bottom" type="int"/>
</event>
<event name="stable_insets" since="29">
<description summary="stable insets for a display in pixels">
Sends stable inset information about a particular display in the display's native
coordinates.
</description>
<arg name="stable_inset_left" type="int"/>
<arg name="stable_inset_top" type="int"/>
<arg name="stable_inset_right" type="int"/>
<arg name="stable_inset_bottom" type="int"/>
</event>
<event name="systemui_visibility" since="29">
<description summary="systemui_visibility_state for a display">
[Deprecated] Sends information about whether the systemui is visible.
The "systemui_visibility" value is of enum type "systemui_visibility_state".
</description>
<arg name="systemui_visibility" type="int" summary="systemui_visibility_state enum"/>
</event>
<!-- Version 32 additions -->
<enum name="systemui_behavior">
<description summary="systemui behavior">
Determine the behavior of the system UI.
</description>
<entry name="visible" value="1" summary="system ui is visible"/>
<entry name="hidden" value="2" summary="system ui is autohide or hidden"/>
</enum>
<event name="systemui_behavior" since="32">
<description summary="systemui_behavior_state for a display">
Sends information about whether the systemui behavior is auto hide.
The "systemui_behavior" value is of enum type "systemui_behavior".
</description>
<arg name="systemui_behavior" type="int" summary="systemui_behavior enum"/>
</event>
</interface>
</protocol>
|