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
|
;;; -*- Mode: Lisp; Package: XLIB; Syntax: COMMON-LISP; Base: 10; Lowercase: Yes; -*-
;;; Describe X11 protocol requests
;;;
;;; TEXAS INSTRUMENTS INCORPORATED
;;; P.O. BOX 2909
;;; AUSTIN, TEXAS 78769
;;;
;;; Copyright (C) 1987 Texas Instruments Incorporated.
;;;
;;; Permission is granted to any individual or institution to use, copy, modify,
;;; and distribute this software, provided that this complete copyright and
;;; permission notice is maintained, intact, in all copies and supporting
;;; documentation.
;;;
;;; Texas Instruments Incorporated provides this software "as is" without
;;; express or implied warranty.
;;;
;;; Created 07/15/87 by LaMott G. OREN
(in-package :xlib)
(defparameter *request-parameters* (make-array (length *request-names*)))
(defmacro x-request (name &rest fields)
(unless (zerop (mod (length fields) 3))
(format t "~%Field length not a multiple of 3 for ~a" name))
(let ((request (position name *request-names* :test #'string-equal)))
(if request
`(setf (aref *request-parameters* ,request) ',fields)
`(format t "~%~s isn't an X11 request name" ',name))))
(defun print-history-description (buffer &optional (start 0))
;; Display an output history
(reading-event (buffer)
(let ((request (card8-get start))
(length (* 4 (card16-get (+ start 2))))
(margin 5))
(format t "~a (~d) length ~d"
(request-name request) request length)
(when (>= request (length *request-parameters*))
(setq request 0))
(do ((parms (aref *request-parameters* request) (cdddr parms))
(j start))
((or (endp parms) (>= j length)))
(let ((len (first parms))
(type (second parms))
(doc (third parms))
value)
(setq value (case len
(1 (card8-get j))
(2 (card16-get j))
(4 (card32-get j))))
(format t "~%~v@t" margin)
(if value
(progn
(print-value j value type doc)
(incf j len))
(progn
(format t "~2d ~10a ~a"
j type doc)
(case type
((listofvalue listofcard32 listofatom)
(format t " Words:~%~v@t" margin)
(dotimes (k (floor (- length (- j start)) 4))
(format t " ~d" (card32-get j))
(incf j 4)))
(listofrectangle
(format t " Half-Words:~%~v@t" margin)
(dotimes (k (floor (- length (- j start)) 2))
(format t " ~d" (card16-get j))
(incf j 2)))
(x (when (integerp len) (incf j len))) ; Unused
(string8
(format t " Bytes:~%~v@t" margin)
(dotimes (k (- length (- j start)))
(format t "~a" (code-char (card8-get j)))
(incf j)))
(otherwise
(format t " Bytes:~%~v@t" margin)
(dotimes (k (- length (- j start)))
(format t " ~d" (card8-get j))
(incf j)))))))))))
(defun print-value (i value type doc &aux temp)
(format t "~2d ~3d " i value)
(if (consp type)
(case (first type)
(bitmask (format t "~a" (nreverse (decode-mask (symbol-value (second type)) value)))
(setq type (car type)))
(member (if (null (setq temp (nth value (cdr type))))
(format t "*****ERROR*****")
(format t "~a" temp))
(setq type (car type))))
(case type
((window pixmap drawable cursor font gcontext colormap atom)
(format t "[#x~x]" value)
#+comment
(let ((temp (lookup-resource-id display value)))
(when (eq (first type) 'atom)
(setq temp (lookup-xatom display value)))
(when temp (format t " (~s)" (type-of temp)))))
(int16 (setq temp (card16->int16 value))
(when (minusp temp) (format t "~d" temp)))
(otherwise
(when (and (numberp type) (not (= type value)))
(format t "*****ERROR*****")))))
(format t "~30,10t ~10a ~a" type doc))
(x-request Error
1 1 opcode
1 CARD8 data
2 8+n request-length
n LISTofBYTE data
)
(x-request CreateWindow
1 1 opcode
1 CARD8 depth
2 8+n request-length
4 WINDOW wid
4 WINDOW parent
2 INT16 x
2 INT16 y
2 CARD16 width
2 CARD16 height
2 CARD16 border-width
2 (MEMBER CopyFromParent InputOutput InputOnly) class
4 (OR (MEMBER CopyFromParent) VISUALID) visual
4 (BITMASK *create-bitmask*) value-mask
4n LISTofVALUE value-list
)
(defparameter *create-bitmask*
'#(background-pixmap background-pixel border-pixmap border-pixel bit-gravity
win-gravity backing-store backing-planes backing-pixel override-redirect
save-under event-mask do-not-propagate-mask colormap cursor))
(x-request ChangeWindowAttributes
1 2 opcode
1 x unused
2 3+n request-length
4 WINDOW window
4 (BITMASK *create-bitmask*) value-mask
4n LISTofVALUE value-list
)
(x-request GetWindowAttributes
1 3 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request DestroyWindow
1 4 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request DestroySubwindows
1 5 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request ChangeSaveSet
1 6 opcode
1 (MEMBER insert delete) mode
2 2 request-length
4 WINDOW window
)
(x-request ReparentWindow
1 7 opcode
1 x unused
2 4 request-length
4 WINDOW window
4 WINDOW parent
2 INT16 x
2 INT16 y
)
(x-request MapWindow
1 8 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request MapSubwindows
1 9 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request UnmapWindow
1 10 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request UnmapSubwindows
1 11 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request ConfigureWindow
1 12 opcode
1 x unused
2 3+n request-length
4 WINDOW window
2 BITMASK value-mask
2 x unused
4n LISTofVALUE value-list
)
(x-request CirculateWindow
1 13 opcode
1 (MEMBER RaiseLowest LowerHighest) direction
2 2 request-length
4 WINDOW window
)
(x-request GetGeometry
1 14 opcode
1 x unused
2 2 request-length
4 DRAWABLE drawable
)
(x-request QueryTree
1 15 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request InternAtom
1 16 opcode
1 BOOL only-if-exists
2 |2+(n+p)/4| request-length
2 n length-of-name
2 x unused
n STRING8 name
p x unused
)
(x-request GetAtomName
1 17 opcode
1 x unused
2 2 request-length
4 ATOM atom
)
(x-request ChangeProperty
1 18 opcode
1 (MEMBER replace prepend append) mode
2 |6+(n+p)/4| request-length
4 WINDOW window
4 ATOM property
4 ATOM type
1 CARD8 format
3 x unused
4 CARD32 length-of-data-in-format-units
n LISTofBYTE data
p x unused
)
(x-request DeleteProperty
1 19 opcode
1 x unused
2 3 request-length
4 WINDOW window
4 ATOM property
)
(x-request GetProperty
1 20 opcode
1 BOOL delete
2 6 request-length
4 WINDOW window
4 ATOM property
4 (OR (MEMBER anypropertytype) ATOM) type
4 CARD32 long-offset
4 CARD32 long-length
)
(x-request ListProperties
1 21 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request SetSelectionOwner
1 22 opcode
1 x unused
2 4 request-length
4 (OR (MEMBER none) WINDOW) owner
4 ATOM selection
4 (OR (MEMBER currenttime) TIMESTAMP) time
)
(x-request GetSelectionOwner
1 23 opcode
1 x unused
2 2 request-length
4 ATOM selection
)
(x-request ConvertSelection
1 24 opcode
1 x unused
2 6 request-length
4 WINDOW requestor
4 ATOM selection
4 ATOM target
4 (OR (MEMBER none) ATOM) property
4 (OR (MEMBER currenttime) TIMESTAMP) time
)
(x-request SendEvent
1 25 opcode
1 BOOL propagate
2 11 request-length
4 (OR (MEMBER pointerwindow inputfocus) WINDOW) destination
4 SETofEVENT event-mask
32 n event
)
(x-request GrabPointer
1 26 opcode
1 BOOL owner-events
2 6 request-length
4 WINDOW grab-window
2 SETofPOINTEREVENT event-mask
1 (MEMBER Synchronous Asynchronous) pointer-mode
1 (MEMBER Synchronous Asynchronous) keyboard-mode
4 (OR (MEMBER none) WINDOW) confine-to
4 (OR (MEMBER none) CURSOR) cursor
4 (OR (MEMBER currenttime) TIMESTAMP) timestamp
)
(x-request UngrabPointer
1 27 opcode
1 x unused
2 2 request-length
4 (OR (MEMBER currenttime) TIMESTAMP) time
)
(x-request GrabButton
1 28 opcode
1 BOOL owner-events
2 6 request-length
4 WINDOW grab-window
2 SETofPOINTEREVENT event-mask
1 (MEMBER Synchronous Asynchronous) pointer-mode
1 (MEMBER Synchronous Asynchronous) keyboard-mode
4 (OR (MEMBER none) WINDOW) confine-to
4 (OR (MEMBER none) CURSOR) cursor
1 (OR (MEMBER anybutton) BUTTON)button
1 x unused
2 SETofKEYMASK modifiers
)
(x-request UngrabButton
1 29 opcode
1 (OR (MEMBER anybutton) BUTTON) button
2 3 request-length
4 WINDOW grab-window
2 SETofKEYMASK modifiers
2 x unused
)
(x-request ChangeActivePointerGrab
1 30 opcode
1 x unused
2 4 request-length
4 (OR (MEMBER none) CURSOR) cursor
4 (OR (MEMBER currenttime) TIMESTAMP) time
2 SETofPOINTEREVENT event-mask
2 x unused
)
(x-request GrabKeyboard
1 31 opcode
1 BOOL owner-events
2 4 request-length
4 WINDOW grab-window
4 (OR (MEMBER currenttime) TIMESTAMP) time
1 (MEMBER Synchronous Asynchronous) pointer-mode
1 (MEMBER Synchronous Asynchronous) keyboard-mode
2 x unused
)
(x-request UngrabKeyboard
1 32 opcode
1 x unused
2 2 request-length
4 (OR (MEMBER currenttime) TIMESTAMP) time
)
(x-request GrabKey
1 33 opcode
1 BOOL owner-events
2 4 request-length
4 WINDOW grab-window
2 SETofKEYMASK modifiers
1 (OR (MEMBER anykey) KEYCODE) key
1 (MEMBER Synchronous Asynchronous) pointer-mode
1 (MEMBER Synchronous Asynchronous) keyboard-mode
3 x unused
)
(x-request UngrabKey
1 34 opcode
1 (OR (MEMBER anykey) KEYCODE) key
2 3 request-length
4 WINDOW grab-window
2 SETofKEYMASK modifiers
2 x unused
)
(x-request AllowEvents
1 35 opcode
1 (MEMBER AsyncPointer SyncPointer ReplayPointer AsyncKeyboard SyncKeyboard ReplayKeyboard) mode
2 2 request-length
4 (OR (MEMBER currenttime) TIMESTAMP) time
)
(x-request GrabServer
1 36 opcode
1 x unused
2 1 request-length
)
(x-request UngrabServer
1 37 opcode
1 x unused
2 1 request-length
)
(x-request QueryPointer
1 38 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request GetMotionEvents
1 39 opcode
1 x unused
2 4 request-length
4 WINDOW window
4 (OR (MEMBER CURRENTTIME) TIMESTAMP) start
4 (OR (MEMBER CURRENTTIME) TIMESTAMP) stop
)
(x-request TranslateCoords
1 40 opcode
1 x unused
2 4 request-length
4 WINDOW src-window
4 WINDOW dst-window
2 INT16 src-x
2 INT16 src-y
)
(x-request WarpPointer
1 41 opcode
1 x unused
2 6 request-length
4 (OR (MEMBER none) WINDOW) src-window
4 WINDOW dst-window
2 INT16 src-x
2 INT16 src-y
2 CARD16 src-width
2 CARD16 src-height
2 INT16 dst-x
2 INT16 dst-y
)
(x-request SetInputFocus
1 42 opcode
1 (MEMBER none pointerroot parent) revert-to
2 3 request-length
4 (OR (MEMBER none pointerroot) WINDOW) focus
4 (OR (MEMBER CURRENTTIME) TIMESTAMP) time
)
(x-request GetInputFocus
1 43 opcode
1 x unused
2 1 request-length
)
(x-request QueryKeymap
1 44 opcode
1 x unused
2 1 request-length
)
(x-request OpenFont
1 45 opcode
1 x unused
2 |3+(n+p)/4| request-length
4 FONT fid
2 n length-of-name
2 x unused
n STRING8 name
p x unused
)
(x-request CloseFont
1 46 opcode
1 x unused
2 2 request-length
4 FONT font
)
(x-request QueryFont
1 47 opcode
1 x unused
2 2 request-length
4 FONTABLE font
)
(x-request QueryTextExtents
1 48 opcode
1 BOOL odd-length-p
2 |2+(2n+p)/4| request-length
4 FONTABLE font
2n STRING16 string
p x unused
)
(x-request ListFonts
1 49 opcode
1 x unused
2 |2+(n+p)/4| request-length
2 CARD16 max-names
2 n length-of-pattern
n STRING8 pattern
p x unused
)
(x-request ListFontsWithInfo
1 50 opcode
1 x unused
2 |2+(n+p)/4| request-length
2 CARD16 max-names
2 n length-of-pattern
n STRING8 pattern
p x unused
)
(x-request SetFontPath
1 51 opcode
1 x unused
2 |2+(n+p)/4| request-length
2 CARD16 number-of-STRs-in-path
2 x unused
n LISTofSTR path
p x unused
)
(x-request GetFontPath
1 52 opcode
1 x unused
2 1 request-list
)
(x-request CreatePixmap
1 53 opcode
1 CARD8 depth
2 4 request-length
4 PIXMAP pid
4 DRAWABLE drawable
2 CARD16 width
2 CARD16 height
)
(x-request FreePixmap
1 54 opcode
1 x unused
2 2 request-length
4 PIXMAP pixmap
)
(x-request CreateGC
1 55 opcode
1 x unused
2 4+n request-length
4 GCONTEXT cid
4 DRAWABLE drawable
4 (BITMASK *gc-bitmask*) value-mask
4n LISTofVALUE value-list
)
(defconstant *gc-bitmask*
'#(function plane-mask foreground
background line-width line-style cap-style join-style
fill-style fill-rule tile stipple tile-stipple-x-origin
tile-stipple-y-origin font subwindow-mode graphics-exposures clip-x-origin
clip-y-origin clip-mask dash-offset dashes arc-mode))
(x-request ChangeGC
1 56 opcode
1 x unused
2 3+n request-length
4 GCONTEXT gc
4 (BITMASK *gc-bitmask*) value-mask
4n LISTofVALUE value-list
)
(x-request CopyGC
1 57 opcode
1 x unused
2 4 request-length
4 GCONTEXT src-gc
4 GCONTEXT dst-gc
4 (BITMASK *gc-bitmask*) value-mask
)
(x-request SetDashes
1 58 opcode
1 x unused
2 |3+(n+p)/4| request-length
4 GCONTEXT gc
2 CARD16 dash-offset
2 n length-of-dashes
n LISTofCARD8 dashes
p x unused
)
(x-request SetClipRectangles
1 59 opcode
1 (MEMBER UnSorted YSorted YXSorted YXBanded) ordering
2 3+2n request-length
4 GCONTEXT gc
2 INT16 clip-x-origin
2 INT16 clip-y-origin
8n LISTofRECTANGLE rectangles
)
(x-request FreeGC
1 60 opcode
1 x unused
2 2 request-length
4 GCONTEXT gc
)
(x-request ClearToBackground
1 61 opcode
1 BOOL exposures
2 4 request-length
4 WINDOW window
2 INT16 x
2 INT16 y
2 CARD16 width
2 CARD16 height
)
(x-request CopyArea
1 62 opcode
1 x unused
2 7 request-length
4 DRAWABLE src-drawable
4 DRAWABLE dst-drawable
4 GCONTEXT gc
2 INT16 src-x
2 INT16 src-y
2 INT16 dst-x
2 INT16 dst-y
2 CARD16 width
2 CARD16 height
)
(x-request CopyPlane
1 63 opcode
1 x unused
2 8 request-length
4 DRAWABLE src-drawable
4 DRAWABLE dst-drawable
4 GCONTEXT gc
2 INT16 src-x
2 INT16 src-y
2 INT16 dst-x
2 INT16 dst-y
2 CARD16 width
2 CARD16 height
4 CARD32 bit-plane
)
(x-request PolyPoint
1 64 opcode
1 (MEMBER origin previous) coordinate-mode
2 3+n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
4n LISTofPOINT points
)
(x-request PolyLine
1 65 opcode
1 (MEMBER origin previous) coordinate-mode
2 3+n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
4n LISTofPOINT points
)
(x-request PolySegment
1 66 opcode
1 x unused
2 3+2n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
8n LISTofSEGMENT segments
)
(x-request PolyRectangle
1 67 opcode
1 x unused
2 3+2n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
8n LISTofRECTANGLE rectangles
)
(x-request PolyArc
1 68 opcode
1 x unused
2 3+3n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
12n LISTofARC arcs
)
(x-request FillPoly
1 69 opcode
1 x unused
2 4+n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
1 (MEMBER complex nonconvex convex) shape
1 (MEMBER origin previous) coordinate-mode
2 x unused
4n LISTofPOINT points
)
(x-request PolyFillRectangle
1 70 opcode
1 x unused
2 3+2n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
8n LISTofRECTANGLE rectangles
)
(x-request PolyFillArc
1 71 opcode
1 x unused
2 3+3n request-length
4 DRAWABLE drawable
4 GCONTEXT gc
12n LISTofARC arcs
)
(x-request PutImage
1 72 opcode
1 (bitmap xypixmap zpixmap) format
2 |6+(n+p)/4| request-length
4 DRAWABLE drawable
4 GCONTEXT gc
2 CARD16 width
2 CARD16 height
2 INT16 dst-x
2 INT16 dst-y
1 CARD8 left-pad
1 CARD8 depth
2 x unused
n LISTofBYTE data
p x unused
)
(x-request GetImage
1 73 opcode
1 (MEMBER error xypixmap zpixmap) format
2 5 request-length
4 DRAWABLE drawable
2 INT16 x
2 INT16 y
2 CARD16 width
2 CARD16 height
4 CARD32 plane-mask
)
(x-request PolyText8
1 74 opcode
1 x unused
2 |4+(n+p)/4| request-length
4 DRAWABLE drawable
4 GCONTEXT gc
2 INT16 x
2 INT16 y
n LISTofTEXTITEM8 items
p x unused
)
(x-request PolyText16
1 75 opcode
1 x unused
2 |4+(n+p)/4| request-length
4 DRAWABLE drawable
4 GCONTEXT gc
2 INT16 x
2 INT16 y
n LISTofTEXTITEM16 items
p x unused
)
(x-request ImageText8
1 76 opcode
1 n length-of-string
2 |4+(n+p)/4| request-length
4 DRAWABLE drawable
4 GCONTEXT gc
2 INT16 x
2 INT16 y
n STRING8 string
p x unused
)
(x-request ImageText16
1 77 opcode
1 n number-of-CHAR2Bs-in-string
2 |4+(2n+p)/4| request-length
4 DRAWABLE drawable
4 GCONTEXT gc
2 INT16 x
2 INT16 y
2n STRING16 string
p x unused
)
(x-request CreateColormap
1 78 opcode
1 (MEMBER none all) alloc
2 4 request-length
4 COLORMAP mid
4 WINDOW window
4 VISUALID visual
)
(x-request FreeColormap
1 79 opcode
1 x unused
2 2 request-length
4 COLORMAP cmap
)
(x-request CopyColormapAndFree
1 80 opcode
1 x unused
2 3 request-length
4 COLORMAP mid
4 COLORMAP src-cmap
)
(x-request InstallColormap
1 81 opcode
1 x unused
2 2 request-length
4 COLORMAP cmap
)
(x-request UninstallColormap
1 82 opcode
1 x unused
2 2 request-length
4 COLORMAP cmap
)
(x-request ListInstalledColormaps
1 83 opcode
1 x unused
2 2 request-length
4 WINDOW window
)
(x-request AllocColor
1 84 opcode
1 x unused
2 4 request-length
4 COLORMAP cmap
2 CARD16 red
2 CARD16 green
2 CARD16 blue
2 x unused
)
(x-request AllocNamedColor
1 85 opcode
1 x unused
2 |3+(n+p)/4| request-length
4 COLORMAP cmap
2 n length-of-name
2 x unused
n STRING8 name
p x unused
)
(x-request AllocColorCells
1 86 opcode
1 BOOL contiguous
2 3 request-length
4 COLORMAP cmap
2 CARD16 colors
2 CARD16 planes
)
(x-request AllocColorPlanes
1 87 opcode
1 BOOL contiguous
2 4 request-length
4 COLORMAP cmap
2 CARD16 colors
2 CARD16 reds
2 CARD16 greens
2 CARD16 blues
)
(x-request FreeColors
1 88 opcode
1 x unused
2 3+n request-length
4 COLORMAP cmap
4 CARD32 plane-mask
4n LISTofCARD32 pixels
)
(x-request StoreColors
1 89 opcode
1 x unused
2 2+3n request-length
4 COLORMAP cmap
12n LISTofCOLORITEM items
)
(x-request StoreNamedColor
1 90 opcode
1 color-mask do-red_do-green_do-blue
2 |4+(n+p)/4| request-length
4 COLORMAP cmap
4 CARD32 pixel
2 n length-of-name
2 x unused
n STRING8 name
p x unused
)
(x-request QueryColors
1 91 opcode
1 x unused
2 2+n request-length
4 COLORMAP cmap
4n LISTofCARD32 pixels
)
(x-request LookupColor
1 92 opcode
1 x unused
2 |3+(n+p)/4| request-length
4 COLORMAP cmap
2 n length-of-name
2 x unused
n STRING8 name
p x unused
)
(x-request CreateCursor
1 93 opcode
1 x unused
2 8 request-length
4 CURSOR cid
4 PIXMAP source
4 (OR (MEMBER none) PIXMAP) mask
2 CARD16 fore-red
2 CARD16 fore-green
2 CARD16 fore-blue
2 CARD16 back-red
2 CARD16 back-green
2 CARD16 back-blue
2 CARD16 x
2 CARD16 y
)
(x-request CreateGlyphCursor
1 94 CreateGlyphCursor
1 x unused
2 8 request-length
4 CURSOR cid
4 FONT source-font
4 (OR (MEMBER none) FONT) mask-font
2 CARD16 source-char
2 CARD16 mask-char
2 CARD16 fore-red
2 CARD16 fore-green
2 CARD16 fore-blue
2 CARD16 back-red
2 CARD16 back-green
2 CARD16 back-blue
)
(x-request FreeCursor
1 95 opcode
1 x unused
2 2 request-length
4 CURSOR cursor
)
(x-request RecolorCursor
1 96 opcode
1 x unused
2 5 request-length
4 CURSOR cursor
2 CARD16 fore-red
2 CARD16 fore-green
2 CARD16 fore-blue
2 CARD16 back-red
2 CARD16 back-green
2 CARD16 back-blue
)
(x-request QueryBestSize
1 97 opcode
1 (MEMBER cursor tile stipple) class
2 3 request-length
4 DRAWABLE drawable
2 CARD16 width
2 CARD16 height
)
(x-request QueryExtension
1 98 opcode
1 x unused
2 |2+(n+p)/4| request-length
2 n length-of-name
2 x unused
n STRING8 name
p x unused
)
(x-request ListExtensions
1 99 opcode
1 x unused
2 1 request-length
)
(x-request SetKeyboardMapping
1 100 opcode
1 n keycode-count
2 2+nm request-length
1 KEYCODE first-keycode
1 m keysyms-per-keycode
2 x unused
4nm LISTofKEYSYM keysyms
)
(x-request GetKeyboardMapping
1 101 opcode
1 x unused
2 2 request-length
1 KEYCODE first-keycode
1 CARD8 count
2 x unused
)
(x-request ChangeKeyboardControl
1 102 opcode
1 x unused
2 2+n request-length
4 BITMASK value-mask
4n LISTofVALUE value-list
)
(x-request GetKeyboardControl
1 103 opcode
1 x unused
2 1 request-length
)
(x-request Bell
1 104 opcode
1 INT8 percent
2 1 request-length
)
(x-request ChangePointerControl
1 105 opcode
1 x unused
2 3 request-length
2 INT16 acceleration-numerator
2 INT16 acceleration-denominator
2 INT16 threshold
1 BOOL do-acceleration
1 BOOL do-threshold
)
(x-request GetPointerControl
1 106 GetPointerControl
1 x unused
2 1 request-length
)
(x-request SetScreenSaver
1 107 opcode
1 x unused
2 3 request-length
2 INT16 timeout
2 INT16 interval
1 (MEMBER no yes default) prefer-blanking
1 (MEMBER no yes default) allow-exposures
2 x unused
)
(x-request GetScreenSaver
1 108 opcode
1 x unused
2 1 request-length
)
(x-request ChangeHosts
1 109 opcode
1 (MEMBER insert delete) mode
2 |2+(n+p)/4| request-length
1 (MEMBER internet decnet chaos) family
1 x unused
2 CARD16 length-of-address
n LISTofCARD8 address
p x unused
)
(x-request ListHosts
1 110 opcode
1 x unused
2 1 request-length
)
(x-request ChangeAccessControl
1 111 opcode
1 (MEMBER disable enable) mode
2 1 request-length
)
(x-request ChangeCloseDownMode
1 112 opcode
1 (MEMBER destroy retainpermanent retaintemporary) mode
2 1 request-length
)
(x-request KillClient
1 113 opcode
1 x unused
2 2 request-length
4 (MEMBER alltemporary CARD32) resource
)
(x-request RotateProperties
1 114 opcode
1 x unused
2 3+n request-length
4 WINDOW window
2 n number-of-properties
2 INT16 delta
4n LISTofATOM properties
)
(x-request ForceScreenSaver
1 115 ForceScreenSaver
1 (MEMBER reset activate) mode
2 1 request-length
)
(x-request SetPointerMapping
1 116 opcode
1 n length-of-map
2 |1+(n+p)/4| request-length
n LISTofCARD8 map
p x unused
)
(x-request GetPointerMapping
1 117 opcode
1 x unused
2 1 request-length
)
(x-request SetModifierMapping
1 118 opcode
1 KEYCODE Lock
2 5 request-length
1 KEYCODE Shift_A
1 KEYCODE Shift_B
1 KEYCODE Control_A
1 KEYCODE Control_B
1 KEYCODE Mod1_A
1 KEYCODE Mod1_B
1 KEYCODE Mod2_A
1 KEYCODE Mod2_B
1 KEYCODE Mod3_A
1 KEYCODE Mod3_B
1 KEYCODE Mod4_A
1 KEYCODE Mod4_B
1 KEYCODE Mod5_A
1 KEYCODE Mod5_B
2 x unused
)
(x-request GetModifierMapping
1 119 opcode
1 x unused
2 1 request-length
)
#+comment
(x-request NoOperation
1 127 opcode
1 x unused
2 1 request-length
)
;; End of file
|