mirror of https://github.com/adamdruppe/arsd.git
lots of 64 bit fixes for x11 - it works now in my simple test
This commit is contained in:
parent
b62f2c4682
commit
a78768c7d7
136
simpledisplay.d
136
simpledisplay.d
|
@ -1205,7 +1205,7 @@ version(X11) {
|
||||||
case EventType.KeyPress:
|
case EventType.KeyPress:
|
||||||
if(handleCharEvent)
|
if(handleCharEvent)
|
||||||
handleCharEvent(
|
handleCharEvent(
|
||||||
XKeycodeToKeysym(
|
cast(dchar) XKeycodeToKeysym(
|
||||||
XDisplayConnection.get(),
|
XDisplayConnection.get(),
|
||||||
e.xkey.keycode,
|
e.xkey.keycode,
|
||||||
0)); // FIXME: we should check shift, etc. too, so it matches Windows' behavior better
|
0)); // FIXME: we should check shift, etc. too, so it matches Windows' behavior better
|
||||||
|
@ -1439,18 +1439,24 @@ enum ColorMapNotification:int
|
||||||
alias void* XPointer;
|
alias void* XPointer;
|
||||||
alias void* XExtData;
|
alias void* XExtData;
|
||||||
|
|
||||||
alias uint XID;
|
version( X86_64 ) {
|
||||||
|
alias ulong XID;
|
||||||
|
alias ulong arch_ulong;
|
||||||
|
} else {
|
||||||
|
alias uint XID;
|
||||||
|
alias uint arch_ulong;
|
||||||
|
}
|
||||||
|
|
||||||
alias XID Window;
|
alias XID Window;
|
||||||
alias XID Drawable;
|
alias XID Drawable;
|
||||||
alias XID Pixmap;
|
alias XID Pixmap;
|
||||||
|
|
||||||
alias uint Atom;
|
alias arch_ulong Atom;
|
||||||
alias bool Bool;
|
alias bool Bool;
|
||||||
alias Display XDisplay;
|
alias Display XDisplay;
|
||||||
|
|
||||||
alias int ByteOrder;
|
alias int ByteOrder;
|
||||||
alias uint Time;
|
alias arch_ulong Time;
|
||||||
alias void ScreenFormat;
|
alias void ScreenFormat;
|
||||||
|
|
||||||
struct XImage {
|
struct XImage {
|
||||||
|
@ -1465,9 +1471,9 @@ enum ColorMapNotification:int
|
||||||
int depth; /* depth of image */
|
int depth; /* depth of image */
|
||||||
int bytes_per_line; /* accelarator to next line */
|
int bytes_per_line; /* accelarator to next line */
|
||||||
int bits_per_pixel; /* bits per pixel (ZPixmap) */
|
int bits_per_pixel; /* bits per pixel (ZPixmap) */
|
||||||
uint red_mask; /* bits in z arrangment */
|
arch_ulong red_mask; /* bits in z arrangment */
|
||||||
uint green_mask;
|
arch_ulong green_mask;
|
||||||
uint blue_mask;
|
arch_ulong blue_mask;
|
||||||
XPointer obdata; /* hook for the object routines to hang on */
|
XPointer obdata; /* hook for the object routines to hang on */
|
||||||
struct f { /* image manipulation routines */
|
struct f { /* image manipulation routines */
|
||||||
XImage* function(
|
XImage* function(
|
||||||
|
@ -1482,13 +1488,13 @@ enum ColorMapNotification:int
|
||||||
int /* bitmap_pad */,
|
int /* bitmap_pad */,
|
||||||
int /* bytes_per_line */) create_image;
|
int /* bytes_per_line */) create_image;
|
||||||
int function(XImage *)destroy_image;
|
int function(XImage *)destroy_image;
|
||||||
uint function(XImage *, int, int)get_pixel;
|
arch_ulong function(XImage *, int, int)get_pixel;
|
||||||
int function(XImage *, int, int, uint)put_pixel;
|
int function(XImage *, int, int, uint)put_pixel;
|
||||||
XImage function(XImage *, int, int, uint, uint)sub_image;
|
XImage function(XImage *, int, int, uint, uint)sub_image;
|
||||||
int function(XImage *, int)add_pixel;
|
int function(XImage *, int)add_pixel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
version(X86_64) static assert(XImage.sizeof == 136);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1497,7 +1503,7 @@ enum ColorMapNotification:int
|
||||||
struct XKeyEvent
|
struct XKeyEvent
|
||||||
{
|
{
|
||||||
int type; /* of event */
|
int type; /* of event */
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window; /* "event" window it is reported relative to */
|
Window window; /* "event" window it is reported relative to */
|
||||||
|
@ -1510,13 +1516,14 @@ struct XKeyEvent
|
||||||
uint keycode; /* detail */
|
uint keycode; /* detail */
|
||||||
Bool same_screen; /* same screen flag */
|
Bool same_screen; /* same screen flag */
|
||||||
}
|
}
|
||||||
|
version(X86_64) static assert(XKeyEvent.sizeof == 96);
|
||||||
alias XKeyEvent XKeyPressedEvent;
|
alias XKeyEvent XKeyPressedEvent;
|
||||||
alias XKeyEvent XKeyReleasedEvent;
|
alias XKeyEvent XKeyReleasedEvent;
|
||||||
|
|
||||||
struct XButtonEvent
|
struct XButtonEvent
|
||||||
{
|
{
|
||||||
int type; /* of event */
|
int type; /* of event */
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window; /* "event" window it is reported relative to */
|
Window window; /* "event" window it is reported relative to */
|
||||||
|
@ -1534,7 +1541,7 @@ alias XButtonEvent XButtonReleasedEvent;
|
||||||
|
|
||||||
struct XMotionEvent{
|
struct XMotionEvent{
|
||||||
int type; /* of event */
|
int type; /* of event */
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window; /* "event" window reported relative to */
|
Window window; /* "event" window reported relative to */
|
||||||
|
@ -1551,7 +1558,7 @@ alias XMotionEvent XPointerMovedEvent;
|
||||||
|
|
||||||
struct XCrossingEvent{
|
struct XCrossingEvent{
|
||||||
int type; /* of event */
|
int type; /* of event */
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window; /* "event" window reported relative to */
|
Window window; /* "event" window reported relative to */
|
||||||
|
@ -1575,7 +1582,7 @@ alias XCrossingEvent XLeaveWindowEvent;
|
||||||
|
|
||||||
struct XFocusChangeEvent{
|
struct XFocusChangeEvent{
|
||||||
int type; /* FocusIn or FocusOut */
|
int type; /* FocusIn or FocusOut */
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window; /* window of event */
|
Window window; /* window of event */
|
||||||
|
@ -1739,7 +1746,7 @@ enum EventType:int
|
||||||
struct XKeymapEvent
|
struct XKeymapEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1749,7 +1756,7 @@ struct XKeymapEvent
|
||||||
struct XExposeEvent
|
struct XExposeEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1760,7 +1767,7 @@ struct XExposeEvent
|
||||||
|
|
||||||
struct XGraphicsExposeEvent{
|
struct XGraphicsExposeEvent{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Drawable drawable;
|
Drawable drawable;
|
||||||
|
@ -1773,7 +1780,7 @@ struct XGraphicsExposeEvent{
|
||||||
|
|
||||||
struct XNoExposeEvent{
|
struct XNoExposeEvent{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Drawable drawable;
|
Drawable drawable;
|
||||||
|
@ -1783,7 +1790,7 @@ struct XNoExposeEvent{
|
||||||
|
|
||||||
struct XVisibilityEvent{
|
struct XVisibilityEvent{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1792,7 +1799,7 @@ struct XVisibilityEvent{
|
||||||
|
|
||||||
struct XCreateWindowEvent{
|
struct XCreateWindowEvent{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window parent; /* parent of the window */
|
Window parent; /* parent of the window */
|
||||||
|
@ -1806,7 +1813,7 @@ struct XCreateWindowEvent{
|
||||||
struct XDestroyWindowEvent
|
struct XDestroyWindowEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1816,7 +1823,7 @@ struct XDestroyWindowEvent
|
||||||
struct XUnmapEvent
|
struct XUnmapEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1827,7 +1834,7 @@ struct XUnmapEvent
|
||||||
struct XMapEvent
|
struct XMapEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1838,7 +1845,7 @@ struct XMapEvent
|
||||||
struct XMapRequestEvent
|
struct XMapRequestEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window parent;
|
Window parent;
|
||||||
|
@ -1848,7 +1855,7 @@ struct XMapRequestEvent
|
||||||
struct XReparentEvent
|
struct XReparentEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1861,7 +1868,7 @@ struct XReparentEvent
|
||||||
struct XConfigureEvent
|
struct XConfigureEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1876,7 +1883,7 @@ struct XConfigureEvent
|
||||||
struct XGravityEvent
|
struct XGravityEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1887,7 +1894,7 @@ struct XGravityEvent
|
||||||
struct XResizeRequestEvent
|
struct XResizeRequestEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1897,7 +1904,7 @@ struct XResizeRequestEvent
|
||||||
struct XConfigureRequestEvent
|
struct XConfigureRequestEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window parent;
|
Window parent;
|
||||||
|
@ -1907,13 +1914,13 @@ struct XConfigureRequestEvent
|
||||||
int border_width;
|
int border_width;
|
||||||
Window above;
|
Window above;
|
||||||
WindowStackingMethod detail; /* Above, Below, TopIf, BottomIf, Opposite */
|
WindowStackingMethod detail; /* Above, Below, TopIf, BottomIf, Opposite */
|
||||||
uint value_mask;
|
arch_ulong value_mask;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct XCirculateEvent
|
struct XCirculateEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window event;
|
Window event;
|
||||||
|
@ -1924,7 +1931,7 @@ struct XCirculateEvent
|
||||||
struct XCirculateRequestEvent
|
struct XCirculateRequestEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window parent;
|
Window parent;
|
||||||
|
@ -1935,7 +1942,7 @@ struct XCirculateRequestEvent
|
||||||
struct XPropertyEvent
|
struct XPropertyEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1947,7 +1954,7 @@ struct XPropertyEvent
|
||||||
struct XSelectionClearEvent
|
struct XSelectionClearEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1958,7 +1965,7 @@ struct XSelectionClearEvent
|
||||||
struct XSelectionRequestEvent
|
struct XSelectionRequestEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window owner;
|
Window owner;
|
||||||
|
@ -1972,7 +1979,7 @@ struct XSelectionRequestEvent
|
||||||
struct XSelectionEvent
|
struct XSelectionEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window requestor;
|
Window requestor;
|
||||||
|
@ -1981,11 +1988,12 @@ struct XSelectionEvent
|
||||||
Atom property; /* ATOM or None */
|
Atom property; /* ATOM or None */
|
||||||
Time time;
|
Time time;
|
||||||
}
|
}
|
||||||
|
version(X86_64) static assert(XSelectionClearEvent.sizeof == 56);
|
||||||
|
|
||||||
struct XColormapEvent
|
struct XColormapEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
|
@ -1993,27 +2001,31 @@ struct XColormapEvent
|
||||||
Bool new_; /* C++ */
|
Bool new_; /* C++ */
|
||||||
ColorMapNotification state; /* ColormapInstalled, ColormapUninstalled */
|
ColorMapNotification state; /* ColormapInstalled, ColormapUninstalled */
|
||||||
}
|
}
|
||||||
|
version(X86_64) static assert(XColormapEvent.sizeof == 56);
|
||||||
|
|
||||||
struct XClientMessageEvent
|
struct XClientMessageEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window;
|
Window window;
|
||||||
Atom message_type;
|
Atom message_type;
|
||||||
int format;
|
int format;
|
||||||
union data{
|
union Data{
|
||||||
byte b[20];
|
byte b[20];
|
||||||
short s[10];
|
short s[10];
|
||||||
int l[5];
|
arch_ulong l[5];
|
||||||
}
|
}
|
||||||
|
Data data;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
version(X86_64) static assert(XClientMessageEvent.sizeof == 96);
|
||||||
|
|
||||||
struct XMappingEvent
|
struct XMappingEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
uint serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
Window window; /* unused */
|
Window window; /* unused */
|
||||||
|
@ -2028,8 +2040,8 @@ struct XErrorEvent
|
||||||
int type;
|
int type;
|
||||||
Display *display; /* Display the event was read from */
|
Display *display; /* Display the event was read from */
|
||||||
XID resourceid; /* resource id */
|
XID resourceid; /* resource id */
|
||||||
uint serial; /* serial number of failed request */
|
arch_ulong serial; /* serial number of failed request */
|
||||||
uint error_code; /* error code of failed request */
|
ubyte error_code; /* error code of failed request */
|
||||||
ubyte request_code; /* Major op-code of failed request */
|
ubyte request_code; /* Major op-code of failed request */
|
||||||
ubyte minor_code; /* Minor op-code of failed request */
|
ubyte minor_code; /* Minor op-code of failed request */
|
||||||
}
|
}
|
||||||
|
@ -2037,7 +2049,7 @@ struct XErrorEvent
|
||||||
struct XAnyEvent
|
struct XAnyEvent
|
||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
ubyte serial; /* # of last request processed by server */
|
arch_ulong serial; /* # of last request processed by server */
|
||||||
Bool send_event; /* true if this came from a SendEvent request */
|
Bool send_event; /* true if this came from a SendEvent request */
|
||||||
Display *display;/* Display the event was read from */
|
Display *display;/* Display the event was read from */
|
||||||
Window window; /* window on which event was requested in event mask */
|
Window window; /* window on which event was requested in event mask */
|
||||||
|
@ -2076,7 +2088,7 @@ union XEvent{
|
||||||
XMappingEvent xmapping;
|
XMappingEvent xmapping;
|
||||||
XErrorEvent xerror;
|
XErrorEvent xerror;
|
||||||
XKeymapEvent xkeymap;
|
XKeymapEvent xkeymap;
|
||||||
int pad[24];
|
arch_ulong pad[24];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2104,8 +2116,8 @@ union XEvent{
|
||||||
_XPrivate *private9;
|
_XPrivate *private9;
|
||||||
_XPrivate *private10;
|
_XPrivate *private10;
|
||||||
int qlen; /* Length of input event queue */
|
int qlen; /* Length of input event queue */
|
||||||
uint last_request_read; /* seq number of last event read */
|
arch_ulong last_request_read; /* seq number of last event read */
|
||||||
uint request; /* sequence number of last request. */
|
arch_ulong request; /* sequence number of last request. */
|
||||||
XPointer private11;
|
XPointer private11;
|
||||||
XPointer private12;
|
XPointer private12;
|
||||||
XPointer private13;
|
XPointer private13;
|
||||||
|
@ -2117,8 +2129,8 @@ union XEvent{
|
||||||
int default_screen; /* default screen for operations */
|
int default_screen; /* default screen for operations */
|
||||||
int nscreens; /* number of screens on this server*/
|
int nscreens; /* number of screens on this server*/
|
||||||
Screen *screens; /* pointer to list of screens */
|
Screen *screens; /* pointer to list of screens */
|
||||||
uint motion_buffer; /* size of motion buffer */
|
arch_ulong motion_buffer; /* size of motion buffer */
|
||||||
uint private16;
|
arch_ulong private16;
|
||||||
int min_keycode; /* minimum defined keycode */
|
int min_keycode; /* minimum defined keycode */
|
||||||
int max_keycode; /* maximum defined keycode */
|
int max_keycode; /* maximum defined keycode */
|
||||||
XPointer private17;
|
XPointer private17;
|
||||||
|
@ -2128,6 +2140,20 @@ union XEvent{
|
||||||
/* there is more to this structure, but it is private to Xlib */
|
/* there is more to this structure, but it is private to Xlib */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// I got these numbers from a C program as a sanity test
|
||||||
|
version(X86_64) {
|
||||||
|
static assert(Display.sizeof == 296);
|
||||||
|
static assert(XPointer.sizeof == 8);
|
||||||
|
static assert(XErrorEvent.sizeof == 40);
|
||||||
|
static assert(XAnyEvent.sizeof == 40);
|
||||||
|
static assert(XMappingEvent.sizeof == 56);
|
||||||
|
static assert(XEvent.sizeof == 192);
|
||||||
|
} else {
|
||||||
|
static assert(Display.sizeof == 176);
|
||||||
|
static assert(XPointer.sizeof == 4);
|
||||||
|
static assert(XEvent.sizeof == 96);
|
||||||
|
}
|
||||||
|
|
||||||
struct Depth
|
struct Depth
|
||||||
{
|
{
|
||||||
int depth; /* this depth (Z) of the depth */
|
int depth; /* this depth (Z) of the depth */
|
||||||
|
@ -2174,7 +2200,8 @@ struct Visual
|
||||||
alias Display* _XPrivDisplay;
|
alias Display* _XPrivDisplay;
|
||||||
|
|
||||||
Screen* ScreenOfDisplay(Display* dpy, int scr) {
|
Screen* ScreenOfDisplay(Display* dpy, int scr) {
|
||||||
return (&(cast(_XPrivDisplay)dpy).screens[scr]);
|
assert(dpy !is null);
|
||||||
|
return &dpy.screens[scr];
|
||||||
}
|
}
|
||||||
|
|
||||||
Window RootWindow(Display *dpy,int scr) {
|
Window RootWindow(Display *dpy,int scr) {
|
||||||
|
@ -2224,6 +2251,7 @@ struct Visual
|
||||||
int XFreePixmap(Display*, Pixmap);
|
int XFreePixmap(Display*, Pixmap);
|
||||||
int XCopyArea(Display*, Drawable, Drawable, GC, int, int, uint, uint, int, int);
|
int XCopyArea(Display*, Drawable, Drawable, GC, int, int, uint, uint, int, int);
|
||||||
int XFlush(Display*);
|
int XFlush(Display*);
|
||||||
|
int XSync(Display*, bool);
|
||||||
|
|
||||||
struct XPoint {
|
struct XPoint {
|
||||||
short x;
|
short x;
|
||||||
|
@ -2248,7 +2276,11 @@ struct Visual
|
||||||
const(char)* value; /* same as Property routines */
|
const(char)* value; /* same as Property routines */
|
||||||
Atom encoding; /* prop type */
|
Atom encoding; /* prop type */
|
||||||
int format; /* prop data format: 8, 16, or 32 */
|
int format; /* prop data format: 8, 16, or 32 */
|
||||||
uint nitems; /* number of data items in value */
|
arch_ulong nitems; /* number of data items in value */
|
||||||
|
}
|
||||||
|
|
||||||
|
version( X86_64 ) {
|
||||||
|
static assert(XTextProperty.sizeof == 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
void XSetWMName(Display*, Window, XTextProperty*);
|
void XSetWMName(Display*, Window, XTextProperty*);
|
||||||
|
|
Loading…
Reference in New Issue