1mX Window System Protocol0m 1mX Consortium Standard0m 1mX Version 11, Release 6.7 DRAFT0m Robert W. Scheifler X Consortium, Inc. X Window System is a trademark of The Open Group. Copyright © 1986, 1987, 1988, 1994, 2002 The Open Group Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documenta- tion files (the ``Software''), to deal in the Software with- out 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 fol- lowing conditions: The above copyright notice and this permission notice 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 PUR- POSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP 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. Except as contained in this notice, the name of the Open Group shall not be used in advertising or otherwise to pro- mote the sale, use or other dealings in this Software with- out prior written authorization from the Open Group. 1mAcknowledgments0m The primary contributers to the X11 protocol are: Dave Carver (Digital HPW) Branko Gerovac (Digital HPW) Jim Gettys (MIT/Project Athena, Digital) Phil Karlton (Digital WSL) Scott McGregor (Digital SSG) Ram Rao (Digital UEG) David Rosenthal (Sun) Dave Winchell (Digital UEG) The implementors of initial server who provided useful input are: Susan Angebranndt (Digital) Raymond Drewry (Digital) Todd Newman (Digital) The invited reviewers who provided useful input are: Andrew Cherenson (Berkeley) Burns Fisher (Digital) Dan Garfinkel (HP) Leo Hourvitz (Next) Brock Krizan (HP) David Laidlaw (Stellar) Dave Mellinger (Interleaf) Ron Newman (MIT) John Ousterhout (Berkeley) Andrew Palay (ITC CMU) Ralph Swick (MIT) Craig Taylor (Sun) Jeffery Vroom (Stellar) Thanks go to Al Mento of Digital's UEG Documentation Group for formatting this document. This document does not attempt to provide the rationale or pragmatics required to fully understand the protocol or to place it in perspective within a complete system. The protocol contains many management mechanisms that are not intended for normal applications. Not all mechanisms are needed to build a particular user interface. It is important to keep in mind that the protocol is intended to provide mechanism, not policy. Robert W. Scheifler X Consortium, Inc. 1m1. Protocol Formats0m 1mRequest Format0m Every request contains an 8-bit major opcode and a 16-bit length field expressed in units of four bytes. Every request consists of four bytes of a header (containing the major opcode, the length field, and a data byte) followed by zero or more additional bytes of data. The length field defines the total length of the request, including the header. The length field in a request must equal the mini- mum length required to contain the request. If the speci- fied length is smaller or larger than the required length, an error is generated. Unused bytes in a request are not required to be zero. Major opcodes 128 through 255 are reserved for extensions. Extensions are intended to contain multiple requests, so extension requests typically have an additional minor opcode encoded in the second data byte in the request header. However, the placement and interpreta- tion of this minor opcode and of all other fields in exten- sion requests are not defined by the core protocol. Every request on a given connection is implicitly assigned a sequence number, starting with one, that is used in replies, errors, and events. 1mReply Format0m Every reply contains a 32-bit length field expressed in units of four bytes. Every reply consists of 32 bytes fol- lowed by zero or more additional bytes of data, as specified in the length field. Unused bytes within a reply are not guaranteed to be zero. Every reply also contains the least significant 16 bits of the sequence number of the corre- sponding request. 1mError Format0m Error reports are 32 bytes long. Every error includes an 8-bit error code. Error codes 128 through 255 are reserved for extensions. Every error also includes the major and minor opcodes of the failed request and the least signifi- cant 16 bits of the sequence number of the request. For the following errors (see section 4), the failing resource ID is also returned: 4mColormap24m, 4mCursor24m, 4mDrawable24m, 4mFont24m, 4mGContext24m, 4mIDChoice24m, 4mPixmap24m, and 4mWindow24m. For 4mAtom24m errors, the failing atom is returned. For 4mValue24m errors, the failing value is returned. Other core errors return no additional data. Unused bytes within an error are not guaranteed to be zero. 1mEvent Format0m Events are 32 bytes long. Unused bytes within an event are not guaranteed to be zero. Every event contains an 8-bit type code. The most significant bit in this code is set if 1m10m 1mX Protocol X11, Release 6.7 DRAFT0m the event was generated from a 4mSendEvent24m request. Event codes 64 through 127 are reserved for extensions, although the core protocol does not define a mechanism for selecting interest in such events. Every core event (with the excep- tion of 4mKeymapNotify24m) also contains the least significant 16 bits of the sequence number of the last request issued by the client that was (or is currently being) processed by the server. 1m2. Syntactic Conventions0m The rest of this document uses the following syntactic con- ventions. · The syntax {...} encloses a set of alternatives. · The syntax [...] encloses a set of structure compo- nents. · In general, TYPEs are in uppercase and 4mAlternativeVal-0m 4mues24m are capitalized. · Requests in section 9 are described in the following format: 4mRequestName0m 4marg124m: type1 ... 4margN24m: typeN -> result1: type1 ... resultM: typeM Errors: kind1, ..., kindK Description. If no -> is present in the description, then the request has no reply (it is asynchronous), although errors may still be reported. If ->+ is used, then one or more replies can be generated for a single request. · Events in section 11 are described in the following format: 4mEventName0m 4mvalue124m: type1 ... 4mvalueN24m: typeN 1m20m 1mX Protocol X11, Release 6.7 DRAFT0m Description. 1m3. Common Types0m ------------------------------------------------------------------- 1mName Value0m ------------------------------------------------------------------- LISTofFOO A type name of the form LISTofFOO means a counted list of elements of type FOO. The size of the length field may vary (it is not necessarily the same size as a FOO), and in some cases, it may be implicit. It is fully specified in Appendix B. Except where explicitly noted, zero-length lists are legal. BITMASK The types BITMASK and LISTofVALUE are somewhat spe- LISTofVALUE cial. Various requests contain arguments of the form: 4mvalue-mask24m: BITMASK 4mvalue-list24m: LISTofVALUE These are used to allow the client to specify a subset of a heterogeneous collection of optional arguments. The value-mask specifies which argu- ments are to be provided; each such argument is assigned a unique bit position. The representation of the BITMASK will typically contain more bits than there are defined arguments. The unused bits in the value-mask must be zero (or the server gen- erates a 4mValue24m error). The value-list contains one value for each bit set to 1 in the mask, from least significant to most significant bit in the mask. Each value is represented with four bytes, but the actual value occupies only the least significant bytes as required. The values of the unused bytes do not matter. OR A type of the form ``T1 or ... or Tn'' means the union of the indicated types. A single-element type is given as the element without enclosing braces. WINDOW 32-bit value (top three bits guaranteed to be zero) PIXMAP 32-bit value (top three bits guaranteed to be zero) CURSOR 32-bit value (top three bits guaranteed to be zero) FONT 32-bit value (top three bits guaranteed to be zero) GCONTEXT 32-bit value (top three bits guaranteed to be zero) COLORMAP 32-bit value (top three bits guaranteed to be zero) DRAWABLE WINDOW or PIXMAP FONTABLE FONT or GCONTEXT ATOM 32-bit value (top three bits guaranteed to be zero) VISUALID 32-bit value (top three bits guaranteed to be zero) VALUE 32-bit quantity (used only in LISTofVALUE) BYTE 8-bit value INT8 8-bit signed integer 1m30m 1mX Protocol X11, Release 6.7 DRAFT0m ------------------------------------------------------------------- 1mName Value0m ------------------------------------------------------------------- INT16 16-bit signed integer INT32 32-bit signed integer CARD8 8-bit unsigned integer CARD16 16-bit unsigned integer CARD32 32-bit unsigned integer TIMESTAMP CARD32 BITGRAVITY {4mForget24m, 4mStatic24m, 4mNorthWest24m, 4mNorth24m, 4mNorthEast24m, 4mWest24m, 4mCenter24m, 4mEast24m, 4mSouthWest24m, 4mSouth24m, 4mSouthEast24m} WINGRAVITY {4mUnmap24m, 4mStatic24m, 4mNorthWest24m, 4mNorth24m, 4mNorthEast24m, 4mWest24m, 4mCenter24m, 4mEast24m, 4mSouthWest24m, 4mSouth24m, 4mSouthEast24m} BOOL {4mTrue24m, 4mFalse24m} EVENT {4mKeyPress24m, 4mKeyRelease24m, 4mOwnerGrabButton24m, 4mButton-0m 4mPress24m, 4mButtonRelease24m, 4mEnterWindow24m, 4mLeaveWindow24m, 4mPointer-0m 4mMotion24m, 4mPointerMotionHint24m, 4mButton1Motion24m, 4mButton2Motion24m, 4mButton3Motion24m, 4mButton4Motion24m, 4mButton5Motion24m, 4mBut-0m 4mtonMotion24m, 4mExposure24m, 4mVisibilityChange24m, 4mStructureNotify24m, 4mResizeRedirect24m, 4mSubstructureNotify24m, 4mSubstructureRedirect24m, 4mFocusChange24m, 4mPropertyChange24m, 4mColormapChange24m, 4mKeymapState24m} POINTEREVENT {4mButtonPress24m, 4mButtonRelease24m, 4mEnterWindow24m, 4mLeaveWin-0m 4mdow24m, 4mPointerMotion24m, 4mPointerMotionHint24m, 4mButton1Motion24m, 4mButton2Motion24m, 4mButton3Motion24m, 4mButton4Motion24m, 4mBut-0m 4mton5Motion24m, 4mButtonMotion24m, 4mKeymapState24m} DEVICEEVENT {4mKeyPress24m, 4mKeyRelease24m, 4mButtonPress24m, 4mButtonRelease24m, 4mPointerMotion24m, 4mButton1Motion24m, 4mButton2Motion24m, 4mBut-0m 4mton3Motion24m, 4mButton4Motion24m, 4mButton5Motion24m, 4mButtonMotion24m} KEYSYM 32-bit value (top three bits guaranteed to be zero) KEYCODE CARD8 BUTTON CARD8 KEYMASK {4mShift24m, 4mLock24m, 4mControl24m, 4mMod124m, 4mMod224m, 4mMod324m, 4mMod424m, 4mMod524m} BUTMASK {4mButton124m, 4mButton224m, 4mButton324m, 4mButton424m, 4mButton524m} KEYBUTMASK KEYMASK or BUTMASK STRING8 LISTofCARD8 STRING16 LISTofCHAR2B CHAR2B [byte1, byte2: CARD8] POINT [x, y: INT16] RECTANGLE [x, y: INT16, width, height: CARD16] 1m40m 1mX Protocol X11, Release 6.7 DRAFT0m ------------------------------------------------------------------- 1mName Value0m ------------------------------------------------------------------- ARC [x, y: INT16, width, height: CARD16, angle1, angle2: INT16] HOST [family: {4mInternet24m, 4mInternetV624m, 4mDECnet24m, 4mChaos24m} address: LISTofBYTE] The [x,y] coordinates of a RECTANGLE specify the upper-left corner. The primary interpretation of large characters in a STRING16 is that they are composed of two bytes used to index a two- dimensional matrix, hence, the use of CHAR2B rather than CARD16. This corresponds to the JIS/ISO method of indexing 2-byte characters. It is expected that most large fonts will be defined with 2-byte matrix indexing. For large fonts constructed with linear indexing, a CHAR2B can be interpreted as a 16-bit number by treating byte1 as the most significant byte. This means that clients should always transmit such 16-bit character values most significant byte first, as the server will never byte-swap CHAR2B quantities. The length, format, and interpretation of a HOST address are specific to the family (see 4mChangeHosts24m request). 1m4. Errors0m In general, when a request terminates with an error, the request has no side effects (that is, there is no partial execution). The only requests for which this is not true are 4mChangeWindowAttributes24m, 4mChangeGC24m, 4mPolyText824m, 4mPolyText1624m, 4mFreeColors24m, 4mStoreColors24m, and 4mChangeKeyboardControl24m. The following error codes result from various requests as follows: ------------------------------------------------------------- 1mError Description0m ------------------------------------------------------------- 1m50m 1mX Protocol X11, Release 6.7 DRAFT0m ------------------------------------------------------------- 1mError Description0m ------------------------------------------------------------- 4mAccess24m An attempt is made to grab a key/button combination already grabbed by another client. An attempt is made to free a colormap entry not allocated by the client or to free an entry in a colormap that was cre- ated with all entries writable. An attempt is made to store into a read- only or an unallocated colormap entry. An attempt is made to modify the access control list from other than the local host (or otherwise authorized client). An attempt is made to select an event type that only one client can select at a time when another client has already selected it. 4mAlloc24m The server failed to allocate the requested resource. Note that the explicit listing of 4mAlloc24m errors in request only covers allocation errors at a very coarse level and is not intended to cover all cases of a server running out of allocation space in the middle of service. The semantics when a server runs out of allocation space are left unspecified, but a server may generate an 4mAlloc24m error on any request for this reason, and clients should be prepared to receive such errors and handle or discard them. 4mAtom24m A value for an ATOM argument does not name a defined ATOM. 4mColormap24m A value for a COLORMAP argument does not name a defined COLORMAP. 4mCursor24m A value for a CURSOR argument does not name a defined CURSOR. 4mDrawable24m A value for a DRAWABLE argument does not name a defined WINDOW or PIXMAP. 4mFont24m A value for a FONT argument does not name a defined FONT. A value for a FONTABLE argument does not name a defined FONT or a defined GCONTEXT. 4mGContext24m A value for a GCONTEXT argument does not name a defined GCONTEXT. 4mIDChoice24m The value chosen for a resource identifier either is not included in the range assigned to the client or is already in use. 1m60m 1mX Protocol X11, Release 6.7 DRAFT0m ------------------------------------------------------------- 1mError Description0m ------------------------------------------------------------- 4mImplementation24m The server does not implement some aspect of the request. A server that generates this error for a core request is defi- cient. As such, this error is not listed for any of the requests, but clients should be prepared to receive such errors and handle or discard them. 4mLength24m The length of a request is shorter or longer than that required to minimally contain the arguments. The length of a request exceeds the maxi- mum length accepted by the server. 4mMatch24m An 4mInputOnly24m window is used as a DRAWABLE. In a graphics request, the GCONTEXT argu- ment does not have the same root and depth as the destination DRAWABLE argument. Some argument (or pair of arguments) has the correct type and range, but it fails to match in some other way required by the request. 4mName24m A font or color of the specified name does not exist. 4mPixmap24m A value for a PIXMAP argument does not name a defined PIXMAP. 4mRequest24m The major or minor opcode does not specify a valid request. 4mValue24m Some numeric value falls outside the range of values accepted by the request. Unless a specific range is specified for an argu- ment, the full range defined by the argu- ment's type is accepted. Any argument defined as a set of alternatives typically can generate this error (due to the encod- ing). 4mWindow24m A value for a WINDOW argument does not name a defined WINDOW. ------------------------------------------------------------- Note The 4mAtom24m, 4mColormap24m, 4mCursor24m, 4mDrawable24m, 4mFont24m, 4mGCon-0m 4mtext24m, 4mPixmap24m, and 4mWindow24m errors are also used when the argument type is extended by union with a set of fixed alternatives, for example, . 1m70m 1mX Protocol X11, Release 6.7 DRAFT0m 1m5. Keyboards0m A KEYCODE represents a physical (or logical) key. Keycodes lie in the inclusive range [8,255]. A keycode value carries no intrinsic information, although server implementors may attempt to encode geometry information (for example, matrix) to be interpreted in a server-dependent fashion. The map- ping between keys and keycodes cannot be changed using the protocol. A KEYSYM is an encoding of a symbol on the cap of a key. The set of defined KEYSYMs include the character sets Latin-1, Latin-2, Latin-3, Latin-4, Kana, Arabic, Cyrillic, Greek, Tech, Special, Publish, APL, Hebrew, Thai, and Korean as well as a set of symbols common on keyboards (Return, Help, Tab, and so on). KEYSYMs with the most significant bit (of the 29 bits) set are reserved as vendor-specific. A list of KEYSYMs is associated with each KEYCODE. The list is intended to convey the set of symbols on the correspond- ing key. If the list (ignoring trailing 4mNoSymbol24m entries) is a single KEYSYM ``4mK24m'', then the list is treated as if it were the list ``4mK24m NoSymbol 4mK24m NoSymbol''. If the list (ignoring trailing NoSymbol entries) is a pair of KEYSYMs ``4mK124m 4mK224m'', then the list is treated as if it were the list ``4mK124m 4mK224m 4mK124m 4mK224m''. If the list (ignoring trailing 4mNoSymbol0m entries) is a triple of KEYSYMs ``4mK124m 4mK224m 4mK324m'', then the list is treated as if it were the list ``4mK124m 4mK224m 4mK324m NoSymbol''. When an explicit ``void'' element is desired in the list, the value 4mVoidSymbol24m can be used. The first four elements of the list are split into two groups of KEYSYMs. Group 1 contains the first and second KEYSYMs, Group 2 contains the third and fourth KEYSYMs. Within each group, if the second element of the group is 4mNoSymbol24m, then the group should be treated as if the second element were the same as the first element, except when the first element is an alphabetic KEYSYM ``4mK24m'' for which both lowercase and uppercase forms are defined. In that case, the group should be treated as if the first element were the lowercase form of ``4mK24m'' and the second element were the uppercase form of ``4mK24m''. The standard rules for obtaining a KEYSYM from a 4mKeyPress0m event make use of only the Group 1 and Group 2 KEYSYMs; no interpretation of other KEYSYMs in the list is defined. The modifier state determines which group to use. Switching between groups is controlled by the KEYSYM named MODE SWITCH, by attaching that KEYSYM to some KEYCODE and attach- ing that KEYCODE to any one of the modifiers 4mMod124m through 4mMod524m. This modifier is called the ``group modifier''. For any KEYCODE, Group 1 is used when the group modifier is off, and Group 2 is used when the group modifier is on. 1m80m 1mX Protocol X11, Release 6.7 DRAFT0m The 4mLock24m modifier is interpreted as CapsLock when the KEYSYM named CAPS LOCK is attached to some KEYCODE and that KEYCODE is attached to the 4mLock24m modifier. The 4mLock24m modifier is interpreted as ShiftLock when the KEYSYM named SHIFT LOCK is attached to some KEYCODE and that KEYCODE is attached to the 4mLock24m modifier. If the 4mLock24m modifier could be interpreted as both CapsLock and ShiftLock, the CapsLock interpretation is used. The operation of ``keypad'' keys is controlled by the KEYSYM named NUM LOCK, by attaching that KEYSYM to some KEYCODE and attaching that KEYCODE to any one of the modifiers 4mMod10m through 4mMod524m. This modifier is called the ``numlock modi- fier''. The standard KEYSYMs with the prefix KEYPAD in their name are called ``keypad'' KEYSYMs; these are KEYSYMS with numeric value in the hexadecimal range #xFF80 to #xFFBD inclusive. In addition, vendor-specific KEYSYMS in the hexadecimal range #x11000000 to #x1100FFFF are also keypad KEYSYMs. Within a group, the choice of KEYSYM is determined by apply- ing the first rule that is satisfied from the following list: · The numlock modifier is on and the second KEYSYM is a keypad KEYSYM. In this case, if the 4mShift24m modifier is on, or if the 4mLock24m modifier is on and is interpreted as ShiftLock, then the first KEYSYM is used; otherwise, the second KEYSYM is used. · The 4mShift24m and 4mLock24m modifiers are both off. In this case, the first KEYSYM is used. · The 4mShift24m modifier is off, and the 4mLock24m modifier is on and is interpreted as CapsLock. In this case, the first KEYSYM is used, but if that KEYSYM is lowercase alphabetic, then the corresponding uppercase KEYSYM is used instead. · The 4mShift24m modifier is on, and the 4mLock24m modifier is on and is interpreted as CapsLock. In this case, the sec- ond KEYSYM is used, but if that KEYSYM is lowercase alphabetic, then the corresponding uppercase KEYSYM is used instead. · The 4mShift24m modifier is on, or the 4mLock24m modifier is on and is interpreted as ShiftLock, or both. In this case, the second KEYSYM is used. The mapping between KEYCODEs and KEYSYMs is not used directly by the server; it is merely stored for reading and writing by clients. 1m90m 1mX Protocol X11, Release 6.7 DRAFT0m 1m6. Pointers0m Buttons are always numbered starting with one. 1m7. Predefined Atoms0m Predefined atoms are not strictly necessary and may not be useful in all environments, but they will eliminate many 4mInternAtom24m requests in most applications. Note that they are predefined only in the sense of having numeric values, not in the sense of having required semantics. The core protocol imposes no semantics on these names, but semantics are specified in other X.Org standards, such as the 4mInter-0m 4mClient24m 4mCommunication24m 4mConventions24m 4mManual24m and the 4mX24m 4mLogical0m 4mFont24m 4mDescription24m 4mConventions24m. The following names have predefined atom values. Note that uppercase and lowercase matter. ARC ITALIC_ANGLE STRING ATOM MAX_SPACE SUBSCRIPT_X BITMAP MIN_SPACE SUBSCRIPT_Y CAP_HEIGHT NORM_SPACE SUPERSCRIPT_X CARDINAL NOTICE SUPERSCRIPT_Y COLORMAP PIXMAP UNDERLINE_POSITION COPYRIGHT POINT UNDERLINE_THICKNESS CURSOR POINT_SIZE VISUALID CUT_BUFFER0 PRIMARY WEIGHT CUT_BUFFER1 QUAD_WIDTH WINDOW CUT_BUFFER2 RECTANGLE WM_CLASS CUT_BUFFER3 RESOLUTION WM_CLIENT_MACHINE CUT_BUFFER4 RESOURCE_MANAGER WM_COMMAND CUT_BUFFER5 RGB_BEST_MAP WM_HINTS CUT_BUFFER6 RGB_BLUE_MAP WM_ICON_NAME CUT_BUFFER7 RGB_COLOR_MAP WM_ICON_SIZE DRAWABLE RGB_DEFAULT_MAP WM_NAME END_SPACE RGB_GRAY_MAP WM_NORMAL_HINTS FAMILY_NAME RGB_GREEN_MAP WM_SIZE_HINTS FONT RGB_RED_MAP WM_TRANSIENT_FOR FONT_NAME SECONDARY WM_ZOOM_HINTS FULL_NAME STRIKEOUT_ASCENT X_HEIGHT INTEGER STRIKEOUT_DESCENT To avoid conflicts with possible future names for which semantics might be imposed (either at the protocol level or in terms of higher level user interface models), names beginning with an underscore should be used for atoms that are private to a particular vendor or organization. To guarantee no conflicts between vendors and organizations, additional prefixes need to be used. However, the protocol does not define the mechanism for choosing such prefixes. For names private to a single application or end user but stored in globally accessible locations, it is suggested 1m100m 1mX Protocol X11, Release 6.7 DRAFT0m that two leading underscores be used to avoid conflicts with other names. 1m8. Connection Setup0m For remote clients, the X protocol can be built on top of any reliable byte stream. 1mConnection Initiation0m The client must send an initial byte of data to identify the byte order to be employed. The value of the byte must be octal 102 or 154. The value 102 (ASCII uppercase B) means values are transmitted most significant byte first, and value 154 (ASCII lowercase l) means values are transmitted least significant byte first. Except where explicitly noted in the protocol, all 16-bit and 32-bit quantities sent by the client must be transmitted with this byte order, and all 16-bit and 32-bit quantities returned by the server will be transmitted with this byte order. Following the byte-order byte, the client sends the follow- ing information at connection setup: protocol-major-version: CARD16 protocol-minor-version: CARD16 authorization-protocol-name: STRING8 authorization-protocol-data: STRING8 The version numbers indicate what version of the protocol the client expects the server to implement. The authorization name indicates what authorization (and authentication) protocol the client expects the server to use, and the data is specific to that protocol. Specifica- tion of valid authorization mechanisms is not part of the core X protocol. A server that does not implement the pro- tocol the client expects or that only implements the host- based mechanism may simply ignore this information. If both name and data strings are empty, this is to be interpreted as ``no explicit authorization.'' 1mServer Response0m The client receives the following information at connection setup: success: {4mFailed24m, 4mSuccess24m, 4mAuthenticate24m} The client receives the following additional data if the returned success value is 4mFailed24m, and the connection is not successfully established: 1m110m 1mX Protocol X11, Release 6.7 DRAFT0m protocol-major-version: CARD16 protocol-minor-version: CARD16 reason: STRING8 The client receives the following additional data if the returned success value is 4mAuthenticate24m, and further authen- tication negotiation is required: reason: STRING8 The contents of the reason string are specific to the autho- rization protocol in use. The semantics of this authentica- tion negotiation are not constrained, except that the nego- tiation must eventually terminate with a reply from the server containing a success value of 4mFailed24m or 4mSuccess24m. The client receives the following additional data if the returned success value is 4mSuccess24m, and the connection is successfully established: protocol-major-version: CARD16 protocol-minor-version: CARD16 vendor: STRING8 release-number: CARD32 resource-id-base, resource-id-mask: CARD32 image-byte-order: {4mLSBFirst24m, 4mMSBFirst24m} bitmap-scanline-unit: {8, 16, 32} bitmap-scanline-pad: {8, 16, 32} bitmap-bit-order: {4mLeastSignificant24m, 4mMostSignificant24m} pixmap-formats: LISTofFORMAT roots: LISTofSCREEN motion-buffer-size: CARD32 maximum-request-length: CARD16 min-keycode, max-keycode: KEYCODE where: FORMAT: [depth: CARD8, bits-per-pixel: {1, 4, 8, 16, 24, 32} scanline-pad: {8, 16, 32}] 1m120m 1mX Protocol X11, Release 6.7 DRAFT0m SCREEN: [root: WINDOW width-in-pixels, height-in-pixels: CARD16 width-in-millimeters, height-in-mil- limeters: CARD16 allowed-depths: LISTofDEPTH root-depth: CARD8 root-visual: VISUALID default-colormap: COLORMAP white-pixel, black-pixel: CARD32 min-installed-maps, max-installed-maps: CARD16 backing-stores: {4mNever24m, 4mWhenMapped24m, 4mAlways24m} save-unders: BOOL current-input-masks: SETofEVENT] DEPTH: [depth: CARD8 visuals: LISTofVISUALTYPE] VISUALTYPE: [visual-id: VISUALID class: {4mStaticGray24m, 4mStaticColor24m, 4mTrue-0m 4mColor24m, 4mGrayScale24m, 4mPseudoColor24m, 4mDirectColor24m} red-mask, green-mask, blue-mask: CARD32 bits-per-rgb-value: CARD8 colormap-entries: CARD16] 1mServer Information0m The information that is global to the server is: The protocol version numbers are an escape hatch in case future revisions of the protocol are necessary. In general, the major version would increment for incompatible changes, and the minor version would increment for small upward com- patible changes. Barring changes, the major version will be 11, and the minor version will be 0. The protocol version numbers returned indicate the protocol the server actually supports. This might not equal the version sent by the client. The server can (but need not) refuse connections from clients that offer a different version than the server supports. A server can (but need not) support more than one version simultaneously. The vendor string gives some identification of the owner of the server implementation. The vendor controls the seman- tics of the release number. The resource-id-mask contains a single contiguous set of bits (at least 18). The client allocates resource IDs for types WINDOW, PIXMAP, CURSOR, FONT, GCONTEXT, and COLORMAP by choosing a value with only some subset of these bits set 1m130m 1mX Protocol X11, Release 6.7 DRAFT0m and ORing it with resource-id-base. Only values constructed in this way can be used to name newly created resources over this connection. Resource IDs never have the top three bits set. The client is not restricted to linear or contiguous allocation of resource IDs. Once an ID has been freed, it can be reused. An ID must be unique with respect to the IDs of all other resources, not just other resources of the same type. However, note that the value spaces of resource iden- tifiers, atoms, visualids, and keysyms are distinguished by context, and as such, are not required to be disjoint; for example, a given numeric value might be both a valid window ID, a valid atom, and a valid keysym. Although the server is in general responsible for byte-swap- ping data to match the client, images are always transmitted and received in formats (including byte order) specified by the server. The byte order for images is given by image- byte-order and applies to each scanline unit in XY format (bitmap format) and to each pixel value in Z format. A bitmap is represented in scanline order. Each scanline is padded to a multiple of bits as given by bitmap-scanline- pad. The pad bits are of arbitrary value. The scanline is quantized in multiples of bits as given by bitmap-scanline- unit. The bitmap-scanline-unit is always less than or equal to the bitmap-scanline-pad. Within each unit, the leftmost bit in the bitmap is either the least significant or most significant bit in the unit, as given by bitmap-bit-order. If a pixmap is represented in XY format, each plane is rep- resented as a bitmap, and the planes appear from most sig- nificant to least significant in bit order with no padding between planes. Pixmap-formats contains one entry for each depth value. The entry describes the Z format used to represent images of that depth. An entry for a depth is included if any screen supports that depth, and all screens supporting that depth must support only that Z format for that depth. In Z for- mat, the pixels are in scanline order, left to right within a scanline. The number of bits used to hold each pixel is given by bits-per-pixel. Bits-per-pixel may be larger than strictly required by the depth, in which case the least sig- nificant bits are used to hold the pixmap data, and the val- ues of the unused high-order bits are undefined. When the bits-per-pixel is 4, the order of nibbles in the byte is the same as the image byte-order. When the bits-per-pixel is 1, the format is identical for bitmap format. Each scanline is padded to a multiple of bits as given by scanline-pad. When bits-per-pixel is 1, this will be identical to bitmap-scan- line-pad. How a pointing device roams the screens is up to the server implementation and is transparent to the protocol. No geom- etry is defined among screens. 1m140m 1mX Protocol X11, Release 6.7 DRAFT0m The server may retain the recent history of pointer motion and do so to a finer granularity than is reported by 4mMotion-0m 4mNotify24m events. The 4mGetMotionEvents24m request makes such his- tory available. The motion-buffer-size gives the approxi- mate maximum number of elements in the history buffer. Maximum-request-length specifies the maximum length of a request accepted by the server, in 4-byte units. That is, length is the maximum value that can appear in the length field of a request. Requests larger than this maximum gen- erate a 4mLength24m error, and the server will read and simply discard the entire request. Maximum-request-length will always be at least 4096 (that is, requests of length up to and including 16384 bytes will be accepted by all servers). Min-keycode and max-keycode specify the smallest and largest keycode values transmitted by the server. Min-keycode is never less than 8, and max-keycode is never greater than 255. Not all keycodes in this range are required to have corresponding keys. 1mScreen Information0m The information that applies per screen is: The allowed-depths specifies what pixmap and window depths are supported. Pixmaps are supported for each depth listed, and windows of that depth are supported if at least one visual type is listed for the depth. A pixmap depth of one is always supported and listed, but windows of depth one might not be supported. A depth of zero is never listed, but zero-depth 4mInputOnly24m windows are always supported. Root-depth and root-visual specify the depth and visual type of the root window. Width-in-pixels and height-in-pixels specify the size of the root window (which cannot be changed). The class of the root window is always 4mInputOut-0m 4mput24m. Width-in-millimeters and height-in-millimeters can be used to determine the physical size and the aspect ratio. The default-colormap is the one initially associated with the root window. Clients with minimal color requirements creating windows of the same depth as the root may want to allocate from this map by default. Black-pixel and white-pixel can be used in implementing a monochrome application. These pixel values are for perma- nently allocated entries in the default-colormap. The actual RGB values may be settable on some screens and, in any case, may not actually be black and white. The names are intended to convey the expected relative intensity of the colors. 1m150m 1mX Protocol X11, Release 6.7 DRAFT0m The border of the root window is initially a pixmap filled with the black-pixel. The initial background of the root window is a pixmap filled with some unspecified two-color pattern using black-pixel and white-pixel. Min-installed-maps specifies the number of maps that can be guaranteed to be installed simultaneously (with 4mInstallCol-0m 4mormap24m), regardless of the number of entries allocated in each map. Max-installed-maps specifies the maximum number of maps that might possibly be installed simultaneously, depending on their allocations. Multiple static-visual col- ormaps with identical contents but differing in resource ID should be considered as a single map for the purposes of this number. For the typical case of a single hardware col- ormap, both values will be 1. Backing-stores indicates when the server supports backing stores for this screen, although it may be storage limited in the number of windows it can support at once. If save- unders is 4mTrue24m, the server can support the save-under mode in 4mCreateWindow24m and 4mChangeWindowAttributes24m, although again it may be storage limited. The current-input-events is what 4mGetWindowAttributes24m would return for the all-event-masks for the root window. 1mVisual Information0m The information that applies per visual-type is: A given visual type might be listed for more than one depth or for more than one screen. For 4mPseudoColor24m, a pixel value indexes a colormap to produce independent RGB values; the RGB values can be changed dynam- ically. 4mGrayScale24m is treated in the same way as 4mPseudoColor0m except which primary drives the screen is undefined; thus, the client should always store the same value for red, green, and blue in colormaps. For 4mDirectColor24m, a pixel value is decomposed into separate RGB subfields, and each subfield separately indexes the colormap for the correspond- ing value. The RGB values can be changed dynamically. 4mTrueColor24m is treated in the same way as 4mDirectColor24m except the colormap has predefined read-only RGB values. These values are server-dependent but provide linear or near-lin- ear increasing ramps in each primary. 4mStaticColor24m is treated in the same way as 4mPseudoColor24m except the colormap has predefined read-only RGB values, which are server-depen- dent. 4mStaticGray24m is treated in the same way as 4mStaticColor0m except the red, green, and blue values are equal for any single pixel value, resulting in shades of gray. 4mStaticGray0m with a two-entry colormap can be thought of as monochrome. 1m160m 1mX Protocol X11, Release 6.7 DRAFT0m The red-mask, green-mask, and blue-mask are only defined for 4mDirectColor24m and 4mTrueColor24m. Each has one contiguous set of bits set to 1 with no intersections. Usually each mask has the same number of bits set to 1. The bits-per-rgb-value specifies the log base 2 of the num- ber of distinct color intensity values (individually) of red, green, and blue. This number need not bear any rela- tion to the number of colormap entries. Actual RGB values are always passed in the protocol within a 16-bit spectrum, with 0 being minimum intensity and 65535 being the maximum intensity. On hardware that provides a linear zero-based intensity ramp, the following relationship exists: hw-intensity = protocol-intensity / (65536 / total-hw-intensities) Colormap entries are indexed from 0. The colormap-entries defines the number of available colormap entries in a newly created colormap. For 4mDirectColor24m and 4mTrueColor24m, this will usually be 2 to the power of the maximum number of bits set to 1 in red-mask, green-mask, and blue-mask. 1m9. Requests0m __ | 4mCreateWindow0m 4mwid24m, 4mparent24m: WINDOW 4mclass24m: {4mInputOutput24m, 4mInputOnly24m, 4mCopyFromParent24m} 4mdepth24m: CARD8 4mvisual24m: VISUALID or 4mCopyFromParent0m 4mx24m, 4my24m: INT16 4mwidth24m, 4mheight24m, 4mborder-width24m: CARD16 4mvalue-mask24m: BITMASK 4mvalue-list24m: LISTofVALUE Errors: 4mAlloc24m, 4mColormap24m, 4mCursor24m, 4mIDChoice24m, 4mMatch24m, 4mPixmap24m, |__ 4mValue24m, 4mWindow0m This request creates an unmapped window and assigns the identifier wid to it. A class of 4mCopyFromParent24m means the class is taken from the parent. A depth of zero for class 4mInputOutput24m or 4mCopy-0m 4mFromParent24m means the depth is taken from the parent. A visual of 4mCopyFromParent24m means the visual type is taken from the parent. For class 4mInputOutput24m, the visual type and depth must be a combination supported for the screen (or a 4mMatch24m error results). The depth need not be the same as the parent, but the parent must not be of class 4mInputOnly24m (or a 1m170m 1mX Protocol X11, Release 6.7 DRAFT0m 4mMatch24m error results). For class 4mInputOnly24m, the depth must be zero (or a 4mMatch24m error results), and the visual must be one supported for the screen (or a 4mMatch24m error results). However, the parent can have any depth and class. The server essentially acts as if 4mInputOnly24m windows do not exist for the purposes of graphics requests, exposure pro- cessing, and 4mVisibilityNotify24m events. An 4mInputOnly24m window cannot be used as a drawable (as a source or destination for graphics requests). 4mInputOnly24m and 4mInputOutput24m windows act identically in other respects-properties, grabs, input con- trol, and so on. The coordinate system has the X axis horizontal and the Y axis vertical with the origin [0, 0] at the upper-left cor- ner. Coordinates are integral, in terms of pixels, and coincide with pixel centers. Each window and pixmap has its own coordinate system. For a window, the origin is inside the border at the inside, upper-left corner. The x and y coordinates for the window are relative to the parent's origin and specify the position of the upper-left outer corner of the window (not the origin). The width and height specify the inside size (not including the border) and must be nonzero (or a 4mValue24m error results). The border- width for an 4mInputOnly24m window must be zero (or a 4mMatch24m error results). The window is placed on top in the stacking order with respect to siblings. The value-mask and value-list specify attributes of the win- dow that are to be explicitly initialized. The possible values are: ----------------------------------------------- 1mAttribute Type0m ----------------------------------------------- background-pixmap PIXMAP or 4mNone24m or 4mParen-0m 4mtRelative0m background-pixel CARD32 border-pixmap PIXMAP or 4mCopyFromParent0m border-pixel CARD32 bit-gravity BITGRAVITY win-gravity WINGRAVITY backing-store {4mNotUseful24m, 4mWhenMapped24m, 4mAlways24m} backing-planes CARD32 backing-pixel CARD32 save-under BOOL event-mask SETofEVENT do-not-propagate- SETofDEVICEEVENT mask 1m180m 1mX Protocol X11, Release 6.7 DRAFT0m ----------------------------------------------- 1mAttribute Type0m ----------------------------------------------- override-redirect BOOL colormap COLORMAP or 4mCopyFromParent0m cursor CURSOR or 4mNone0m ----------------------------------------------- The default values when attributes are not explicitly ini- tialized are: ----------------------------------- 1mAttribute Default0m ----------------------------------- background-pixmap 4mNone0m border-pixmap 4mCopyFromParent0m bit-gravity 4mForget0m win-gravity 4mNorthWest0m backing-store 4mNotUseful0m backing-planes all ones backing-pixel zero save-under 4mFalse0m event-mask {} (empty set) do-not-propagate- {} (empty set) mask override-redirect 4mFalse0m colormap 4mCopyFromParent0m cursor 4mNone0m ----------------------------------- Only the following attributes are defined for 4mInputOnly24m win- dows: · win-gravity · event-mask · do-not-propagate-mask · override-redirect · cursor It is a 4mMatch24m error to specify any other attributes for 4mInputOnly24m windows. If background-pixmap is given, it overrides the default background-pixmap. The background pixmap and the window must have the same root and the same depth (or a 4mMatch24m error results). Any size pixmap can be used, although some sizes may be faster than others. If background 4mNone24m is specified, the window has no defined background. If background 1m190m 1mX Protocol X11, Release 6.7 DRAFT0m 4mParentRelative24m is specified, the parent's background is used, but the window must have the same depth as the parent (or a 4mMatch24m error results). If the parent has background 4mNone24m, then the window will also have background 4mNone24m. A copy of the parent's background is not made. The parent's background is reexamined each time the window background is required. If background-pixel is given, it overrides the default background-pixmap and any background-pixmap given explicitly, and a pixmap of undefined size filled with back- ground-pixel is used for the background. Range checking is not performed on the background-pixel value; it is simply truncated to the appropriate number of bits. For a 4mParen-0m 4mtRelative24m background, the background tile origin always aligns with the parent's background tile origin. Otherwise, the background tile origin is always the window origin. When no valid contents are available for regions of a window and the regions are either visible or the server is main- taining backing store, the server automatically tiles the regions with the window's background unless the window has a background of 4mNone24m. If the background is 4mNone24m, the previous screen contents from other windows of the same depth as the window are simply left in place if the contents come from the parent of the window or an inferior of the parent; oth- erwise, the initial contents of the exposed regions are undefined. Exposure events are then generated for the regions, even if the background is 4mNone24m. The border tile origin is always the same as the background tile origin. If border-pixmap is given, it overrides the default border-pixmap. The border pixmap and the window must have the same root and the same depth (or a 4mMatch24m error results). Any size pixmap can be used, although some sizes may be faster than others. If 4mCopyFromParent24m is given, the parent's border pixmap is copied (subsequent changes to the parent's border attribute do not affect the child), but the window must have the same depth as the parent (or a 4mMatch0m error results). The pixmap might be copied by sharing the same pixmap object between the child and parent or by making a complete copy of the pixmap contents. If border-pixel is given, it overrides the default border-pixmap and any bor- der-pixmap given explicitly, and a pixmap of undefined size filled with border-pixel is used for the border. Range checking is not performed on the border-pixel value; it is simply truncated to the appropriate number of bits. Output to a window is always clipped to the inside of the window, so that the border is never affected. The bit-gravity defines which region of the window should be retained if the window is resized, and win-gravity defines how the window should be repositioned if the parent is resized (see 4mConfigureWindow24m request). 1m200m 1mX Protocol X11, Release 6.7 DRAFT0m A backing-store of 4mWhenMapped24m advises the server that main- taining contents of obscured regions when the window is mapped would be beneficial. A backing-store of 4mAlways0m advises the server that maintaining contents even when the window is unmapped would be beneficial. In this case, the server may generate an exposure event when the window is created. A value of 4mNotUseful24m advises the server that main- taining contents is unnecessary, although a server may still choose to maintain contents while the window is mapped. Note that if the server maintains contents, then the server should maintain complete contents not just the region within the parent boundaries, even if the window is larger than its parent. While the server maintains contents, exposure events will not normally be generated, but the server may stop maintaining contents at any time. If save-under is 4mTrue24m, the server is advised that when this window is mapped, saving the contents of windows it obscures would be beneficial. When the contents of obscured regions of a window are being maintained, regions obscured by noninferior windows are included in the destination (and source, when the window is the source) of graphics requests, but regions obscured by inferior windows are not included. The backing-planes indicates (with bits set to 1) which bit planes of the window hold dynamic data that must be pre- served in backing-stores and during save-unders. The back- ing-pixel specifies what value to use in planes not covered by backing-planes. The server is free to save only the specified bit planes in the backing-store or save-under and regenerate the remaining planes with the specified pixel value. Any bits beyond the specified depth of the window in these values are simply ignored. The event-mask defines which events the client is interested in for this window (or for some event types, inferiors of the window). The do-not-propagate-mask defines which events should not be propagated to ancestor windows when no client has the event type selected in this window. The override-redirect specifies whether map and configure requests on this window should override a 4mSubstructureRedi-0m 4mrect24m on the parent, typically to inform a window manager not to tamper with the window. The colormap specifies the colormap that best reflects the true colors of the window. Servers capable of supporting multiple hardware colormaps may use this information, and window managers may use it for 4mInstallColormap24m requests. The colormap must have the same visual type and root as the window (or a 4mMatch24m error results). If 4mCopyFromParent24m is specified, the parent's colormap is copied (subsequent 1m210m 1mX Protocol X11, Release 6.7 DRAFT0m changes to the parent's colormap attribute do not affect the child). However, the window must have the same visual type as the parent (or a 4mMatch24m error results), and the parent must not have a colormap of 4mNone24m (or a 4mMatch24m error results). For an explanation of 4mNone24m, see 4mFreeColormap24m request. The colormap is copied by sharing the colormap object between the child and the parent, not by making a complete copy of the colormap contents. If a cursor is specified, it will be used whenever the pointer is in the window. If 4mNone24m is specified, the par- ent's cursor will be used when the pointer is in the window, and any change in the parent's cursor will cause an immedi- ate change in the displayed cursor. This request generates a 4mCreateNotify24m event. The background and border pixmaps and the cursor may be freed immediately if no further explicit references to them are to be made. Subsequent drawing into the background or border pixmap has an undefined effect on the window state. The server might or might not make a copy of the pixmap. __ | 4mChangeWindowAttributes0m 4mwindow24m: WINDOW 4mvalue-mask24m: BITMASK 4mvalue-list24m: LISTofVALUE Errors: 4mAccess24m, 4mColormap24m, 4mCursor24m, 4mMatch24m, 4mPixmap24m, 4mValue24m, |__ 4mWindow0m The value-mask and value-list specify which attributes are to be changed. The values and restrictions are the same as for 4mCreateWindow24m. Setting a new background, whether by background-pixmap or background-pixel, overrides any previous background. Set- ting a new border, whether by border-pixel or border-pixmap, overrides any previous border. Changing the background does not cause the window contents to be changed. Setting the border or changing the back- ground such that the border tile origin changes causes the border to be repainted. Changing the background of a root window to 4mNone24m or 4mParentRelative24m restores the default back- ground pixmap. Changing the border of a root window to 4mCopyFromParent24m restores the default border pixmap. 1m220m 1mX Protocol X11, Release 6.7 DRAFT0m Changing the win-gravity does not affect the current posi- tion of the window. Changing the backing-store of an obscured window to 4mWhen-0m 4mMapped24m or 4mAlways24m or changing the backing-planes, backing- pixel, or save-under of a mapped window may have no immedi- ate effect. Multiple clients can select input on the same window; their event-masks are disjoint. When an event is generated, it will be reported to all interested clients. However, only one client at a time can select for 4mSubstructureRedirect24m, only one client at a time can select for 4mResizeRedirect24m, and only one client at a time can select for 4mButtonPress24m. An attempt to violate these restrictions results in an 4mAccess0m error. There is only one do-not-propagate-mask for a window, not one per client. Changing the colormap of a window (by defining a new map, not by changing the contents of the existing map) generates a 4mColormapNotify24m event. Changing the colormap of a visible window might have no immediate effect on the screen (see 4mInstallColormap24m request). Changing the cursor of a root window to 4mNone24m restores the default cursor. The order in which attributes are verified and altered is server-dependent. If an error is generated, a subset of the attributes may have been altered. 1m230m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mGetWindowAttributes0m 4mwindow24m: WINDOW -> visual: VISUALID class: {4mInputOutput24m, 4mInputOnly24m} bit-gravity: BITGRAVITY win-gravity: WINGRAVITY backing-store: {4mNotUseful24m, 4mWhenMapped24m, 4mAlways24m} backing-planes: CARD32 backing-pixel: CARD32 save-under: BOOL colormap: COLORMAP or 4mNone0m map-is-installed: BOOL map-state: {4mUnmapped24m, 4mUnviewable24m, 4mViewable24m} all-event-masks, your-event-mask: SETofEVENT do-not-propagate-mask: SETofDEVICEEVENT override-redirect: BOOL |__ Errors: 4mWindow0m This request returns the current attributes of the window. A window is 4mUnviewable24m if it is mapped but some ancestor is unmapped. All-event-masks is the inclusive-OR of all event masks selected on the window by clients. Your-event-mask is the event mask selected by the querying client. __ | 4mDestroyWindow0m 4mwindow24m: WINDOW |__ Errors: 4mWindow0m If the argument window is mapped, an 4mUnmapWindow24m request is performed automatically. The window and all inferiors are then destroyed, and a 4mDestroyNotify24m event is generated for each window. The ordering of the 4mDestroyNotify24m events is such that for any given window, 4mDestroyNotify24m is generated on all inferiors of the window before being generated on the window itself. The ordering among siblings and across sub- hierarchies is not otherwise constrained. Normal exposure processing on formerly obscured windows is performed. If the window is a root window, this request has no effect. 1m240m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mDestroySubwindows0m 4mwindow24m: WINDOW |__ Errors: 4mWindow0m This request performs a 4mDestroyWindow24m request on all chil- dren of the window, in bottom-to-top stacking order. __ | 4mChangeSaveSet0m 4mwindow24m: WINDOW 4mmode24m: {4mInsert24m, 4mDelete24m} Errors: |__ 4mMatch24m, 4mValue24m, 4mWindow0m This request adds or removes the specified window from the client's save-set. The window must have been created by some other client (or a 4mMatch24m error results). For further information about the use of the save-set, see section 10. When windows are destroyed, the server automatically removes them from the save-set. __ | 4mReparentWindow0m 4mwindow24m, 4mparent24m: WINDOW 4mx24m, 4my24m: INT16 |__ Errors: 4mMatch24m, 4mWindow0m If the window is mapped, an 4mUnmapWindow24m request is performed automatically first. The window is then removed from its current position in the hierarchy and is inserted as a child of the specified parent. The x and y coordinates are rela- tive to the parent's origin and specify the new position of the upper-left outer corner of the window. The window is placed on top in the stacking order with respect to sib- lings. A 4mReparentNotify24m event is then generated. The over- ride-redirect attribute of the window is passed on in this event; a value of 4mTrue24m indicates that a window manager should not tamper with this window. Finally, if the window was originally mapped, a 4mMapWindow24m request is performed automatically. 1m250m 1mX Protocol X11, Release 6.7 DRAFT0m Normal exposure processing on formerly obscured windows is performed. The server might not generate exposure events for regions from the initial unmap that are immediately obscured by the final map. A 4mMatch24m error is generated if: · The new parent is not on the same screen as the old parent. · The new parent is the window itself or an inferior of the window. · The new parent is 4mInputOnly24m, and the window is not. · The window has a 4mParentRelative24m background, and the new parent is not the same depth as the window. __ | 4mMapWindow0m 4mwindow24m: WINDOW |__ Errors: 4mWindow0m If the window is already mapped, this request has no effect. If the override-redirect attribute of the window is 4mFalse0m and some other client has selected 4mSubstructureRedirect24m on the parent, then a 4mMapRequest24m event is generated, but the window remains unmapped. Otherwise, the window is mapped, and a 4mMapNotify24m event is generated. If the window is now viewable and its contents have been discarded, the window is tiled with its background (if no background is defined, the existing screen contents are not altered), and zero or more exposure events are generated. If a backing-store has been maintained while the window was unmapped, no exposure events are generated. If a backing- store will now be maintained, a full-window exposure is always generated. Otherwise, only visible regions may be reported. Similar tiling and exposure take place for any newly viewable inferiors. 1m260m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mMapSubwindows0m 4mwindow24m: WINDOW |__ Errors: 4mWindow0m This request performs a 4mMapWindow24m request on all unmapped children of the window, in top-to-bottom stacking order. __ | 4mUnmapWindow0m 4mwindow24m: WINDOW |__ Errors: 4mWindow0m If the window is already unmapped, this request has no effect. Otherwise, the window is unmapped, and an 4mUnmapNo-0m 4mtify24m event is generated. Normal exposure processing on for- merly obscured windows is performed. __ | 4mUnmapSubwindows0m 4mwindow24m: WINDOW |__ Errors: 4mWindow0m This request performs an 4mUnmapWindow24m request on all mapped children of the window, in bottom-to-top stacking order. __ | 4mConfigureWindow0m 4mwindow24m: WINDOW 4mvalue-mask24m: BITMASK 4mvalue-list24m: LISTofVALUE |__ Errors: 4mMatch24m, 4mValue24m, 4mWindow0m This request changes the configuration of the window. The value-mask and value-list specify which values are to be given. The possible values are: 1m270m 1mX Protocol X11, Release 6.7 DRAFT0m ----------------------------------------------- 1mAttribute Type0m ----------------------------------------------- x INT16 y INT16 width CARD16 height CARD16 border-width CARD16 sibling WINDOW stack-mode {4mAbove24m, 4mBelow24m, 4mTopIf24m, 4mBottomIf24m, 4mOpposite24m} ----------------------------------------------- The x and y coordinates are relative to the parent's origin and specify the position of the upper-left outer corner of the window. The width and height specify the inside size, not including the border, and must be nonzero (or a 4mValue0m error results). Those values not specified are taken from the existing geometry of the window. Note that changing just the border-width leaves the outer-left corner of the window in a fixed position but moves the absolute position of the window's origin. It is a 4mMatch24m error to attempt to make the border-width of an 4mInputOnly24m window nonzero. If the override-redirect attribute of the window is 4mFalse0m and some other client has selected 4mSubstructureRedirect24m on the parent, a 4mConfigureRequest24m event is generated, and no further processing is performed. Otherwise, the following is performed: If some other client has selected 4mResizeRedirect24m on the win- dow and the inside width or height of the window is being changed, a 4mResizeRequest24m event is generated, and the current inside width and height are used instead. Note that the override-redirect attribute of the window has no effect on 4mResizeRedirect24m and that 4mSubstructureRedirect24m on the parent has precedence over 4mResizeRedirect24m on the window. The geometry of the window is changed as specified, the win- dow is restacked among siblings, and a 4mConfigureNotify24m event is generated if the state of the window actually changes. If the inside width or height of the window has actually changed, then children of the window are affected, according to their win-gravity. Exposure processing is performed on formerly obscured windows (including the window itself and its inferiors if regions of them were obscured but now are not). Exposure processing is also performed on any new regions of the window (as a result of increasing the width or height) and on any regions where window contents are lost. If the inside width or height of a window is not changed but the window is moved or its border is changed, then the 1m280m 1mX Protocol X11, Release 6.7 DRAFT0m contents of the window are not lost but move with the win- dow. Changing the inside width or height of the window causes its contents to be moved or lost, depending on the bit-gravity of the window. It also causes children to be reconfigured, depending on their win-gravity. For a change of width and height of W and H, we define the [x, y] pairs as: ----------------------- 1mDirection Deltas0m ----------------------- 4mNorthWest24m [0, 0] 4mNorth24m [W/2, 0] 4mNorthEast24m [W, 0] 4mWest24m [0, H/2] 4mCenter24m [W/2, H/2] 4mEast24m [W, H/2] 4mSouthWest24m [0, H] 4mSouth24m [W/2, H] 4mSouthEast24m [W, H] ----------------------- When a window with one of these bit-gravities is resized, the corresponding pair defines the change in position of each pixel in the window. When a window with one of these win-gravities has its parent window resized, the correspond- ing pair defines the change in position of the window within the parent. This repositioning generates a 4mGravityNotify0m event. 4mGravityNotify24m events are generated after the 4mConfig-0m 4mureNotify24m event is generated. A gravity of 4mStatic24m indicates that the contents or origin should not move relative to the origin of the root window. If the change in size of the window is coupled with a change in position of [X, Y], then for bit-gravity the change in position of each pixel is [-X, -Y] and for win-gravity the change in position of a child when its parent is so resized is [-X, -Y]. Note that 4mStatic24m gravity still only takes effect when the width or height of the window is changed, not when the window is simply moved. A bit-gravity of 4mForget24m indicates that the window contents are always discarded after a size change, even if backing- store or save-under has been requested. The window is tiled with its background (except, if no background is defined, the existing screen contents are not altered) and zero or more exposure events are generated. The contents and borders of inferiors are not affected by their parent's bit-gravity. A server is permitted to ignore the specified bit-gravity and use 4mForget24m instead. 1m290m 1mX Protocol X11, Release 6.7 DRAFT0m A win-gravity of 4mUnmap24m is like 4mNorthWest24m, but the child is also unmapped when the parent is resized, and an 4mUnmapNotify0m event is generated. 4mUnmapNotify24m events are generated after the 4mConfigureNotify24m event is generated. If a sibling and a stack-mode are specified, the window is restacked as follows: 4mAbove24m The window is placed just above the sibling. 4mBelow24m The window is placed just below the sibling. 4mTopIf24m If the sibling occludes the window, then the window is placed at the top of the stack. 4mBottomIf24m If the window occludes the sibling, then the window is placed at the bottom of the stack. 4mOpposite24m If the sibling occludes the window, then the window is placed at the top of the stack. Oth- erwise, if the window occludes the sibling, then the window is placed at the bottom of the stack. If a stack-mode is specified but no sibling is specified, the window is restacked as follows: 4mAbove24m The window is placed at the top of the stack. 4mBelow24m The window is placed at the bottom of the stack. 4mTopIf24m If any sibling occludes the window, then the window is placed at the top of the stack. 4mBottomIf24m If the window occludes any sibling, then the window is placed at the bottom of the stack. 4mOpposite24m If any sibling occludes the window, then the window is placed at the top of the stack. Oth- erwise, if the window occludes any sibling, then the window is placed at the bottom of the stack. It is a 4mMatch24m error if a sibling is specified without a stack-mode or if the window is not actually a sibling. Note that the computations for 4mBottomIf24m, 4mTopIf24m, and 4mOpposite0m are performed with respect to the window's final geometry (as controlled by the other arguments to the request), not to its initial geometry. Attempts to configure a root window have no effect. 1m300m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mCirculateWindow0m 4mwindow24m: WINDOW 4mdirection24m: {4mRaiseLowest24m, 4mLowerHighest24m} |__ Errors: 4mValue24m, 4mWindow0m If some other client has selected 4mSubstructureRedirect24m on the window, then a 4mCirculateRequest24m event is generated, and no further processing is performed. Otherwise, the follow- ing is performed, and then a 4mCirculateNotify24m event is gener- ated if the window is actually restacked. For 4mRaiseLowest24m, 4mCirculateWindow24m raises the lowest mapped child (if any) that is occluded by another child to the top of the stack. For 4mLowerHighest24m, 4mCirculateWindow24m lowers the highest mapped child (if any) that occludes another child to the bottom of the stack. Exposure processing is performed on formerly obscured windows. __ | 4mGetGeometry0m 4mdrawable24m: DRAWABLE -> root: WINDOW depth: CARD8 x, y: INT16 width, height, border-width: CARD16 |__ Errors: 4mDrawable0m This request returns the root and current geometry of the drawable. The depth is the number of bits per pixel for the object. The x, y, and border-width will always be zero for pixmaps. For a window, the x and y coordinates specify the upper-left outer corner of the window relative to its par- ent's origin, and the width and height specify the inside size, not including the border. It is legal to pass an 4mInputOnly24m window as a drawable to this request. 1m310m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mQueryTree0m 4mwindow24m: WINDOW -> root: WINDOW parent: WINDOW or 4mNone0m children: LISTofWINDOW |__ Errors: 4mWindow0m This request returns the root, the parent, and the children of the window. The children are listed in bottom-to-top stacking order. __ | 4mInternAtom0m 4mname24m: STRING8 4monly-if-exists24m: BOOL -> atom: ATOM or 4mNone0m |__ Errors: 4mAlloc24m, 4mValue0m This request returns the atom for the given name. If only- if-exists is 4mFalse24m, then the atom is created if it does not exist. The string should use the ISO Latin-1 encoding. Uppercase and lowercase matter. The lifetime of an atom is not tied to the interning client. Atoms remain defined until server reset (see section 10). __ | 4mGetAtomName0m 4matom24m: ATOM -> name: STRING8 |__ Errors: 4mAtom0m This request returns the name for the given atom. 1m320m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mChangeProperty0m 4mwindow24m: WINDOW 4mproperty24m, 4mtype24m: ATOM 4mformat24m: {8, 16, 32} 4mmode24m: {4mReplace24m, 4mPrepend24m, 4mAppend24m} 4mdata24m: LISTofINT8 or LISTofINT16 or LISTofINT32 |__ Errors: 4mAlloc24m, 4mAtom24m, 4mMatch24m, 4mValue24m, 4mWindow0m This request alters the property for the specified window. The type is uninterpreted by the server. The format speci- fies whether the data should be viewed as a list of 8-bit, 16-bit, or 32-bit quantities so that the server can cor- rectly byte-swap as necessary. If the mode is 4mReplace24m, the previous property value is dis- carded. If the mode is 4mPrepend24m or 4mAppend24m, then the type and format must match the existing property value (or a 4mMatch0m error results). If the property is undefined, it is treated as defined with the correct type and format with zero-length data. For 4mPrepend24m, the data is tacked on to the beginning of the existing data, and for 4mAppend24m, it is tacked on to the end of the existing data. This request generates a 4mPropertyNotify24m event on the window. The lifetime of a property is not tied to the storing client. Properties remain until explicitly deleted, until the window is destroyed, or until server reset (see section 10). The maximum size of a property is server-dependent and may vary dynamically. __ | 4mDeleteProperty0m 4mwindow24m: WINDOW 4mproperty24m: ATOM |__ Errors: 4mAtom24m, 4mWindow0m This request deletes the property from the specified window if the property exists and generates a 4mPropertyNotify24m event on the window unless the property does not exist. 1m330m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mGetProperty0m 4mwindow24m: WINDOW 4mproperty24m: ATOM 4mtype24m: ATOM or 4mAnyPropertyType0m 4mlong-offset24m, 4mlong-length24m: CARD32 4mdelete24m: BOOL -> type: ATOM or 4mNone0m format: {0, 8, 16, 32} bytes-after: CARD32 value: LISTofINT8 or LISTofINT16 or LISTofINT32 |__ Errors: 4mAtom24m, 4mValue24m, 4mWindow0m If the specified property does not exist for the specified window, then the return type is 4mNone24m, the format and bytes- after are zero, and the value is empty. The delete argument is ignored in this case. If the specified property exists but its type does not match the specified type, then the return type is the actual type of the property, the format is the actual format of the property (never zero), the bytes-after is the length of the property in bytes (even if the format is 16 or 32), and the value is empty. The delete argument is ignored in this case. If the specified property exists and either 4mAnyPropertyType24m is specified or the speci- fied type matches the actual type of the property, then the return type is the actual type of the property, the format is the actual format of the property (never zero), and the bytes-after and value are as follows, given: N = actual length of the stored property in bytes (even if the format is 16 or 32) I = 4 * long-offset T = N - I L = MINIMUM(T, 4 * long-length) A = N - (I + L) The returned value starts at byte index I in the property (indexing from 0), and its length in bytes is L. However, it is a 4mValue24m error if long-offset is given such that L is negative. The value of bytes-after is A, giving the number of trailing unread bytes in the stored property. If delete is 4mTrue24m and the bytes-after is zero, the property is also deleted from the window, and a 4mPropertyNotify24m event is gen- erated on the window. 1m340m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mRotateProperties0m 4mwindow24m: WINDOW 4mdelta24m: INT16 4mproperties24m: LISTofATOM |__ Errors: 4mAtom24m, 4mMatch24m, 4mWindow0m If the property names in the list are viewed as being num- bered starting from zero, and there are N property names in the list, then the value associated with property name I becomes the value associated with property name (I + delta) mod N, for all I from zero to N - 1. The effect is to rotate the states by delta places around the virtual ring of property names (right for positive delta, left for negative delta). If delta mod N is nonzero, a 4mPropertyNotify24m event is gener- ated for each property in the order listed. If an atom occurs more than once in the list or no property with that name is defined for the window, a 4mMatch24m error is generated. If an 4mAtom24m or 4mMatch24m error is generated, no prop- erties are changed. __ | 4mListProperties0m 4mwindow24m: WINDOW -> atoms: LISTofATOM |__ Errors: 4mWindow0m This request returns the atoms of properties currently defined on the window. __ | 4mSetSelectionOwner0m 4mselection24m: ATOM 4mowner24m: WINDOW or 4mNone0m 4mtime24m: TIMESTAMP or 4mCurrentTime0m |__ Errors: 4mAtom24m, 4mWindow0m 1m350m 1mX Protocol X11, Release 6.7 DRAFT0m This request changes the owner, owner window, and last- change time of the specified selection. This request has no effect if the specified time is earlier than the current last-change time of the specified selection or is later than the current server time. Otherwise, the last-change time is set to the specified time with 4mCurrentTime24m replaced by the current server time. If the owner window is specified as 4mNone24m, then the owner of the selection becomes 4mNone24m (that is, no owner). Otherwise, the owner of the selection becomes the client executing the request. If the new owner (whether a client or 4mNone24m) is not the same as the current owner and the current owner is not 4mNone24m, then the current owner is sent a 4mSelectionClear24m event. If the client that is the owner of a selection is later ter- minated (that is, its connection is closed) or if the owner window it has specified in the request is later destroyed, then the owner of the selection automatically reverts to 4mNone24m, but the last-change time is not affected. The selection atom is uninterpreted by the server. The owner window is returned by the 4mGetSelectionOwner24m request and is reported in 4mSelectionRequest24m and 4mSelectionClear0m events. Selections are global to the server. __ | 4mGetSelectionOwner0m 4mselection24m: ATOM -> owner: WINDOW or 4mNone0m |__ Errors: 4mAtom0m This request returns the current owner window of the speci- fied selection, if any. If 4mNone24m is returned, then there is no owner for the selection. 1m360m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mConvertSelection0m 4mselection24m, 4mtarget24m: ATOM 4mproperty24m: ATOM or 4mNone0m 4mrequestor24m: WINDOW 4mtime24m: TIMESTAMP or 4mCurrentTime0m |__ Errors: 4mAtom24m, 4mWindow0m If the specified selection has an owner, the server sends a 4mSelectionRequest24m event to that owner. If no owner for the specified selection exists, the server generates a 4mSelec-0m 4mtionNotify24m event to the requestor with property 4mNone24m. The arguments are passed on unchanged in either of the events. __ | 4mSendEvent0m 4mdestination24m: WINDOW or 4mPointerWindow24m or 4mInputFocus0m 4mpropagate24m: BOOL 4mevent-mask24m: SETofEVENT 4mevent24m: |__ Errors: 4mValue24m, 4mWindow0m If 4mPointerWindow24m is specified, destination is replaced with the window that the pointer is in. If 4mInputFocus24m is speci- fied and the focus window contains the pointer, destination is replaced with the window that the pointer is in. Other- wise, destination is replaced with the focus window. If the event-mask is the empty set, then the event is sent to the client that created the destination window. If that client no longer exists, no event is sent. If propagate is 4mFalse24m, then the event is sent to every client selecting on destination any of the event types in event-mask. If propagate is 4mTrue24m and no clients have selected on desti- nation any of the event types in event-mask, then destina- tion is replaced with the closest ancestor of destination for which some client has selected a type in event-mask and no intervening window has that type in its do-not-propagate- mask. If no such window exists or if the window is an ancestor of the focus window and 4mInputFocus24m was originally specified as the destination, then the event is not sent to any clients. Otherwise, the event is reported to every client selecting on the final destination any of the types specified in event-mask. 1m370m 1mX Protocol X11, Release 6.7 DRAFT0m The event code must be one of the core events or one of the events defined by an extension (or a 4mValue24m error results) so that the server can correctly byte-swap the contents as nec- essary. The contents of the event are otherwise unaltered and unchecked by the server except to force on the most sig- nificant bit of the event code and to set the sequence num- ber in the event correctly. Active grabs are ignored for this request. __ | 4mGrabPointer0m 4mgrab-window24m: WINDOW 4mowner-events24m: BOOL 4mevent-mask24m: SETofPOINTEREVENT 4mpointer-mode24m, 4mkeyboard-mode24m: {4mSynchronous24m, 4mAsynchronous24m} 4mconfine-to24m: WINDOW or 4mNone0m 4mcursor24m: CURSOR or 4mNone0m 4mtime24m: TIMESTAMP or 4mCurrentTime0m -> status: {4mSuccess24m, 4mAlreadyGrabbed24m, 4mFrozen24m, 4mInvalidTime24m, 4mNotViewable24m} |__ Errors: 4mCursor24m, 4mValue24m, 4mWindow0m This request actively grabs control of the pointer. Further pointer events are only reported to the grabbing client. The request overrides any active pointer grab by this client. If owner-events is 4mFalse24m, all generated pointer events are reported with respect to grab-window and are only reported if selected by event-mask. If owner-events is 4mTrue24m and a generated pointer event would normally be reported to this client, it is reported normally. Otherwise, the event is reported with respect to the grab-window and is only reported if selected by event-mask. For either value of owner-events, unreported events are simply discarded. If pointer-mode is 4mAsynchronous24m, pointer event processing continues normally. If the pointer is currently frozen by this client, then processing of pointer events is resumed. If pointer-mode is 4mSynchronous24m, the state of the pointer (as seen by means of the protocol) appears to freeze, and no further pointer events are generated by the server until the grabbing client issues a releasing 4mAllowEvents24m request or until the pointer grab is released. Actual pointer changes are not lost while the pointer is frozen. They are simply queued for later processing. 1m380m 1mX Protocol X11, Release 6.7 DRAFT0m If keyboard-mode is 4mAsynchronous24m, keyboard event processing is unaffected by activation of the grab. If keyboard-mode is 4mSynchronous24m, the state of the keyboard (as seen by means of the protocol) appears to freeze, and no further keyboard events are generated by the server until the grabbing client issues a releasing 4mAllowEvents24m request or until the pointer grab is released. Actual keyboard changes are not lost while the keyboard is frozen. They are simply queued for later processing. If a cursor is specified, then it is displayed regardless of what window the pointer is in. If no cursor is specified, then when the pointer is in grab-window or one of its sub- windows, the normal cursor for that window is displayed. Otherwise, the cursor for grab-window is displayed. If a confine-to window is specified, then the pointer will be restricted to stay contained in that window. The con- fine-to window need have no relationship to the grab-window. If the pointer is not initially in the confine-to window, then it is warped automatically to the closest edge (and enter/leave events are generated normally) just before the grab activates. If the confine-to window is subsequently reconfigured, the pointer will be warped automatically as necessary to keep it contained in the window. This request generates 4mEnterNotify24m and 4mLeaveNotify24m events. The request fails with status 4mAlreadyGrabbed24m if the pointer is actively grabbed by some other client. The request fails with status 4mFrozen24m if the pointer is frozen by an active grab of another client. The request fails with status 4mNotViewable24m if grab-window or confine-to window is not view- able or if the confine-to window lies completely outside the boundaries of the root window. The request fails with sta- tus 4mInvalidTime24m if the specified time is earlier than the last-pointer-grab time or later than the current server time. Otherwise, the last-pointer-grab time is set to the specified time, with 4mCurrentTime24m replaced by the current server time. __ | 4mUngrabPointer0m |__ 4mtime24m: TIMESTAMP or 4mCurrentTime0m This request releases the pointer if this client has it actively grabbed (from either 4mGrabPointer24m or 4mGrabButton24m or from a normal button press) and releases any queued events. The request has no effect if the specified time is earlier than the last-pointer-grab time or is later than the current server time. 1m390m 1mX Protocol X11, Release 6.7 DRAFT0m This request generates 4mEnterNotify24m and 4mLeaveNotify24m events. An 4mUngrabPointer24m request is performed automatically if the event window or confine-to window for an active pointer grab becomes not viewable or if window reconfiguration causes the confine-to window to lie completely outside the boundaries of the root window. __ | 4mGrabButton0m 4mmodifiers24m: SETofKEYMASK or 4mAnyModifier0m 4mbutton24m: BUTTON or 4mAnyButton0m 4mgrab-window24m: WINDOW 4mowner-events24m: BOOL 4mevent-mask24m: SETofPOINTEREVENT 4mpointer-mode24m, 4mkeyboard-mode24m: {4mSynchronous24m, 4mAsynchronous24m} 4mconfine-to24m: WINDOW or 4mNone0m 4mcursor24m: CURSOR or 4mNone0m |__ Errors: 4mAccess24m, 4mCursor24m, 4mValue24m, 4mWindow0m This request establishes a passive grab. In the future, the pointer is actively grabbed as described in 4mGrabPointer24m, the last-pointer-grab time is set to the time at which the but- ton was pressed (as transmitted in the 4mButtonPress24m event), and the 4mButtonPress24m event is reported if all of the follow- ing conditions are true: · The pointer is not grabbed and the specified button is logically pressed when the specified modifier keys are logically down, and no other buttons or modifier keys are logically down. · The grab-window contains the pointer. · The confine-to window (if any) is viewable. · A passive grab on the same button/key combination does not exist on any ancestor of grab-window. The interpretation of the remaining arguments is the same as for 4mGrabPointer24m. The active grab is terminated automati- cally when the logical state of the pointer has all buttons released, independent of the logical state of modifier keys. Note that the logical state of a device (as seen by means of the protocol) may lag the physical state if device event processing is frozen. This request overrides all previous passive grabs by the same client on the same button/key combinations on the same window. A modifier of 4mAnyModifier24m is equivalent to issuing 1m400m 1mX Protocol X11, Release 6.7 DRAFT0m the request for all possible modifier combinations (includ- ing the combination of no modifiers). It is not required that all specified modifiers have currently assigned key- codes. A button of 4mAnyButton24m is equivalent to issuing the request for all possible buttons. Otherwise, it is not required that the button specified currently be assigned to a physical button. An 4mAccess24m error is generated if some other client has already issued a 4mGrabButton24m request with the same button/key combination on the same window. When using 4mAnyModifier24m or 4mAnyButton24m, the request fails completely (no grabs are estab- lished), and an 4mAccess24m error is generated if there is a con- flicting grab for any combination. The request has no effect on an active grab. __ | 4mUngrabButton0m 4mmodifiers24m: SETofKEYMASK or 4mAnyModifier0m 4mbutton24m: BUTTON or 4mAnyButton0m 4mgrab-window24m: WINDOW |__ Errors: 4mValue24m, 4mWindow0m This request releases the passive button/key combination on the specified window if it was grabbed by this client. A modifiers argument of 4mAnyModifier24m is equivalent to issuing the request for all possible modifier combinations (includ- ing the combination of no modifiers). A button of 4mAnyButton0m is equivalent to issuing the request for all possible but- tons. The request has no effect on an active grab. __ | 4mChangeActivePointerGrab0m 4mevent-mask24m: SETofPOINTEREVENT 4mcursor24m: CURSOR or 4mNone0m 4mtime24m: TIMESTAMP or 4mCurrentTime0m |__ Errors: 4mCursor24m, 4mValue0m This request changes the specified dynamic parameters if the pointer is actively grabbed by the client and the specified time is no earlier than the last-pointer-grab time and no later than the current server time. The interpretation of event-mask and cursor are the same as in 4mGrabPointer24m. This request has no effect on the parameters of any passive grabs established with 4mGrabButton24m. 1m410m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mGrabKeyboard0m 4mgrab-window24m: WINDOW 4mowner-events24m: BOOL 4mpointer-mode24m, 4mkeyboard-mode24m: {4mSynchronous24m, 4mAsynchronous24m} 4mtime24m: TIMESTAMP or 4mCurrentTime0m -> status: {4mSuccess24m, 4mAlreadyGrabbed24m, 4mFrozen24m, 4mInvalidTime24m, 4mNotViewable24m} |__ Errors: 4mValue24m, 4mWindow0m This request actively grabs control of the keyboard. Fur- ther key events are reported only to the grabbing client. This request overrides any active keyboard grab by this client. If owner-events is 4mFalse24m, all generated key events are reported with respect to grab-window. If owner-events is 4mTrue24m and if a generated key event would normally be reported to this client, it is reported normally. Otherwise, the event is reported with respect to the grab-window. Both 4mKeyPress24m and 4mKeyRelease24m events are always reported, indepen- dent of any event selection made by the client. If keyboard-mode is 4mAsynchronous24m, keyboard event processing continues normally. If the keyboard is currently frozen by this client, then processing of keyboard events is resumed. If keyboard-mode is 4mSynchronous24m, the state of the keyboard (as seen by means of the protocol) appears to freeze. No further keyboard events are generated by the server until the grabbing client issues a releasing 4mAllowEvents24m request or until the keyboard grab is released. Actual keyboard changes are not lost while the keyboard is frozen. They are simply queued for later processing. If pointer-mode is 4mAsynchronous24m, pointer event processing is unaffected by activation of the grab. If pointer-mode is 4mSynchronous24m, the state of the pointer (as seen by means of the protocol) appears to freeze. No further pointer events are generated by the server until the grabbing client issues a releasing 4mAllowEvents24m request or until the keyboard grab is released. Actual pointer changes are not lost while the pointer is frozen. They are simply queued for later pro- cessing. This request generates 4mFocusIn24m and 4mFocusOut24m events. The request fails with status 4mAlreadyGrabbed24m if the keyboard is actively grabbed by some other client. The request fails with status 4mFrozen24m if the keyboard is frozen by an active 1m420m 1mX Protocol X11, Release 6.7 DRAFT0m grab of another client. The request fails with status 4mNotViewable24m if grab-window is not viewable. The request fails with status 4mInvalidTime24m if the specified time is ear- lier than the last-keyboard-grab time or later than the cur- rent server time. Otherwise, the last-keyboard-grab time is set to the specified time with 4mCurrentTime24m replaced by the current server time. __ | 4mUngrabKeyboard0m |__ 4mtime24m: TIMESTAMP or 4mCurrentTime0m This request releases the keyboard if this client has it actively grabbed (as a result of either 4mGrabKeyboard24m or 4mGrabKey24m) and releases any queued events. The request has no effect if the specified time is earlier than the last-key- board-grab time or is later than the current server time. This request generates 4mFocusIn24m and 4mFocusOut24m events. An 4mUngrabKeyboard24m is performed automatically if the event window for an active keyboard grab becomes not viewable. __ | 4mGrabKey0m 4mkey24m: KEYCODE or 4mAnyKey0m 4mmodifiers24m: SETofKEYMASK or 4mAnyModifier0m 4mgrab-window24m: WINDOW 4mowner-events24m: BOOL 4mpointer-mode24m, 4mkeyboard-mode24m: {4mSynchronous24m, 4mAsynchronous24m} |__ Errors: 4mAccess24m, 4mValue24m, 4mWindow0m This request establishes a passive grab on the keyboard. In the future, the keyboard is actively grabbed as described in 4mGrabKeyboard24m, the last-keyboard-grab time is set to the time at which the key was pressed (as transmitted in the 4mKeyPress0m event), and the 4mKeyPress24m event is reported if all of the following conditions are true: · The keyboard is not grabbed and the specified key (which can itself be a modifier key) is logically pressed when the specified modifier keys are logically down, and no other modifier keys are logically down. · Either the grab-window is an ancestor of (or is) the focus window, or the grab-window is a descendent of the focus window and contains the pointer. 1m430m 1mX Protocol X11, Release 6.7 DRAFT0m · A passive grab on the same key combination does not exist on any ancestor of grab-window. The interpretation of the remaining arguments is the same as for 4mGrabKeyboard24m. The active grab is terminated automati- cally when the logical state of the keyboard has the speci- fied key released, independent of the logical state of modi- fier keys. Note that the logical state of a device (as seen by means of the protocol) may lag the physical state if device event processing is frozen. This request overrides all previous passive grabs by the same client on the same key combinations on the same window. A modifier of 4mAnyModifier24m is equivalent to issuing the request for all possible modifier combinations (including the combination of no modifiers). It is not required that all modifiers specified have currently assigned keycodes. A key of 4mAnyKey24m is equivalent to issuing the request for all possible keycodes. Otherwise, the key must be in the range specified by min-keycode and max-keycode in the connection setup (or a 4mValue24m error results). An 4mAccess24m error is generated if some other client has issued a 4mGrabKey24m with the same key combination on the same window. When using 4mAnyModifier24m or 4mAnyKey24m, the request fails com- pletely (no grabs are established), and an 4mAccess24m error is generated if there is a conflicting grab for any combina- tion. __ | 4mUngrabKey0m 4mkey24m: KEYCODE or 4mAnyKey0m 4mmodifiers24m: SETofKEYMASK or 4mAnyModifier0m 4mgrab-window24m: WINDOW |__ Errors: 4mValue24m, 4mWindow0m This request releases the key combination on the specified window if it was grabbed by this client. A modifiers argu- ment of 4mAnyModifier24m is equivalent to issuing the request for all possible modifier combinations (including the combina- tion of no modifiers). A key of 4mAnyKey24m is equivalent to issuing the request for all possible keycodes. This request has no effect on an active grab. 1m440m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mAllowEvents0m 4mmode24m: {4mAsyncPointer24m, 4mSyncPointer24m, 4mReplayPointer24m, 4mAsyncKey-0m 4mboard24m, 4mSyncKeyboard24m, 4mReplayKeyboard24m, 4mAsyncBoth24m, 4mSyncBoth24m} 4mtime24m: TIMESTAMP or 4mCurrentTime0m |__ Errors: 4mValue0m This request releases some queued events if the client has caused a device to freeze. The request has no effect if the specified time is earlier than the last-grab time of the most recent active grab for the client or if the specified time is later than the current server time. For 4mAsyncPointer24m, if the pointer is frozen by the client, pointer event processing continues normally. If the pointer is frozen twice by the client on behalf of two separate grabs, 4mAsyncPointer24m thaws for both. 4mAsyncPointer24m has no effect if the pointer is not frozen by the client, but the pointer need not be grabbed by the client. For 4mSyncPointer24m, if the pointer is frozen and actively grabbed by the client, pointer event processing continues normally until the next 4mButtonPress24m or 4mButtonRelease24m event is reported to the client, at which time the pointer again appears to freeze. However, if the reported event causes the pointer grab to be released, then the pointer does not freeze. 4mSyncPointer24m has no effect if the pointer is not frozen by the client or if the pointer is not grabbed by the client. For 4mReplayPointer24m, if the pointer is actively grabbed by the client and is frozen as the result of an event having been sent to the client (either from the activation of a 4mGrabBut-0m 4mton24m or from a previous 4mAllowEvents24m with mode 4mSyncPointer24m but not from a 4mGrabPointer24m), then the pointer grab is released and that event is completely reprocessed, this time ignoring any passive grabs at or above (towards the root) the grab- window of the grab just released. The request has no effect if the pointer is not grabbed by the client or if the pointer is not frozen as the result of an event. For 4mAsyncKeyboard24m, if the keyboard is frozen by the client, keyboard event processing continues normally. If the key- board is frozen twice by the client on behalf of two sepa- rate grabs, 4mAsyncKeyboard24m thaws for both. 4mAsyncKeyboard24m has no effect if the keyboard is not frozen by the client, but the keyboard need not be grabbed by the client. For 4mSyncKeyboard24m, if the keyboard is frozen and actively grabbed by the client, keyboard event processing continues 1m450m 1mX Protocol X11, Release 6.7 DRAFT0m normally until the next 4mKeyPress24m or 4mKeyRelease24m event is reported to the client, at which time the keyboard again appears to freeze. However, if the reported event causes the keyboard grab to be released, then the keyboard does not freeze. 4mSyncKeyboard24m has no effect if the keyboard is not frozen by the client or if the keyboard is not grabbed by the client. For 4mReplayKeyboard24m, if the keyboard is actively grabbed by the client and is frozen as the result of an event having been sent to the client (either from the activation of a 4mGrabKey24m or from a previous 4mAllowEvents24m with mode 4mSyncKey-0m 4mboard24m but not from a 4mGrabKeyboard24m), then the keyboard grab is released and that event is completely reprocessed, this time ignoring any passive grabs at or above (towards the root) the grab-window of the grab just released. The request has no effect if the keyboard is not grabbed by the client or if the keyboard is not frozen as the result of an event. For 4mSyncBoth24m, if both pointer and keyboard are frozen by the client, event processing (for both devices) continues nor- mally until the next 4mButtonPress24m, 4mButtonRelease24m, 4mKeyPress24m, or 4mKeyRelease24m event is reported to the client for a grabbed device (button event for the pointer, key event for the key- board), at which time the devices again appear to freeze. However, if the reported event causes the grab to be released, then the devices do not freeze (but if the other device is still grabbed, then a subsequent event for it will still cause both devices to freeze). 4mSyncBoth24m has no effect unless both pointer and keyboard are frozen by the client. If the pointer or keyboard is frozen twice by the client on behalf of two separate grabs, 4mSyncBoth24m thaws for both (but a subsequent freeze for 4mSyncBoth24m will only freeze each device once). For 4mAsyncBoth24m, if the pointer and the keyboard are frozen by the client, event processing for both devices continues nor- mally. If a device is frozen twice by the client on behalf of two separate grabs, 4mAsyncBoth24m thaws for both. 4mAsyncBoth0m has no effect unless both pointer and keyboard are frozen by the client. 4mAsyncPointer24m, 4mSyncPointer24m, and 4mReplayPointer24m have no effect on processing of keyboard events. 4mAsyncKeyboard24m, 4mSyncKey-0m 4mboard24m, and 4mReplayKeyboard24m have no effect on processing of pointer events. It is possible for both a pointer grab and a keyboard grab to be active simultaneously (by the same or different clients). When a device is frozen on behalf of either grab, no event processing is performed for the device. It is pos- sible for a single device to be frozen because of both grabs. In this case, the freeze must be released on behalf 1m460m 1mX Protocol X11, Release 6.7 DRAFT0m of both grabs before events can again be processed. If a device is frozen twice by a single client, then a single 4mAllowEvents24m releases both. __ |__ 4mGrabServer0m This request disables processing of requests and close-downs on all connections other than the one this request arrived on. __ |__ 4mUngrabServer0m This request restarts processing of requests and close-downs on other connections. __ | 4mQueryPointer0m 4mwindow24m: WINDOW -> root: WINDOW child: WINDOW or 4mNone0m same-screen: BOOL root-x, root-y, win-x, win-y: INT16 mask: SETofKEYBUTMASK |__ Errors: 4mWindow0m The root window the pointer is logically on and the pointer coordinates relative to the root's origin are returned. If same-screen is 4mFalse24m, then the pointer is not on the same screen as the argument window, child is 4mNone24m, and win-x and win-y are zero. If same-screen is 4mTrue24m, then win-x and win- y are the pointer coordinates relative to the argument win- dow's origin, and child is the child containing the pointer, if any. The current logical state of the modifier keys and the buttons are also returned. Note that the logical state of a device (as seen by means of the protocol) may lag the physical state if device event processing is frozen. 1m470m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mGetMotionEvents0m 4mstart24m, 4mstop24m: TIMESTAMP or 4mCurrentTime0m 4mwindow24m: WINDOW -> events: LISTofTIMECOORD where: TIMECOORD: [x, y: INT16 time: TIMESTAMP] |__ Errors: 4mWindow0m This request returns all events in the motion history buffer that fall between the specified start and stop times (inclu- sive) and that have coordinates that lie within (including borders) the specified window at its present placement. The x and y coordinates are reported relative to the origin of the window. If the start time is later than the stop time or if the start time is in the future, no events are returned. If the stop time is in the future, it is equivalent to specifying 4mCurrentTime24m. __ | 4mTranslateCoordinates0m 4msrc-window24m, 4mdst-window24m: WINDOW 4msrc-x24m, 4msrc-y24m: INT16 -> same-screen: BOOL child: WINDOW or 4mNone0m dst-x, dst-y: INT16 |__ Errors: 4mWindow0m The src-x and src-y coordinates are taken relative to src- window's origin and are returned as dst-x and dst-y coordi- nates relative to dst-window's origin. If same-screen is 4mFalse24m, then src-window and dst-window are on different screens, and dst-x and dst-y are zero. If the coordinates are contained in a mapped child of dst-window, then that child is returned. 1m480m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mWarpPointer0m 4msrc-window24m: WINDOW or 4mNone0m 4mdst-window24m: WINDOW or 4mNone0m 4msrc-x24m, 4msrc-y24m: INT16 4msrc-width24m, 4msrc-height24m: CARD16 4mdst-x24m, 4mdst-y24m: INT16 |__ Errors: 4mWindow0m If dst-window is 4mNone24m, this request moves the pointer by offsets [dst-x, dst-y] relative to the current position of the pointer. If dst-window is a window, this request moves the pointer to [dst-x, dst-y] relative to dst-window's ori- gin. However, if src-window is not 4mNone24m, the move only takes place if src-window contains the pointer and the pointer is contained in the specified rectangle of src-win- dow. The src-x and src-y coordinates are relative to src-window's origin. If src-height is zero, it is replaced with the cur- rent height of src-window minus src-y. If src-width is zero, it is replaced with the current width of src-window minus src-x. This request cannot be used to move the pointer outside the confine-to window of an active pointer grab. An attempt will only move the pointer as far as the closest edge of the confine-to window. This request will generate events just as if the user had instantaneously moved the pointer. __ | 4mSetInputFocus0m 4mfocus24m: WINDOW or 4mPointerRoot24m or 4mNone0m 4mrevert-to24m: {4mParent24m, 4mPointerRoot24m, 4mNone24m} 4mtime24m: TIMESTAMP or 4mCurrentTime0m |__ Errors: 4mMatch24m, 4mValue24m, 4mWindow0m This request changes the input focus and the last-focus- change time. The request has no effect if the specified time is earlier than the current last-focus-change time or is later than the current server time. Otherwise, the last- focus-change time is set to the specified time with 4mCurrent-0m 4mTime24m replaced by the current server time. If 4mNone24m is specified as the focus, all keyboard events are discarded until a new focus window is set. In this case, 1m490m 1mX Protocol X11, Release 6.7 DRAFT0m the revert-to argument is ignored. If a window is specified as the focus, it becomes the key- board's focus window. If a generated keyboard event would normally be reported to this window or one of its inferiors, the event is reported normally. Otherwise, the event is reported with respect to the focus window. If 4mPointerRoot24m is specified as the focus, the focus window is dynamically taken to be the root window of whatever screen the pointer is on at each keyboard event. In this case, the revert-to argument is ignored. This request generates 4mFocusIn24m and 4mFocusOut24m events. The specified focus window must be viewable at the time of the request (or a 4mMatch24m error results). If the focus window later becomes not viewable, the new focus window depends on the revert-to argument. If revert-to is 4mParent24m, the focus reverts to the parent (or the closest viewable ancestor) and the new revert-to value is taken to be 4mNone24m. If revert-to is 4mPointerRoot24m or 4mNone24m, the focus reverts to that value. When the focus reverts, 4mFocusIn24m and 4mFocusOut24m events are gen- erated, but the last-focus-change time is not affected. __ | 4mGetInputFocus0m -> focus: WINDOW or 4mPointerRoot24m or 4mNone0m |__ revert-to: {4mParent24m, 4mPointerRoot24m, 4mNone24m} This request returns the current focus state. __ | 4mQueryKeymap0m -> |__ keys: LISTofCARD8 This request returns a bit vector for the logical state of the keyboard. Each bit set to 1 indicates that the corre- sponding key is currently pressed. The vector is repre- sented as 32 bytes. Byte N (from 0) contains the bits for keys 8N to 8N + 7 with the least significant bit in the byte representing key 8N. Note that the logical state of a device (as seen by means of the protocol) may lag the physi- cal state if device event processing is frozen. 1m500m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mOpenFont0m 4mfid24m: FONT 4mname24m: STRING8 |__ Errors: 4mAlloc24m, 4mIDChoice24m, 4mName0m This request loads the specified font, if necessary, and as- sociates identifier fid with it. The font name should use the ISO Latin-1 encoding, and uppercase and lowercase do not matter. When the characters ``?'' and ``*'' are used in a font name, a pattern match is performed and any matching font is used. In the pattern, the ``?'' character (octal value 77) will match any single character, and the ``*'' character (octal value 52) will match any number of charac- ters. A structured format for font names is specified in the X.Org standard 4mX24m 4mLogical24m 4mFont24m 4mDescription24m 4mConventions24m. Fonts are not associated with a particular screen and can be stored as a component of any graphics context. __ | 4mCloseFont0m 4mfont24m: FONT |__ Errors: 4mFont0m This request deletes the association between the resource ID and the font. The font itself will be freed when no other resource references it. 1m510m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mQueryFont0m 4mfont24m: FONTABLE -> font-info: FONTINFO char-infos: LISTofCHARINFO where: FONTINFO: [draw-direction: {4mLeftToRight24m, 4mRightToLeft24m} min-char-or-byte2, max-char-or-byte2: CARD16 min-byte1, max-byte1: CARD8 all-chars-exist: BOOL default-char: CARD16 min-bounds: CHARINFO max-bounds: CHARINFO font-ascent: INT16 font-descent: INT16 properties: LISTofFONTPROP] FONTPROP: [name: ATOM value: <32-bit-value>] CHARINFO: [left-side-bearing: INT16 right-side-bearing: INT16 character-width: INT16 ascent: INT16 descent: INT16 attributes: CARD16] |__ Errors: 4mFont0m This request returns logical information about a font. If a gcontext is given for font, the currently contained font is used. The draw-direction is just a hint and indicates whether most char-infos have a positive, 4mLeftToRight24m, or a negative, 4mRightToLeft24m, character-width metric. The core protocol defines no support for vertical text. If min-byte1 and max-byte1 are both zero, then min-char-or- byte2 specifies the linear character index corresponding to the first element of char-infos, and max-char-or-byte2 spec- ifies the linear character index of the last element. If either min-byte1 or max-byte1 are nonzero, then both min- char-or-byte2 and max-char-or-byte2 will be less than 256, and the 2-byte character index values corresponding to char- infos element N (counting from 0) are: 1m520m 1mX Protocol X11, Release 6.7 DRAFT0m byte1 = N/D + min-byte1 byte2 = N\\D + min-char-or-byte2 where: D = max-char-or-byte2 - min-char-or-byte2 + 1 / = integer division \\ = integer modulus If char-infos has length zero, then min-bounds and max- bounds will be identical, and the effective char-infos is one filled with this char-info, of length: L = D * (max-byte1 - min-byte1 + 1) That is, all glyphs in the specified linear or matrix range have the same information, as given by min-bounds (and max- bounds). If all-chars-exist is 4mTrue24m, then all characters in char-infos have nonzero bounding boxes. The default-char specifies the character that will be used when an undefined or nonexistent character is used. Note that default-char is a CARD16, not CHAR2B. For a font using 2-byte matrix format, the default-char has byte1 in the most significant byte and byte2 in the least significant byte. If the default-char itself specifies an undefined or nonex- istent character, then no printing is performed for an unde- fined or nonexistent character. The min-bounds and max-bounds contain the minimum and maxi- mum values of each individual CHARINFO component over all char-infos (ignoring nonexistent characters). The bounding box of the font (that is, the smallest rectangle enclosing the shape obtained by superimposing all characters at the same origin [x,y]) has its upper-left coordinate at: [x + min-bounds.left-side-bearing, y - max-bounds.ascent] with a width of: max-bounds.right-side-bearing - min-bounds.left-side-bearing and a height of: max-bounds.ascent + max-bounds.descent The font-ascent is the logical extent of the font above the baseline and is used for determining line spacing. Specific characters may extend beyond this. The font-descent is the 1m530m 1mX Protocol X11, Release 6.7 DRAFT0m logical extent of the font at or below the baseline and is used for determining line spacing. Specific characters may extend beyond this. If the baseline is at Y-coordinate y, then the logical extent of the font is inclusive between the Y-coordinate values (y - font-ascent) and (y + font-descent - 1). A font is not guaranteed to have any properties. The inter- pretation of the property value (for example, INT32, CARD32) must be derived from 4ma24m 4mpriori24m knowledge of the property. A basic set of font properties is specified in the X.Org stan- dard 4mX24m 4mLogical24m 4mFont24m 4mDescription24m 4mConventions24m. For a character origin at [x,y], the bounding box of a char- acter (that is, the smallest rectangle enclosing the charac- ter's shape), described in terms of CHARINFO components, is a rectangle with its upper-left corner at: [x + left-side-bearing, y - ascent] with a width of: right-side-bearing - left-side-bearing and a height of: ascent + descent and the origin for the next character is defined to be: [x + character-width, y] Note that the baseline is logically viewed as being just below nondescending characters (when descent is zero, only pixels with Y-coordinates less than y are drawn) and that the origin is logically viewed as being coincident with the left edge of a nonkerned character (when left-side-bearing is zero, no pixels with X-coordinate less than x are drawn). Note that CHARINFO metric values can be negative. A nonexistent character is represented with all CHARINFO components zero. The interpretation of the per-character attributes field is server-dependent. 1m540m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mQueryTextExtents0m 4mfont24m: FONTABLE 4mstring24m: STRING16 -> draw-direction: {4mLeftToRight24m, 4mRightToLeft24m} font-ascent: INT16 font-descent: INT16 overall-ascent: INT16 overall-descent: INT16 overall-width: INT32 overall-left: INT32 overall-right: INT32 |__ Errors: 4mFont0m This request returns the logical extents of the specified string of characters in the specified font. If a gcontext is given for font, the currently contained font is used. The draw-direction, font-ascent, and font-descent are the same as described in 4mQueryFont24m. The overall-ascent is the maximum of the ascent metrics of all characters in the string, and the overall-descent is the maximum of the descent metrics. The overall-width is the sum of the char- acter-width metrics of all characters in the string. For each character in the string, let W be the sum of the char- acter-width metrics of all characters preceding it in the string, let L be the left-side-bearing metric of the charac- ter plus W, and let R be the right-side-bearing metric of the character plus W. The overall-left is the minimum L of all characters in the string, and the overall-right is the maximum R. For fonts defined with linear indexing rather than 2-byte matrix indexing, the server will interpret each CHAR2B as a 16-bit number that has been transmitted most significant byte first (that is, byte1 of the CHAR2B is taken as the most significant byte). Characters with all zero metrics are ignored. If the font has no defined default-char, then undefined characters in the string are also ignored. 1m550m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mListFonts0m 4mpattern24m: STRING8 4mmax-names24m: CARD16 -> |__ names: LISTofSTRING8 This request returns a list of available font names (as con- trolled by the font search path; see 4mSetFontPath24m request) that match the pattern. At most, max-names names will be returned. The pattern should use the ISO Latin-1 encoding, and uppercase and lowercase do not matter. In the pattern, the ``?'' character (octal value 77) will match any single character, and the ``*'' character (octal value 52) will match any number of characters. The returned names are in lowercase. __ | 4mListFontsWithInfo0m 4mpattern24m: STRING8 4mmax-names24m: CARD16 -> name: STRING8 info FONTINFO replies-hint: CARD32 where: |__ FONTINFO: This request is similar to 4mListFonts24m, but it also returns information about each font. The information returned for each font is identical to what 4mQueryFont24m would return except that the per-character metrics are not returned. Note that this request can generate multiple replies. With each reply, replies-hint may provide an indication of how many more fonts will be returned. This number is a hint only and may be larger or smaller than the number of fonts actually returned. A zero value does not guarantee that no more fonts will be returned. After the font replies, a reply with a zero-length name is sent to indicate the end of the reply sequence. 1m560m 1mX Protocol X11, Release 6.7 DRAFT0m __ | 4mSetFontPath0m 4mpath24m: LISTofSTRING8 |__ Errors: 4mValue0m This request defines the search path for font lookup. There is only one search path per server, not one per client. The interpretation of the strings is operating-system-dependent, but the strings are intended to specify directories to be searched in the order listed. Setting the path to the empty list restores the default path defined for the server. As a side effect of executing this request, the server is guaranteed to flush all cached information about fonts for which there currently are no explicit resource IDs allo- cated. The meaning of an error from this request is system spe- cific. __ | 4mGetFontPath0m -> |__ path: LISTofSTRING8 This request returns the current search path for fonts. __ | 4mCreatePixmap0m 4mpid24m: PIXMAP 4mdrawable24m: DRAWABLE 4mdepth24m: CARD8 4mwidth24m, 4mheight24m: CARD16 |__ Errors: 4mAlloc24m, 4mDrawable24m, 4mIDChoice24m, 4mValue0m This request creates a pixmap and assigns the identifier pid to it. The width and height must be nonzero (or a 4mValue0m error results). The depth must be one of the depths sup- ported by the root of the specified drawable (or a 4mValue0m error results). The initial contents of the pixmap are undefined. 1m570m 1mX Protocol X11, Release 6.7 DRAFT0m It is legal to pass an 4mInputOnly24m window as a drawable to this request. __ | 4mFreePixmap0m 4mpixmap24m: PIXMAP |__ Errors: 4mPixmap0m This request deletes the association between the resource ID and the pixmap. The pixmap storage will be freed when no other resource references it. __ | 4mCreateGC0m 4mcid24m: GCONTEXT 4mdrawable24m: DRAWABLE 4mvalue-mask24m: BITMASK 4mvalue-list24m: LISTofVALUE Errors: 4mAlloc24m, 4mDrawable24m, 4mFont24m, 4mIDChoice24m, 4mMatch24m, 4mPixmap24m, |__ 4mValue0m This request creates a graphics context and assigns the identifier cid to it. The gcontext can be used with any destination drawable having the same root and depth as the specified drawable; use with other drawables results in a 4mMatch24m error. The value-mask and value-list specify which components are to be explicitly initialized. The context components are: ------------------------------------------------------------- 1mComponent Type0m ------------------------------------------------------------- function {4mClear24m, 4mAnd24m, 4mAndReverse24m, 4mCopy24m, 4mAndIn-0m 4mverted24m, 4mNoOp24m, 4mXor24m, 4mOr24m, 4mNor24m, 4mEquiv24m, 4mInvert24m, 4mOrReverse24m, 4mCopy-0m 4mInverted24m, 4mOrInverted24m, 4mNand24m, 4mSet24m} plane-mask CARD32 foreground CARD32 background CARD32 line-width CARD16 line-style {4mSolid24m, 4mOnOffDash24m, 4mDoubleDash24m} cap-style {4mNotLast24m, 4mButt24m, 4mRound24m, 4mProjecting24m} join-style {4mMiter24m, 4mRound24m, 4mBevel24m} 1m580m 1mX Protocol X11, Release 6.7 DRAFT0m ------------------------------------------------------------- 1mComponent Type0m ------------------------------------------------------------- fill-style {4mSolid24m, 4mTiled24m, 4mOpaqueStippled24m, 4mStippled24m} fill-rule {4mEvenOdd24m, 4mWinding24m} arc-mode {4mChord24m, 4mPieSlice24m} tile PIXMAP stipple PIXMAP tile-stipple-x- INT16 origin tile-stipple-y- INT16 origin font FONT subwindow-mode {4mClipByChildren24m, 4mIncludeInferiors24m} graphics-expo- BOOL sures clip-x-origin INT16 clip-y-origin INT16 clip-mask PIXMAP or 4mNone0m dash-offset CARD16 dashes CARD8 ------------------------------------------------------------- In graphics operations, given a source and destination pixel, the result is computed bitwise on corresponding bits of the pixels; that is, a Boolean operation is performed in each bit plane. The plane-mask restricts the operation to a subset of planes, so the result is: ((src FUNC dst) AND plane-mask) OR (dst AND (NOT plane-mask)) Range checking is not performed on the values for fore- ground, background, or plane-mask. They are simply trun- cated to the appropriate number of bits. The meanings of the functions are: --------------------------------------- 1mFunction Operation0m --------------------------------------- 4mClear24m 0 4mAnd24m src AND dst 4mAndReverse24m src AND (NOT dst) 4mCopy24m src 4mAndInverted24m (NOT src) AND dst 4mNoOp24m dst 4mXor24m src XOR dst 4mOr24m src OR dst 4mNor24m (NOT src) AND (NOT dst) 1m590m 1mX Protocol X11, Release 6.7 DRAFT0m 4mEquiv24m (NOT src) XOR dst 4mInvert24m NOT dst 4mOrReverse24m src OR (NOT dst) 4mCopyInverted24m NOT src 4mOrInverted24m (NOT src) OR dst 4mNand24m (NOT src) OR (NOT dst) 4mSet24m 1 --------------------------------------- The line-width is measured in pixels and can be greater than or equal to one, a wide line, or the special value zero, a thin line. Wide lines are drawn centered on the path described by the graphics request. Unless otherwise specified by the join or cap style, the bounding box of a wide line with endpoints [x1, y1], [x2, y2] and width w is a rectangle with vertices at the following real coordinates: [x1-(w*sn/2), y1+(w*cs/2)], [x1+(w*sn/2), y1-(w*cs/2)], [x2-(w*sn/2), y2+(w*cs/2)], [x2+(w*sn/2), y2-(w*cs/2)] The sn is the sine of the angle of the line and cs is the cosine of the angle of the line. A pixel is part of the line (and hence drawn) if the center of the pixel is fully inside the bounding box, which is viewed as having infinite- ly thin edges. If the center of the pixel is exactly on the bounding box, it is part of the line if and only if the interior is immediately to its right (x increasing direc- tion). Pixels with centers on a horizontal edge are a spe- cial case and are part of the line if and only if the inte- rior or the boundary is immediately below (y increasing direction) and if the interior or the boundary is immedi- ately to the right (x increasing direction). Note that this description is a mathematical model describing the pixels that are drawn for a wide line and does not imply that trigonometry is required to implement such a model. Real or fixed point arithmetic is recommended for computing the cor- ners of the line endpoints for lines greater than one pixel in width. Thin lines (zero line-width) are nominally one pixel wide lines drawn using an unspecified, device-dependent algo- rithm. There are only two constraints on this algorithm. First, if a line is drawn unclipped from [x1,y1] to [x2,y2] and another line is drawn unclipped from [x1+dx,y1+dy] to [x2+dx,y2+dy], then a point [x,y] is touched by drawing the first line if and only if the point [x+dx,y+dy] is touched by drawing the second line. Second, the effective set of points comprising a line cannot be affected by clipping. Thus, a point is touched in a clipped line if and only if 1m600m 1mX Protocol X11, Release 6.7 DRAFT0m the point lies inside the clipping region and the point would be touched by the line when drawn unclipped. Note that a wide line drawn from [x1,y1] to [x2,y2] always draws the same pixels as a wide line drawn from [x2,y2] to [x1,y1], not counting cap-style and join-style. Implemen- tors are encouraged to make this property true for thin lines, but it is not required. A line-width of zero may differ from a line-width of one in which pixels are drawn. In general, drawing a thin line will be faster than drawing a wide line of width one, but thin lines may not mix well aesthetically with wide lines because of the different draw- ing algorithms. If it is desirable to obtain precise and uniform results across all displays, a client should always use a line-width of one, rather than a line-width of zero. The line-style defines which sections of a line are drawn: 4mSolid24m The full path of the line is drawn. 4mDoubleDash24m The full path of the line is drawn, but the even dashes are filled differently than the odd dashes (see fill-style), with 4mButt24m cap-style used where even and odd dashes meet. 4mOnOffDash24m Only the even dashes are drawn, and cap-style applies to all internal ends of the individual dashes (except 4mNotLast24m is treated as 4mButt24m). The cap-style defines how the endpoints of a path are drawn: 4mNotLast24m The result is equivalent to 4mButt24m, except that for a line-width of zero the final endpoint is not drawn. 4mButt24m The result is square at the endpoint (perpen- dicular to the slope of the line) with no pro- jection beyond. 4mRound24m The result is a circular arc with its diameter equal to the line-width, centered on the end- point; it is equivalent to 4mButt24m for line-width zero. 4mProjecting24m The result is square at the end, but the path continues beyond the endpoint for a distance equal to half the line-width; it is equivalent to 4mButt24m for line-width zero. The join-style defines how corners are drawn for wide lines: 4mMiter24m The outer edges of the two lines extend to meet at an angle. However, if the angle is less than 11 degrees, a 4mBevel24m join-style is used instead. 1m610m 1mX Protocol X11, Release 6.7 DRAFT0m 4mRound24m The result is a circular arc with a diameter equal to the line-width, centered on the join- point. 4mBevel24m The result is 4mButt24m endpoint styles, and then the triangular notch is filled. For a line with coincident endpoints (x1=x2, y1=y2), when the cap-style is applied to both endpoints, the semantics depends on the line-width and the cap-style: 4mNotLast24m thin This is device-dependent, but the desired effect is that nothing is drawn. 4mButt24m thin This is device-dependent, but the desired effect is that a single pixel is drawn. 4mRound24m thin This is the same as 4mButt24m/thin. 4mProjecting24m thin This is the same as 4mButt24m/thin. 4mButt24m wide Nothing is drawn. 4mRound24m wide The closed path is a circle, centered at the endpoint and with a diameter equal to the line-width. 4mProjecting24m wide The closed path is a square, aligned with the coordinate axes, centered at the end- point and with sides equal to the line- width. For a line with coincident endpoints (x1=x2, y1=y2), when the join-style is applied at one or both endpoints, the effect is as if the line was removed from the overall path. However, if the total path consists of (or is reduced to) a single point joined with itself, the effect is the same as when the cap-style is applied at both endpoints. The tile/stipple represents an infinite two-dimensional plane with the tile/stipple replicated in all dimensions. When that plane is superimposed on the drawable for use in a graphics operation, the upper-left corner of some instance of the tile/stipple is at the coordinates within the draw- able specified by the tile/stipple origin. The tile/stipple and clip origins are interpreted relative to the origin of whatever destination drawable is specified in a graphics request. The tile pixmap must have the same root and depth as the gcontext (or a 4mMatch24m error results). The stipple pixmap must have depth one and must have the same root as the gcon- text (or a 4mMatch24m error results). For fill-style 4mStippled0m (but not fill-style 4mOpaqueStippled24m), the stipple pattern is tiled in a single plane and acts as an additional clip mask to be ANDed with the clip-mask. Any size pixmap can be used for tiling or stippling, although some sizes may be faster to use than others. 1m620m 1mX Protocol X11, Release 6.7 DRAFT0m The fill-style defines the contents of the source for line, text, and fill requests. For all text and fill requests (for example, 4mPolyText824m, 4mPolyText1624m, 4mPolyFillRectangle24m, 4mFillPoly24m, and 4mPolyFillArc24m) as well as for line requests with line-style 4mSolid24m, (for example, 4mPolyLine24m, 4mPolySegment24m, 4mPolyRectangle24m, 4mPolyArc24m) and for the even dashes for line requests with line-style 4mOnOffDash24m or 4mDoubleDash24m: 4mSolid24m Foreground 4mTiled24m Tile 4mOpaqueStip-24m A tile with the same width and height as 4mpled24m stipple but with background everywhere stip- ple has a zero and with foreground everywhere stipple has a one 4mStippled24m Foreground masked by stipple For the odd dashes for line requests with line-style 4mDou-0m 4mbleDash24m: 4mSolid24m Background 4mTiled24m Same as for even dashes 4mOpaqueStip-24m Same as for even dashes 4mpled0m 4mStippled24m Background masked by stipple The dashes value allowed here is actually a simplified form of the more general patterns that can be set with 4mSetDashes24m. Specifying a value of N here is equivalent to specifying the two element list [N, N] in 4mSetDashes24m. The value must be nonzero (or a 4mValue24m error results). The meaning of dash- offset and dashes are explained in the 4mSetDashes24m request. The clip-mask restricts writes to the destination drawable. Only pixels where the clip-mask has bits set to 1 are drawn. Pixels are not drawn outside the area covered by the clip- mask or where the clip-mask has bits set to 0. The clip- mask affects all graphics requests, but it does not clip sources. The clip-mask origin is interpreted relative to the origin of whatever destination drawable is specified in a graphics request. If a pixmap is specified as the clip- mask, it must have depth 1 and have the same root as the gcontext (or a 4mMatch24m error results). If clip-mask is 4mNone24m, then pixels are always drawn, regardless of the clip origin. The clip-mask can also be set with the 4mSetClipRectangles0m request. For 4mClipByChildren24m, both source and destination windows are additionally clipped by all viewable 4mInputOutput24m children. For 4mIncludeInferiors24m, neither source nor destination window is clipped by inferiors. This will result in including sub- window contents in the source and drawing through subwindow boundaries of the destination. The use of 4mIncludeInferiors0m 1m630m 1mX Protocol X11, Release 6.7 DRAFT0m with a source or destination window of one depth with mapped inferiors of differing depth is not illegal, but the seman- tics is undefined by the core protocol. The fill-rule defines what pixels are inside (that is, are drawn) for paths given in 4mFillPoly24m requests. 4mEvenOdd24m means a point is inside if an infinite ray with the point as ori- gin crosses the path an odd number of times. For 4mWinding24m, a point is inside if an infinite ray with the point as origin crosses an unequal number of clockwise and counterclockwise directed path segments. A clockwise directed path segment is one that crosses the ray from left to right as observed from the point. A counter-clockwise segment is one that crosses the ray from right to left as observed from the point. The case where a directed line segme