1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
|
module x11.X;
import core.stdc.config;
extern (C) nothrow:
const uint X_PROTOCOL = 11; /* current protocol version */
const uint X_PROTOCOL_REVISION = 0; /* current minor version */
alias c_ulong XID;
alias c_ulong Mask;
alias c_ulong Atom;
alias c_ulong VisualID;
alias c_ulong Time;
alias XID Window;
alias XID Drawable;
alias XID Font;
alias XID Pixmap;
alias XID Cursor;
alias XID Colormap;
alias XID GContext;
alias XID KeySym;
alias ubyte KeyCode;
/*****************************************************************
* RESERVED RESOURCE AND CONSTANT DEFINITIONS
*****************************************************************/
const XID None = 0; /* universal null resource or null atom */
const XID ParentRelative = 1; /* background pixmap in CreateWindow and ChangeWindowAttributes */
const XID CopyFromParent = 0; /* border pixmap in CreateWindow and ChangeWindowAttributes special VisualID and
special window class passed to CreateWindow */
const Window PointerWindow = 0; /* destination window in SendEvent */
const Window InputFocus = 1; /* destination window in SendEvent */
const Window PointerRoot = 1; /* focus window in SetInputFocus */
const Atom AnyPropertyType = 0; /* special Atom, passed to GetProperty */
const KeyCode AnyKey = 0; /* special Key Code, passed to GrabKey */
const c_long AnyButton = 0; /* special Button Code, passed to GrabButton */
const XID AllTemporary = 0; /* special Resource ID passed to KillClient */
const Time CurrentTime = 0; /* special Time */
const KeySym NoSymbol = 0; /* special KeySym */
/*****************************************************************
* EVENT DEFINITIONS
*****************************************************************/
/* Input Event Masks. Used as event-mask window attribute and as arguments
to Grab requests. Not to be confused with event names. */
enum {
NoEventMask = 0,
KeyPressMask = 1<<0,
KeyReleaseMask = 1<<1,
ButtonPressMask = 1<<2,
ButtonReleaseMask = 1<<3,
EnterWindowMask = 1<<4,
LeaveWindowMask = 1<<5,
PointerMotionMask = 1<<6,
PointerMotionHintMask = 1<<7,
Button1MotionMask = 1<<8,
Button2MotionMask = 1<<9,
Button3MotionMask = 1<<10,
Button4MotionMask = 1<<11,
Button5MotionMask = 1<<12,
ButtonMotionMask = 1<<13,
KeymapStateMask = 1<<14,
ExposureMask = 1<<15,
VisibilityChangeMask = 1<<16,
StructureNotifyMask = 1<<17,
ResizeRedirectMask = 1<<18,
SubstructureNotifyMask = 1<<19,
SubstructureRedirectMask= 1<<20,
FocusChangeMask = 1<<21,
PropertyChangeMask = 1<<22,
ColormapChangeMask = 1<<23,
OwnerGrabButtonMask = 1<<24
}
/* Event names. Used in "type" field in XEvent structures. Not to be
confused with event masks above. They start from 2 because 0 and 1
are reserved in the protocol for errors and replies. */
enum {
KeyPress = 2,
KeyRelease = 3,
ButtonPress = 4,
ButtonRelease = 5,
MotionNotify = 6,
EnterNotify = 7,
LeaveNotify = 8,
FocusIn = 9,
FocusOut = 10,
KeymapNotify = 11,
Expose = 12,
GraphicsExpose = 13,
NoExpose = 14,
VisibilityNotify = 15,
CreateNotify = 16,
DestroyNotify = 17,
UnmapNotify = 18,
MapNotify = 19,
MapRequest = 20,
ReparentNotify = 21,
ConfigureNotify = 22,
ConfigureRequest = 23,
GravityNotify = 24,
ResizeRequest = 25,
CirculateNotify = 26,
CirculateRequest = 27,
PropertyNotify = 28,
SelectionClear = 29,
SelectionRequest = 30,
SelectionNotify = 31,
ColormapNotify = 32,
ClientMessage = 33,
MappingNotify = 34,
GenericEvent = 35,
LASTEvent = 36 /* must be bigger than any event # */
}
/* Key masks. Used as modifiers to GrabButton and GrabKey, results of QueryPointer,
state in various key-, mouse-, and button-related events. */
enum {
ShiftMask = 1<<0,
LockMask = 1<<1,
ControlMask = 1<<2,
Mod1Mask = 1<<3,
Mod2Mask = 1<<4,
Mod3Mask = 1<<5,
Mod4Mask = 1<<6,
Mod5Mask = 1<<7
}
/* modifier names. Used to build a SetModifierMapping request or
to read a GetModifierMapping request. These correspond to the
masks defined above. */
enum {
ShiftMapIndex = 0,
LockMapIndex = 1,
ControlMapIndex = 2,
Mod1MapIndex = 3,
Mod2MapIndex = 4,
Mod3MapIndex = 5,
Mod4MapIndex = 6,
Mod5MapIndex = 7
}
/* button masks. Used in same manner as Key masks above. Not to be confused
with button names below. */
enum {
Button1Mask = 1<<8,
Button2Mask = 1<<9,
Button3Mask = 1<<10,
Button4Mask = 1<<11,
Button5Mask = 1<<12,
AnyModifier = 1<<15 /* used in GrabButton, GrabKey */
}
enum {
ShiftMap = 1<<0,
LockMap = 1<<1,
ControlMap = 1<<2,
Mod1Map = 1<<3,
Mod2Map = 1<<4,
Mod3Map = 1<<5,
Mod4Map = 1<<6,
Mod5Map = 1<<7,
}
/* button names. Used as arguments to GrabButton and as detail in ButtonPress
and ButtonRelease events. Not to be confused with button masks above.
Note that 0 is already defined above as "AnyButton". */
enum {
Button1 = 1,
Button2 = 2,
Button3 = 3,
Button4 = 4,
Button5 = 5
}
/* Notify modes */
enum {
NotifyNormal = 0,
NotifyGrab = 1,
NotifyUngrab = 2,
NotifyWhileGrabbed = 3
}
const int NotifyHint = 1; /* for MotionNotify events */
/* Notify detail */
enum {
NotifyAncestor = 0,
NotifyVirtual = 1,
NotifyInferior = 2,
NotifyNonlinear = 3,
NotifyNonlinearVirtual = 4,
NotifyPointer = 5,
NotifyPointerRoot = 6,
NotifyDetailNone = 7
}
/* Visibility notify */
enum {
VisibilityUnobscured = 0,
VisibilityPartiallyObscured = 1,
VisibilityFullyObscured = 2
}
/* Circulation request */
enum {
PlaceOnTop = 0,
PlaceOnBottom = 1
}
/* protocol families */
enum {
FamilyInternet = 0, /* IPv4 */
FamilyDECnet = 1,
FamilyChaos = 2,
FamilyServerInterpreted = 5, /* authentication families not tied to a specific protocol */
FamilyInternet6 = 6 /* IPv6 */
}
/* Property notification */
enum {
PropertyNewValue = 0,
PropertyDelete = 1
}
/* Color Map notification */
enum {
ColormapUninstalled = 0,
ColormapInstalled = 1
}
/* GrabPointer, GrabButton, GrabKeyboard, GrabKey Modes */
enum {
GrabModeSync = 0,
GrabModeAsync = 1
}
/* GrabPointer, GrabKeyboard reply status */
enum {
GrabSuccess = 0,
AlreadyGrabbed = 1,
GrabInvalidTime = 2,
GrabNotViewable = 3,
GrabFrozen = 4
}
/* AllowEvents modes */
enum {
AsyncPointer = 0,
SyncPointer = 1,
ReplayPointer = 2,
AsyncKeyboard = 3,
SyncKeyboard = 4,
ReplayKeyboard = 5,
AsyncBoth = 6,
SyncBoth = 7
}
/* Used in SetInputFocus, GetInputFocus */
enum {
RevertToNone = None,
RevertToPointerRoot = PointerRoot,
RevertToParent = 2
}
/*****************************************************************
* ERROR CODES
*****************************************************************/
enum XErrorCode:int
{
Success = 0, /* everything's okay */
BadRequest = 1, /* bad request code */
BadValue = 2, /* int parameter out of range */
BadWindow = 3, /* parameter not a Window */
BadPixmap = 4, /* parameter not a Pixmap */
BadAtom = 5, /* parameter not an Atom */
BadCursor = 6, /* parameter not a Cursor */
BadFont = 7, /* parameter not a Font */
BadMatch = 8, /* parameter mismatch */
BadDrawable = 9, /* parameter not a Pixmap or Window */
BadAccess = 10, /* depending on context:
- key/button already grabbed
- attempt to free an illegal
cmap entry
- attempt to store into a read-only
color map entry.
- attempt to modify the access control
list from other than the local host. */
BadAlloc = 11, /* insufficient resources */
BadColor = 12, /* no such colormap */
BadGC = 13, /* parameter not a GC */
BadIDChoice = 14, /* choice not in range or already used */
BadName = 15, /* font or color name doesn't exist */
BadLength = 16, /* Request length incorrect */
BadImplementation = 17, /* server is defective */
FirstExtensionError = 128,
LastExtensionError = 255
}
/*****************************************************************
* WINDOW DEFINITIONS
*****************************************************************/
/* Window classes used by CreateWindow */
/* Note that CopyFromParent is already defined as 0 above */
enum {
InputOutput = 1,
InputOnly = 2
}
/* Window attributes for CreateWindow and ChangeWindowAttributes */
enum {
CWBackPixmap = 1<<0,
CWBackPixel = 1<<1,
CWBorderPixmap = 1<<2,
CWBorderPixel = 1<<3,
CWBitGravity = 1<<4,
CWWinGravity = 1<<5,
CWBackingStore = 1<<6,
CWBackingPlanes = 1<<7,
CWBackingPixel = 1<<8,
CWOverrideRedirect = 1<<9,
CWSaveUnder = 1<<10,
CWEventMask = 1<<11,
CWDontPropagate = 1<<12,
CWColormap = 1<<13,
CWCursor = 1<<14
}
/* ConfigureWindow structure */
enum {
CWX = 1<<0,
CWY = 1<<1,
CWWidth = 1<<2,
CWHeight = 1<<3,
CWBorderWidth = 1<<4,
CWSibling = 1<<5,
CWStackMode = 1<<6
}
/* Bit Gravity */
enum {
ForgetGravity = 0,
NorthWestGravity = 1,
NorthGravity = 2,
NorthEastGravity = 3,
WestGravity = 4,
CenterGravity = 5,
EastGravity = 6,
SouthWestGravity = 7,
SouthGravity = 8,
SouthEastGravity = 9,
StaticGravity = 10
}
/* Window gravity + bit gravity above */
const uint UnmapGravity= 0;
/* Used in CreateWindow for backing-store hint */
enum {
NotUseful = 0,
WhenMapped = 1,
Always = 2
}
/* Used in GetWindowAttributes reply */
enum {
IsUnmapped = 0,
IsUnviewable = 1,
IsViewable = 2
}
/* Used in ChangeSaveSet */
enum {
SetModeInsert = 0,
SetModeDelete = 1
}
/* Used in ChangeCloseDownMode */
enum CloseDownMode:int
{
DestroyAll = 0,
RetainPermanent = 1,
RetainTemporary = 2
}
/* Window stacking method (in configureWindow) */
enum {
Above = 0,
Below = 1,
TopIf = 2,
BottomIf = 3,
Opposite = 4
}
/* Circulation direction */
enum {
RaiseLowest = 0,
LowerHighest = 1
}
/* Property modes */
enum {
PropModeReplace = 0,
PropModePrepend = 1,
PropModeAppend = 2
}
/*****************************************************************
* GRAPHICS DEFINITIONS
*****************************************************************/
/* graphics functions, as in GC.alu */
enum {
GXclear = 0x0, /* 0 */
GXand = 0x1, /* src AND dst */
GXandReverse = 0x2, /* src AND NOT dst */
GXcopy = 0x3, /* src */
GXandInverted = 0x4, /* NOT src AND dst */
GXnoop = 0x5, /* dst */
GXxor = 0x6, /* src XOR dst */
GXor = 0x7, /* src OR dst */
GXnor = 0x8, /* NOT src AND NOT dst */
GXequiv = 0x9, /* NOT src XOR dst */
GXinvert = 0xa, /* NOT dst */
GXorReverse = 0xb, /* src OR NOT dst */
GXcopyInverted = 0xc, /* NOT src */
GXorInverted = 0xd, /* NOT src OR dst */
GXnand = 0xe, /* NOT src OR NOT dst */
GXset = 0xf /* 1 */
}
/* LineStyle */
enum {
LineSolid = 0,
LineOnOffDash = 1,
LineDoubleDash = 2
}
/* capStyle */
enum {
CapNotLast = 0,
CapButt = 1,
CapRound = 2,
CapProjecting = 3
}
/* joinStyle */
enum {
JoinMiter = 0,
JoinRound = 1,
JoinBevel = 2
}
/* fillStyle */
enum {
FillSolid = 0,
FillTiled = 1,
FillStippled = 2,
FillOpaqueStippled = 3
}
/* fillRule */
enum {
EvenOddRule = 0,
WindingRule = 1
}
/* subwindow mode */
enum {
ClipByChildren = 0,
IncludeInferiors = 1
}
/* SetClipRectangles ordering */
enum {
Unsorted = 0,
YSorted = 1,
YXSorted = 2,
YXBanded = 3
}
/* CoordinateMode for drawing routines */
enum {
CoordModeOrigin = 0, /* relative to the origin */
CoordModePrevious = 1 /* relative to previous point */
}
/* Polygon shapes */
enum {
Complex = 0, /* paths may intersect */
Nonconvex = 1, /* no paths intersect, but not convex */
Convex = 2 /* wholly convex */
}
/* Arc modes for PolyFillArc */
enum {
ArcChord = 0, /* join endpoints of arc */
ArcPieSlice = 1 /* join endpoints to center of arc */
}
/* GC components: masks used in CreateGC, CopyGC, ChangeGC, OR'ed into
GC.stateChanges */
enum {
GCFunction = 1<<0,
GCPlaneMask = 1<<1,
GCForeground = 1<<2,
GCBackground = 1<<3,
GCLineWidth = 1<<4,
GCLineStyle = 1<<5,
GCCapStyle = 1<<6,
GCJoinStyle = 1<<7,
GCFillStyle = 1<<8,
GCFillRule = 1<<9,
GCTile = 1<<10,
GCStipple = 1<<11,
GCTileStipXOrigin = 1<<12,
GCTileStipYOrigin = 1<<13,
GCFont = 1<<14,
GCSubwindowMode = 1<<15,
GCGraphicsExposures = 1<<16,
GCClipXOrigin = 1<<17,
GCClipYOrigin = 1<<18,
GCClipMask = 1<<19,
GCDashOffset = 1<<20,
GCDashList = 1<<21,
GCArcMode = 1<<22,
}
const uint GCLastBit = 22;
/*****************************************************************
* FONTS
*****************************************************************/
/* used in QueryFont -- draw direction */
enum {
FontLeftToRight = 0,
FontRightToLeft = 1,
FontChange = 255
}
/*****************************************************************
* IMAGING
*****************************************************************/
/* ImageFormat -- PutImage, GetImage */
enum {
XYBitmap = 0, /* depth 1, XYFormat */
XYPixmap = 1, /* depth == drawable depth */
ZPixmap = 2 /* depth == drawable depth */
}
/*****************************************************************
* COLOR MAP STUFF
*****************************************************************/
/* For CreateColormap */
enum {
AllocNone = 0, /* create map with no entries */
AllocAll = 1 /* allocate entire map writeable */
}
/* Flags used in StoreNamedColor, StoreColors */
enum {
DoRed = 1<<0,
DoGreen = 1<<1,
DoBlue = 1<<2
}
/*****************************************************************
* CURSOR STUFF
*****************************************************************/
/* QueryBestSize Class */
enum {
CursorShape = 0, /* largest size that can be displayed */
TileShape = 1, /* size tiled fastest */
StippleShape = 2 /* size stippled fastest */
}
/*****************************************************************
* KEYBOARD/POINTER STUFF
*****************************************************************/
enum {
AutoRepeatModeOff = 0,
AutoRepeatModeOn = 1,
AutoRepeatModeDefault = 2
}
enum {
LedModeOff = 0,
LedModeOn = 1
}
/* masks for ChangeKeyboardControl */
enum {
KBKeyClickPercent = 1<<0,
KBBellPercent = 1<<1,
KBBellPitch = 1<<2,
KBBellDuration = 1<<3,
KBLed = 1<<4,
KBLedMode = 1<<5,
KBKey = 1<<6,
KBAutoRepeatMode = 1<<7
}
enum {
MappingSuccess = 0,
MappingBusy = 1,
MappingFailed = 2
}
enum {
MappingModifier = 0,
MappingKeyboard = 1,
MappingPointer = 2
}
/*****************************************************************
* SCREEN SAVER STUFF
*****************************************************************/
enum {
DontPreferBlanking = 0,
PreferBlanking = 1,
DefaultBlanking = 2
}
enum {
DisableScreenSaver = 0,
DisableScreenInterval = 0
}
enum {
DontAllowExposures = 0,
AllowExposures = 1,
DefaultExposures = 2
}
/* for ForceScreenSaver */
enum {
ScreenSaverReset = 0,
ScreenSaverActive = 1
}
/*****************************************************************
* HOSTS AND CONNECTIONS
*****************************************************************/
/* for ChangeHosts */
enum {
HostInsert = 0,
HostDelete = 1
}
/* for ChangeAccessControl */
enum {
EnableAccess = 1,
DisableAccess = 0
}
/* Display classes used in opening the connection
* Note that the statically allocated ones are even numbered and the
* dynamically changeable ones are odd numbered */
enum {
StaticGray = 0,
GrayScale = 1,
StaticColor = 2,
PseudoColor = 3,
TrueColor = 4,
DirectColor = 5
}
/* Byte order used in imageByteOrder and bitmapBitOrder */
enum {
LSBFirst = 0,
MSBFirst = 1
}
|