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 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
|
<!--
Note: While Docbook allows to use block formatted elements like <cmdsynopsis>
within a term definition, HTML only allows inline formatted elements.
Therefore <command> and <option> elements are used. Maybe <refentry> should
be used, but I currently dislike having a separate page for each command.
-->
<chapter id="language">
<title>The LCDproc client language</title>
<sect1 id="language-intro">
<title>Introduction</title>
<para>
The LCDproc clients, for example lcdproc, connect over the network to
LCDd. In their communication they use a protocol, often referred to as
the "widget language". In this chapter the widget language will be
discussed.
</para>
</sect1>
<sect1 id="language-open-session">
<title>Opening a session</title>
<para>
The essence of talking to LCDd is quite simple. First you will need
to connect to the LCDproc port (usually 13666) on the correct IP
address (by default localhost). Once you have established the
connection you should say "hello", to let LCDd know you are a good guy.
It will respond by telling some LCDproc data, like version and screen
width and height. Now your session is open and you can start sending
'real' commands.
</para>
<para>
LCDd can send a number of strings itself. As a response to your commands,
it will usually send a "success" string, or a string starting with "huh"
in case of any error. See further below for other strings sent by LCDd.
</para>
<para>
You can test all these commands by opening a TCP/IP connection manually,
like with:
<screen>telnet localhost 13666</screen>
This way, you can check how the various commands work. It's in this case
best to have no other clients. If you do have other clients, you will
receive "listen" and "ignore" messages that will disturb your typing.
</para>
</sect1>
<sect1 id="language-commands">
<title>Command reference</title>
<para>
In this section all commands and their parameters are listed,
along with the responses you can expect. If you need a space or
a special char in a string, you should quote the string with
double quotes. If you need to use a double quote, escape it with
a backslash. Escaping also works for "\n\r\t", however not all
widget types or display drivers will handle these characters well.
The listing is divided into subsections for
<orderedlist>
<listitem>
<para><link linkend="language-basic">Basic stuff</link></para>
</listitem>
<listitem>
<para><link linkend="language-screens">Screens and widgets</link></para>
</listitem>
<listitem>
<para><link linkend="language-menus">Menu stuff</link></para>
</listitem>
<listitem>
<para><link linkend="language-misc">Miscellaneous</link></para>
</listitem>
</orderedlist>
</para>
<sect2 id="language-basic">
<title>Basic stuff</title>
<variablelist>
<varlistentry>
<term>
<command>hello</command>
</term>
<listitem>
<para>
Opens the session with the LCDd server program. This command is
required before other commands can be issued.
</para>
<para>
The response will be a string in the format:
</para>
<para>
<computeroutput>connect <replaceable>parameter</replaceable>...</computeroutput>
</para>
<para>
The client should read all parameters it needs and store their values.
The following parameters are in use:
<variablelist><!--<title>hello response parameters</title>-->
<varlistentry>
<term>
<computeroutput>LCDproc <replaceable>version</replaceable></computeroutput>
</term>
<listitem><para>
Indicates the version number of LCDd.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>protocol <replaceable>version</replaceable></computeroutput>
</term>
<listitem><para>
Indicates the widget language version number. This number is
only changed when the language of a newer version has become
incompatible with the previous version.
<note><para>
Each part of the version number shall be treated as an independent
numeric value. This means that 0.9 is followed by 0.10.
</para></note>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>lcd</computeroutput>
</term>
<listitem><para>
This word introduces the next key / value pairs that
describe the display's properties.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>wid <replaceable>int</replaceable></computeroutput>
</term>
<listitem><para>
Tells the client the width of the attached display device in characters.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>hgt <replaceable>int</replaceable></computeroutput>
</term>
<listitem><para>
Tells the client the height of the attached display device in characters.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>cellwid <replaceable>int</replaceable></computeroutput>
</term>
<listitem><para>
How many pixels is a character wide (space between character
cells not included)
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>cellhgt <replaceable>int</replaceable></computeroutput>
</term>
<listitem><para>
How many pixels is a character high (space between character
cells not included)
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>client_set <option>-name <replaceable>name</replaceable></option></command>
</term>
<listitem>
<para>
Sets attributes for the current client.
The current client is the one from the connection that you send
this command on, in other words: yourself.
</para>
<para>
<replaceable>name</replaceable> is the client's name as visible to a user.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="language-screens">
<title>Screens and widgets</title>
<variablelist>
<varlistentry>
<term>
<command>screen_add <option><replaceable>new_screen_id</replaceable></option></command>
</term>
<listitem>
<para>
Adds a screen to be displayed. The screen will be identified
by the string <replaceable>new_screen_id</replaceable>, which
is used later when manipulating on the screen.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>screen_del <option><replaceable>screen_id</replaceable></option></command>
</term>
<listitem>
<para>
Removes the screen identified by <replaceable>screen_id</replaceable>
from the client's screens.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>screen_set
<option><replaceable>screen_id</replaceable></option>
<option><replaceable>attributes</replaceable>...</option>
</command>
</term>
<listitem>
<para>
Sets attributes for the given screen. The following attributes
exist:
<variablelist>
<varlistentry>
<term>
<option>-name <replaceable>name</replaceable></option>
</term>
<listitem><para>
Sets the screen's name as visible to a user.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-wid <replaceable>int</replaceable></option>
<option>-hgt <replaceable>int</replaceable></option>
</term>
<listitem><para>
Sets the size of the screen in characters. If unset, the full display size is assumed.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-priority <replaceable>pri_class</replaceable></option>
</term>
<listitem><para>
Sets the screen's priority.
The following priority classes exist:
<variablelist><!--<title>screen priority classes</title>-->
<varlistentry>
<term><literal>hidden</literal></term>
<listitem><para>
The screen will never be visible
</para></listitem>
</varlistentry>
<varlistentry>
<term><literal>background</literal></term>
<listitem><para>
The screen is only visible when no normal info screens exists
</para></listitem>
</varlistentry>
<varlistentry>
<term><literal>info</literal></term>
<listitem><para>
normal info screen, default priority
</para></listitem>
</varlistentry>
<varlistentry>
<term><literal>foreground</literal></term>
<listitem><para>
an active client
</para></listitem>
</varlistentry>
<varlistentry>
<term><literal>alert</literal></term>
<listitem><para>
The screen has an important message for the user.
</para></listitem>
</varlistentry>
<varlistentry>
<term><literal>input</literal></term>
<listitem><para>
The client is doing interactive input.
</para></listitem>
</varlistentry>
<varlistentry>
<term><replaceable>int</replaceable></term>
<listitem><para>
a positive integer that maps to priority classes above
according to the mapping given in the table below.
</para>
<informaltable frame="all"><tgroup cols="2" colsep="1" rowsep="1">
<thead>
<row>
<entry>range</entry>
<entry>priority</entry>
</row>
</thead>
<tbody>
<row>
<entry>1 - 64</entry>
<entry>foreground</entry>
</row>
<row>
<entry>65 - 192</entry>
<entry>info</entry>
</row>
<row>
<entry>193 - ∞</entry>
<entry>background</entry>
</row>
</tbody>
</tgroup></informaltable>
</listitem>
</varlistentry>
</variablelist>
</para>
<para>
LCDd will only show screens with the highest priority at that moment.
So when there are three <literal>info</literal> screens and one
<literal>foreground</literal> screen,
only the <literal>foreground</literal> screen will be visible.
Only <literal>background</literal>, <literal>info</literal> and
<literal>foreground</literal> screens will rotate;
higher classes do not rotate because their purpose is not suitable for rotation.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-heartbeat { on | off | open }</option>
</term>
<listitem><para>
Changes the heartbeat setting for this screen.
If set to <literal>open</literal>, the default,
the client's heartbeat setting will be used.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-backlight { on | off | toggle | open | blink | flash }</option>
</term>
<listitem><para>
Changes the screen's backlight setting.
If set to the default value <literal>open</literal>,
the state will be determined by the client's setting.
<literal>blink</literal> is a moderately striking backlight variation,
<literal>flash</literal> is <emphasis>very</emphasis> striking.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-duration <replaceable>value</replaceable></option>
</term>
<listitem><para>
A screen will be visible for this amount of time every rotation.
The <replaceable>value</replaceable> is in eights of a second.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-timeout <replaceable>value</replaceable></option>
</term>
<listitem><para>
After the screen has been visible for a total of this amount of time,
it will be deleted. The <replaceable>value</replaceable> is in eights of a second.
Currently the client will not be informed of the deletion (TODO?).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-cursor { on | off | under | block}</option>
</term>
<listitem><para>
Determines the visibility of a cursor.
If <literal>on</literal>, a cursor will be visible.
Depending on your hardware, this will be a hardware or software cursor.
The specified cursor shape (<literal>block</literal> or <literal>under</literal>)
might not be available in which case an other cursor shape will be used instead.
Default is <literal>off</literal>.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-cursor_x <replaceable>int</replaceable></option>
<option>-cursor_y <replaceable>int</replaceable></option>
</term>
<listitem><para>
Set the cursor's x and y coordinates respectively.
If not given, the cursor will be set to
the leftmost (<option>-cursor_x</option>) resp.
topmost (<option>-cursor_y</option>) position.
Coordinates are always 1-based.
So the default top-left corner is denoted by (1,1).
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>widget_add
<option><replaceable>screen_id</replaceable></option>
<option><replaceable>new_widget_id</replaceable></option>
<option><replaceable>widgettype</replaceable></option>
<optional><option>-in <replaceable>frame_id</replaceable></option></optional>
</command>
</term>
<listitem>
<para>
Adds a widget to the given screen.
The <replaceable>new_widget_id</replaceable> sets the identifier for this widget.
The optional <option>-in <replaceable>frame_id</replaceable></option>
places the widget into the given frame.
The following widget types exist:
<variablelist><!--<title>widget types</title>-->
<varlistentry>
<term>
<literal>string</literal>
</term>
<listitem><para>
A simple text.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>title</literal>
</term>
<listitem><para>
A title bar on top of the screen.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>hbar</literal>
</term>
<listitem><para>
A horizontal bar.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>vbar</literal>
</term>
<listitem><para>
A vertical bar.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>icon</literal>
</term>
<listitem><para>
A predefined icon. For a list of valid names consult
<filename>server/widget.c.</filename>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>scroller</literal>
</term>
<listitem><para>
A variation of the string type that scrolls the text
horizontally or vertically.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>frame</literal>
</term>
<listitem><para>
A frame with that can contain widgets itself. In fact a
frame displays an other screen in it.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>num</literal>
</term>
<listitem><para>
A big number. They have a size of 3x4 characters.
The special number 10 is a colon, that you can use for a clock.
This character is 1x4.
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>widget_del
<option><replaceable>screen_id</replaceable></option>
<option><replaceable>widget_id</replaceable></option>
</command>
</term>
<listitem>
<para>
Deletes the given widget from the screen.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>widget_set
<option><replaceable>screen_id</replaceable></option>
<option><replaceable>widget_id</replaceable></option>
<option><replaceable>widgettype_specific_parameters</replaceable></option>
</command>
</term>
<listitem>
<para>
Sets parameters for a widget. Because not all widgets are created equal,
the various widget types require different parameters.
<variablelist>
<varlistentry>
<term>
<literal>string</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>x</replaceable></arg>
<arg choice="plain"><replaceable>y</replaceable></arg>
<arg choice="plain"><replaceable>text</replaceable></arg>
</cmdsynopsis>
<para>
Displays <replaceable>text</replaceable> at position
(<replaceable>x</replaceable>,<replaceable>y</replaceable>).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>title</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>text</replaceable></arg>
</cmdsynopsis>
<para>
Uses <replaceable>text</replaceable> as the title to display.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>hbar</literal>
</term>
<term>
<literal>vbar</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>x</replaceable></arg>
<arg choice="plain"><replaceable>y</replaceable></arg>
<arg choice="plain"><replaceable>length</replaceable></arg>
</cmdsynopsis>
<para>
Displays a horizontal (<literal>hbar</literal>) resp.
vertical (<literal>vbar</literal>) starting at
position (<replaceable>x</replaceable>,<replaceable>y</replaceable>)
that is <replaceable>length</replaceable> pixels wide resp. high.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>icon</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>x</replaceable></arg>
<arg choice="plain"><replaceable>y</replaceable></arg>
<arg choice="plain"><replaceable>iconname</replaceable></arg>
</cmdsynopsis>
<para>
Displays the icon <replaceable>iconname</replaceable> at
position (<replaceable>x</replaceable>,<replaceable>y</replaceable>).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>scroller</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>left</replaceable></arg>
<arg choice="plain"><replaceable>top</replaceable></arg>
<arg choice="plain"><replaceable>right</replaceable></arg>
<arg choice="plain"><replaceable>bottom</replaceable></arg>
<arg choice="plain"><replaceable>direction</replaceable></arg>
<arg choice="plain"><replaceable>speed</replaceable></arg>
<arg choice="plain"><replaceable>text</replaceable></arg>
</cmdsynopsis>
<para>
Displays a scroller spanning from position
(<replaceable>left</replaceable>,<replaceable>top</replaceable>)
to (<replaceable>right</replaceable>,<replaceable>bottom</replaceable>)
scrolling <replaceable>text</replaceable> in horizontal (<literal>h</literal>),
vertical (<literal>v</literal>) or marquee (<literal>m</literal>) direction
at a speed of <replaceable>speed</replaceable>, which is the number of
movements per rendering stroke (8 times/second).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>frame</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>left</replaceable></arg>
<arg choice="plain"><replaceable>top</replaceable></arg>
<arg choice="plain"><replaceable>right</replaceable></arg>
<arg choice="plain"><replaceable>bottom</replaceable></arg>
<arg choice="plain"><replaceable>width</replaceable></arg>
<arg choice="plain"><replaceable>height</replaceable></arg>
<arg choice="plain"><replaceable>direction</replaceable></arg>
<arg choice="plain"><replaceable>speed</replaceable></arg>
</cmdsynopsis>
<para>
Sets up a frame spanning from
(<replaceable>left</replaceable>,<replaceable>top</replaceable>)
to (<replaceable>right</replaceable>,<replaceable>bottom</replaceable>)
that is <replaceable>width</replaceable> columns wide and
<replaceable>height</replaceable> rows high.
It scrolls in either horizontal (<literal>h</literal>) or
vertical (<literal>v</literal>) direction at a speed
of <replaceable>speed</replaceable>, which is the number of
movements per rendering stroke (8 times/second).
</para>
<note><para>
In the current implementation frames can only scroll vertically
and only string and hbar widgets work inside frames.
</para></note>
</listitem>
</varlistentry>
<varlistentry>
<term>
<literal>num</literal>
</term>
<listitem>
<cmdsynopsis>
<arg choice="plain"><replaceable>x</replaceable></arg>
<arg choice="plain"><replaceable>int</replaceable></arg>
</cmdsynopsis>
<para>
Displays decimal digit <replaceable>int</replaceable> at
the horizontal position <replaceable>x</replaceable>,
which is a normal character x coordinate on the display.
The special value 10 for <replaceable>int</replaceable>
displays a colon.
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="language-menus">
<title>Menu stuff</title>
<para>
In this section all commands for creation, modification of
menus and for interaction with them are described. Although
keys may be used for other tasks they are listed here too.
</para>
<para>
TODO: example for normal (static) menu structure.
</para>
<para>
Menus may be even be used for wizards (the user is
automatically guided through a number of configuration
options) by virtue of the options -next and -prev. Here a
complete example:
<programlisting>
client_set name Parenttest
# to be entered on escape from test_menu (but overwritten
# for test_{checkbox,ring})
menu_add_item "" ask menu "Leave menus?" -is_hidden true
menu_add_item "ask" ask_yes action "Yes" -next _quit_
menu_add_item "ask" ask_no action "No" -next _close_
menu_add_item "" test menu "Test"
menu_add_item "test" test_action action "Action"
menu_add_item "test" test_checkbox checkbox "Checkbox"
menu_add_item "test" test_ring ring "Ring" -strings "one\ttwo\tthree"
menu_add_item "test" test_slider slider "Slider" -mintext "<replaceable>" -maxtext "</replaceable>" -value "50"
menu_add_item "test" test_numeric numeric "Numeric" -value "42"
menu_add_item "test" test_alpha alpha "Alpha" -value "abc"
menu_add_item "test" test_ip ip "IP" -v6 false -value "192.168.1.1"
menu_add_item "test" test_menu menu "Menu"
menu_add_item "test_menu" test_menu_action action "Submenu's action"
# no successor for menus. Since test_checkbox and test_ring have their
# own predecessors defined the "ask" rule will not work for them
menu_set_item "" test -prev "ask"
menu_set_item "test" test_action -next "test_checkbox"
menu_set_item "test" test_checkbox -next "test_ring" -prev "test_action"
menu_set_item "test" test_ring -next "test_slider" -prev "test_checkbox"
menu_set_item "test" test_slider -next "test_numeric" -prev "test_ring"
menu_set_item "test" test_numeric -next "test_alpha" -prev "test_slider"
menu_set_item "test" test_alpha -next "test_ip" -prev "test_numeric"
menu_set_item "test" test_ip -next "test_menu" -prev "test_alpha"
menu_set_item "test" test_menu_action -next "_close_"
# replace the main menu with the client's menu as created above
menu_set_main ""
</programlisting>
</para>
<variablelist>
<varlistentry>
<term>
<command>client_add_key
<optional>
<option>-exclusively</option> | <option>-shared</option>
</optional>
<option><replaceable>key</replaceable></option>...
</command>
</term>
<listitem>
<para>
Tells the server that the current client wants to make use of the
given key(s). If you reserve the key(s) in shared mode, other
clients can still reserve these keys too. If you reserve the key(s)
in exclusive mode no other client can reserve them again.
Key(s) reserved in shared mode will only be returned when a screen
of the current client is active. These keys can be used for
interaction with a visible screen (default).
Key(s) reserved in exclusive mode will be returned regardless of
which screen is active. They can be used to trigger a special
feature or to make a screen come to foreground.
Note that you cannot reserve a key in exclusive mode when an
other client has reserved it in shared mode.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>client_del_key
<option><replaceable>key</replaceable>...</option>
</command>
</term>
<listitem>
<para>
Ends the reservation of the given key(s).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>menu_add_item
<option><replaceable>menu_id</replaceable></option>
<option><replaceable>new_item_id</replaceable></option>
<option><replaceable>type</replaceable></option>
<optional><option><replaceable>text</replaceable></option></optional>
<optional><option><replaceable>item_specific_options</replaceable></option></optional>
</command>
</term>
<listitem>
<para>
Adds a new menu item to a menu. The main menu of a client,
will be created automatically as soon as the client adds
an item. This main menu has an empty id ("") and the name
is identical to the name of the client. The item specific options
are described under menu_set_item below. Use of <replaceable>text</replaceable>
is optional and is a shortcut for "-text <replaceable>text</replaceable>"
option.
</para>
<para>
<note>
<title>Note:</title>
<para>
Some menu commands (<command>menu_goto</command>) and options
(<option>-prev</option>, <option>-next</option>) assume that
<replaceable>menu_ids</replaceable> are <emphasis>unique</emphasis>
(at least within a clients menu hierarchy).
</para>
<para>
If you want to use a text label that starts with a '-' (minus)
character, you have to use the "-text <replaceable>text</replaceable>"
option.
</para>
</note>
<variablelist><title>menu item types</title>
<varlistentry>
<term>
<literal>action</literal>
</term>
<listitem><para>
This item should trigger an action. It consists of simple text.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>checkbox</literal>
</term>
<listitem><para>
Consists of a text and a status indicator. The
status can be on (Y), off (N) or gray (o).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>ring</literal>
</term>
<listitem><para>
Consists of a text and a status indicator. The
status can be one of the strings specified for the
item.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>slider</literal>
</term>
<listitem><para>
Is visible as a text. When selected, a screen comes
up that shows a slider. You can set the slider using
the cursor keys. When Enter is pressed, the menu
returns.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>numeric</literal>
</term>
<listitem><para>
Allows the user to input an integer value. Is
visible as a text. When selected, a screen comes up
that shows the current numeric value, that you can
edit with the cursor keys and Enter. The number is
ended by selecting a 'null' input digit. After that
the menu returns.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>alpha</literal>
</term>
<listitem><para>
Is visible as a text. When selected, a screen comes
up that shows the current string value, that you can
edit with the cursor keys and Enter. The string is
ended by selecting a 'null' input character. After
that the menu returns.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>ip</literal>
</term>
<listitem><para>
Allows the user to input an IP number (v4 or
v6). When selected, a screen comes up that shows an IP
number that can be edited - digit by digit - via
left/right (switch digit) and up/down keys
(increase/decrease).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>menu</literal>
</term>
<listitem><para>
This is a submenu. It is visible as a text, with an
appended <literal>></literal>. When selected, the submenu becomes the
active menu.
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>menu_del_item
<option><replaceable>menu_id</replaceable></option>
<option><replaceable>item_id</replaceable></option>
</command>
</term>
<listitem>
<para>
Removes a menu item <replaceable>item_id</replaceable> from menu
<replaceable>menu_id</replaceable>. The menu with the special id ""
(i.e. the empty string) is the client's main menu.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>menu_set_item
<option><replaceable>menu_id</replaceable></option>
<option><replaceable>item_id</replaceable></option>
<option><replaceable>item_specific_options</replaceable></option>
</command>
</term>
<listitem>
<para>
Sets parameters for the menu item(s). Each item type knows different parameters.
<variablelist><title>options for the various menu items</title>
<varlistentry>
<term>for all item types
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-text <replaceable>string</replaceable></option>
</term>
<listitem><para>
The visible text of the item.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-is_hidden { true | false}</option> (false)
</term>
<listitem><para>
If the item currently should not appear in a menu.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-next <replaceable>successor_id</replaceable></option>
</term>
<listitem>
<para>
Sets the menu item to show after hitting
the ENTER key when this item is
active. This works for
<emphasis>all</emphasis> menu item types
<emphasis>except menus</emphasis>
i.e. also for menu item types without an
own screen e.g., checkbox, ring and
action.
<variablelist>
<title>Special values</title>
<varlistentry>
<term>
<literal>_close_</literal>
</term>
<listitem><para>
Equivalent to <option>-menu_result close</option>: Close
the menu.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>_quit_</literal>
</term>
<listitem><para>
Equivalent to <option>-menu_result quit</option>: Quit
the menu system.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>_none_</literal>
</term>
<listitem><para>
Equivalent to <option>-menu_result none</option>: Keep
the item open.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-prev <replaceable>predecessor_id</replaceable></option>
</term>
<listitem>
<para>
Sets the menu item to show after hitting
the ESCAPE key when this Item is
active. This works for
<emphasis>all</emphasis> menu item types
i.e. also for menu item types without an
own screen e.g., checkbox, ring and
action.
</para>
<para>
<note>
<title>Note:</title>
<para>
If you define a predecessor for e.g., a
checkbox and its parent menu too, the
menu's predecessor is ignored in favor
of the checkboxes one.
</para>
</note>
</para>
<para>
This option accepts the same special
values as the <option>-next</option> option.
</para>
</listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>action</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-menu_result { none | close | quit}</option> (none)
</term>
<listitem><para>
Sets what to do with the menu when this action is selected:
none: the menu stays as it is;
close: the menu closes and returns to a higher level;
quit: quits the menu completely so you can foreground your app.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>checkbox</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-value { off | on | gray }</option>
</term>
<listitem><para>
Set the value of the item.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-allow_gray { false | true}</option> (false)
</term>
<listitem><para>
Sets if a grayed checkbox is allowed.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>ring</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-value <replaceable>int</replaceable></option> (0)
</term>
<listitem><para>
Sets the index in the stringlist that is currently selected.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-strings <replaceable>string</replaceable></option> (empty)
</term>
<listitem><para>
This single string should contain the strings that can be selected. They should be tab-separated (\t).
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>slider</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-value <replaceable>int</replaceable></option> (0)
</term>
<listitem><para>
Sets its current value.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-mintext <replaceable>string</replaceable></option> ("")
</term>
<term>
<option>-maxtext <replaceable>string</replaceable></option> ("")
</term>
<listitem><para>
The texts at the left and right side of the slider.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-minvalue <replaceable>int</replaceable></option> (0)
</term>
<term>
<option>-maxvalue <replaceable>int</replaceable></option> (100)
</term>
<listitem><para>
The minimum and maximum values of the slider.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-stepsize <replaceable>int</replaceable></option> (1)
</term>
<listitem><para>
The stepsize of the slider. If you use 0, you can control the movement completely from your client.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>numeric</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-value <replaceable>int</replaceable></option> (0)
</term>
<listitem><para>
Sets its current value.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-minvalue <replaceable>int</replaceable></option> (0)
</term>
<term>
<option>-maxvalue <replaceable>int</replaceable></option> (100)
</term>
<listitem><para>
The minimum and maximum values that are allowed. If one
of them is negative, the user will be able to enter
negative numbers too.
</para>
<para>
TODO: floats!
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>alpha</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-value <replaceable>string</replaceable></option> ("")
</term>
<listitem><para>
Sets its current value.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-password_char <replaceable>string</replaceable></option> ("")
</term>
<listitem><para>
If used, instead of the typed characters, this
character will be visible.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-minlength <replaceable>int</replaceable></option> (0)
</term>
<term>
<option>-maxlength <replaceable>int</replaceable></option> (10)
</term>
<listitem><para>
Sets the minimum and maximum allowed lengths.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-allow_caps { false | true }</option> (true)
</term>
<term>
<option>-allow_noncaps { false | true }</option> (false)
</term>
<term>
<option>-allow_numbers { false | true }</option> (false)
</term>
<listitem><para>
(Dis)allow these groups of characters.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-allowed_extra <replaceable>string</replaceable></option> ("")
</term>
<listitem><para>
The chars in this string are also allowed.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>ip</literal>
</term>
<listitem><para>
<variablelist>
<varlistentry>
<term>
<option>-value <replaceable>string</replaceable></option> ("192.168.1.245")
</term>
<listitem><para>
Set the value of the item,
e.g. "192.168.1.245" (v4) or
":::ffff:ffff:ffff:ffff:ffff" (v6).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<option>-v6 { false | true }</option> (false)
</term>
<listitem><para>
Changes IP version from default v4.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>menu</literal>
</term>
<listitem><para>
This is a submenu. It is visible as a text, with an
appended '<literal>></literal>'. When selected, the submenu becomes the
active menu.
<variablelist>
<varlistentry>
<term>
<option>-parent <replaceable>parentid</replaceable></option>
</term>
<listitem><para> (Re)sets the parent of this
menu. Parentid has to be of type menu. This
function does not change any menu (neither the
old nor the new parent) since this option is
normally used with hidden menus. Otherwise use
menu_add/del_item. Applying this option is
equivalent to second argument of the menu_goto
command. </para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>menu_goto
<option><replaceable>menu_id</replaceable></option>
<optional><option><replaceable>parent_id</replaceable></option></optional>
</command>
</term>
<listitem>
<para>
Changes current menu to <replaceable>menu_id</replaceable>. Depending on the
configure option <option>--enable-permissive-menu-goto</option> the
client may switch to any (if enabled) or his menus only
(if not enabled).
<variablelist>
<varlistentry>
<term><replaceable>menu_id</replaceable>
</term>
<listitem><para>
The menu item to go to (any menu type e.g. an
action or a menu).
</para></listitem>
</varlistentry>
<varlistentry>
<term><replaceable>parent_id</replaceable>
</term>
<listitem><para>
Resets the parent of <replaceable>menu_id</replaceable>. This
optional parameter can be used to reuse a menu
from different places (for wizards etc.). Use it
with caution: This may lead to a messy menu
structure in particular due to the fact that the
menus are not changed !
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>menu_set_main
<option><replaceable>menu_id</replaceable></option>
</command>
</term>
<listitem>
<para>
Sets the entry point into the menu system. Use this to
make the server menu invisible. Note that you may only set
the menu to your own clients menus unless the configure
option <option>--enable-permissive-menu-goto</option> is used.
(See <filename>menuscreens.c</filename> for the menu ids of the server menus.)
<variablelist>
<varlistentry>
<term><replaceable>menu_id</replaceable>
</term>
<listitem><para>
The new main menu, restricted to the client's own
menus. Special values:
<variablelist>
<varlistentry>
<term>
"" (i.e. the empty string)
</term>
<listitem><para>
The client's main menu.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>_main_</literal>
</term>
<listitem><para>
Resets main to the "real" main menu.
</para></listitem>
</varlistentry>
</variablelist>
</para></listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 id="language-misc">
<title>Miscellaneous</title>
<variablelist>
<varlistentry>
<term>
<command>backlight {
<option>on</option> |
<option>off</option> |
<option>toggle</option> |
<option>blink</option> |
<option>flash</option> }
</command>
</term>
<listitem>
<para>
Sets the client's backlight state.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>output {
<option>on</option> |
<option>off</option> |
<option><replaceable>int</replaceable></option> }
</command>
</term>
<listitem>
<para>
Sets the general purpose output on some display modules to
this value. Use <literal>on</literal> to set all outputs to high state,
and <literal>off</literal> to set all to low state.
The meaning of the integer value depends on your specific device,
usually it is a bit pattern describing the state of each output line.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>info</command>
</term>
<listitem>
<para>
This command provides information about the driver.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>noop</command>
</term>
<listitem>
<para>
This command does nothing and is always successful.
Can be useful to be sent at regular intervals to make sure your
connection is still alive.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>sleep
<option><replaceable>int</replaceable></option>
</command>
</term>
<listitem>
<para>
Sleep for the given number of seconds. <replaceable>int</replaceable>
must be a positive integer in the range from 1 to 60.
</para>
<para>
<note>
<title>Note:</title>
<para>
This command is currently ignored on the server side.
</para>
</note>
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1 id="language-messages">
<title>LCDd messages</title>
<para>
LCDd can send messages back to the client. These messages can be
directly related to the last command, or generated for some other
reason. Because messages can be generated at any moment, the client
should read from the connection at regular intervals. A very simple client
could simply ignore all received messages. Not reading the messages will
cause trouble !
</para>
<para>
<variablelist>
<varlistentry>
<term>
<computeroutput>success</computeroutput>
</term>
<listitem><para>
This is the response to a command in case everything went OK.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>huh? <errortext>error_description</errortext></computeroutput>
</term>
<listitem><para>
This is the response to a command in case something has gone wrong.
The description is not meant to be parsed, it's only meant for
the programmer of the client. It might be that your command has
only been partially executed, for example if you try to reserve 3
keys, and one fails. Your client might need to undo its actions
completely.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>listen <replaceable>screen_id</replaceable></computeroutput>
</term>
<term>
<computeroutput>ignore <replaceable>screen_id</replaceable></computeroutput>
</term>
<listitem><para>
The screen with the <replaceable>screen_id</replaceable> given is now
visible on the display (<literal>listen</literal>) or it is not visible
anymore on the display (<literal>ignore</literal>).
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>key <replaceable>key</replaceable></computeroutput>
</term>
<listitem><para>
This message will be sent if there was a keypress that should be
delivered to the current client.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<computeroutput>menuevent
<replaceable>event_type</replaceable>
<replaceable>id</replaceable>
<optional><replaceable>value</replaceable></optional>
</computeroutput>
</term>
<listitem><para>
The user did something with a client supplied menu. The type of
event can be:
<variablelist>
<varlistentry>
<term>
<literal>select</literal> (action)
</term>
<listitem><para>
The item was activated.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>update</literal> (checkbox, ring, numeric, alpha)
</term>
<listitem><para>
The item was modified by the user, so LCDd sends an updated
<replaceable>value</replaceable>.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>plus</literal> (slider)
</term>
<term>
<literal>minus</literal> (slider)
</term>
<listitem><para>
The slider was moved to left (<literal>minus</literal>)
or right (<literal>plus</literal>), so
LCDd sends an updated <replaceable>value</replaceable>.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>enter</literal>
</term>
<listitem><para>
This item has been entered, which means it is currently
active on the screen. The client could now for example
update the value of the item. If it is a menu, it may be
needed to update the values of the items in it too,
because they may be visible too.
</para></listitem>
</varlistentry>
<varlistentry>
<term>
<literal>leave</literal>
</term>
<listitem><para>
This item has been left, so it is currently not the (main)
active item anymore.
</para></listitem>
</varlistentry>
</variablelist>
Multiple messages may be generated by one action of the user.
</para></listitem>
</varlistentry>
</variablelist>
</para>
</sect1>
</chapter>
|