Replaced typedefs with alias, removed return in void function displayImage, changed GET_X_PARAM and GET_Y_PARAM to HIWORD and LOWORD

This commit is contained in:
Callum Anderson 2012-06-02 17:34:08 -08:00
parent 3649029cf6
commit 1ddfe2d669
1 changed files with 47 additions and 42 deletions

View File

@ -173,7 +173,7 @@ void displayImage(Image image, SimpleWindow win = null) {
auto p = win.draw; auto p = win.draw;
p.drawImage(Point(0, 0), image); p.drawImage(Point(0, 0), image);
} }
return win.eventLoop(0, win.eventLoop(0,
(int) { (int) {
win.close(); win.close();
} ); } );
@ -725,8 +725,8 @@ version(Windows) {
case WM_MBUTTONUP: case WM_MBUTTONUP:
case WM_MBUTTONDBLCLK: case WM_MBUTTONDBLCLK:
mouse.type = 0; mouse.type = 0;
mouse.x = GET_X_LPARAM(lParam); mouse.x = LOWORD(lParam);
mouse.y = GET_Y_LPARAM(lParam); mouse.y = HIWORD(lParam);
mouse.buttonFlags = wParam; mouse.buttonFlags = wParam;
if(handleMouseEvent) if(handleMouseEvent)
@ -908,7 +908,7 @@ version(X11) {
foregroundIsNotTransparent = true; foregroundIsNotTransparent = true;
XSetForeground(display, gc, XSetForeground(display, gc,
cast(uint) c.r << 16 | cast(uint) c.r << 16 |
cast(uint) c.g << 8 | cast(uint) c.g << 8 |
cast(uint) c.b); cast(uint) c.b);
@ -923,11 +923,11 @@ version(X11) {
backgroundIsNotTransparent = true; backgroundIsNotTransparent = true;
XSetBackground(display, gc, XSetBackground(display, gc,
cast(uint) c.r << 16 | cast(uint) c.r << 16 |
cast(uint) c.g << 8 | cast(uint) c.g << 8 |
cast(uint) c.b); cast(uint) c.b);
} }
void swapColors() { void swapColors() {
@ -993,7 +993,7 @@ version(X11) {
points[i].x = cast(short) p.x; points[i].x = cast(short) p.x;
points[i].y = cast(short) p.y; points[i].y = cast(short) p.y;
} }
if(backgroundIsNotTransparent) { if(backgroundIsNotTransparent) {
swapColors(); swapColors();
XFillPolygon(display, d, gc, points.ptr, cast(int) points.length, PolygonShape.Complex, CoordMode.CoordModeOrigin); XFillPolygon(display, d, gc, points.ptr, cast(int) points.length, PolygonShape.Complex, CoordMode.CoordModeOrigin);
@ -1076,7 +1076,7 @@ version(X11) {
void createWindow(int width, int height, string title) { void createWindow(int width, int height, string title) {
display = XDisplayConnection.get(); display = XDisplayConnection.get();
auto screen = DefaultScreen(display); auto screen = DefaultScreen(display);
window = XCreateSimpleWindow( window = XCreateSimpleWindow(
display, display,
RootWindow(display, screen), RootWindow(display, screen),
@ -1354,7 +1354,7 @@ enum NotifyModes:int
NotifyWhileGrabbed =3 NotifyWhileGrabbed =3
} }
const int NotifyHint =1; /* for MotionNotify events */ const int NotifyHint =1; /* for MotionNotify events */
/* Notify detail */ /* Notify detail */
enum NotifyDetail:int enum NotifyDetail:int
{ {
@ -1409,18 +1409,23 @@ enum ColorMapNotification:int
struct _XPrivate {} struct _XPrivate {}
struct _XrmHashBucketRec {} struct _XrmHashBucketRec {}
typedef void* XPointer;
typedef void* XExtData; alias void* XPointer;
alias void* XExtData;
alias uint XID; alias uint XID;
typedef XID Window;
typedef XID Drawable; alias XID Window;
typedef XID Pixmap; alias XID Drawable;
alias XID Pixmap;
alias uint Atom; alias uint Atom;
alias bool Bool; alias bool Bool;
alias Display XDisplay; alias Display XDisplay;
typedef int ByteOrder;
typedef uint Time; alias int ByteOrder;
typedef void ScreenFormat; alias uint Time;
alias void ScreenFormat;
struct XImage { struct XImage {
int width, height; /* size of image */ int width, height; /* size of image */
@ -1479,8 +1484,8 @@ struct XKeyEvent
uint keycode; /* detail */ uint keycode; /* detail */
Bool same_screen; /* same screen flag */ Bool same_screen; /* same screen flag */
} }
typedef XKeyEvent XKeyPressedEvent; alias XKeyEvent XKeyPressedEvent;
typedef XKeyEvent XKeyReleasedEvent; alias XKeyEvent XKeyReleasedEvent;
struct XButtonEvent struct XButtonEvent
{ {
@ -1498,8 +1503,8 @@ struct XButtonEvent
uint button; /* detail */ uint button; /* detail */
Bool same_screen; /* same screen flag */ Bool same_screen; /* same screen flag */
} }
typedef XButtonEvent XButtonPressedEvent; alias XButtonEvent XButtonPressedEvent;
typedef XButtonEvent XButtonReleasedEvent; alias XButtonEvent XButtonReleasedEvent;
struct XMotionEvent{ struct XMotionEvent{
int type; /* of event */ int type; /* of event */
@ -1516,7 +1521,7 @@ struct XMotionEvent{
byte is_hint; /* detail */ byte is_hint; /* detail */
Bool same_screen; /* same screen flag */ Bool same_screen; /* same screen flag */
} }
typedef XMotionEvent XPointerMovedEvent; alias XMotionEvent XPointerMovedEvent;
struct XCrossingEvent{ struct XCrossingEvent{
int type; /* of event */ int type; /* of event */
@ -1532,15 +1537,15 @@ struct XCrossingEvent{
NotifyModes mode; /* NotifyNormal, NotifyGrab, NotifyUngrab */ NotifyModes mode; /* NotifyNormal, NotifyGrab, NotifyUngrab */
NotifyDetail detail; NotifyDetail detail;
/* /*
* NotifyAncestor, NotifyVirtual, NotifyInferior, * NotifyAncestor, NotifyVirtual, NotifyInferior,
* NotifyNonlinear,NotifyNonlinearVirtual * NotifyNonlinear,NotifyNonlinearVirtual
*/ */
Bool same_screen; /* same screen flag */ Bool same_screen; /* same screen flag */
Bool focus; /* Boolean focus */ Bool focus; /* Boolean focus */
KeyOrButtonMask state; /* key or button mask */ KeyOrButtonMask state; /* key or button mask */
} }
typedef XCrossingEvent XEnterWindowEvent; alias XCrossingEvent XEnterWindowEvent;
typedef XCrossingEvent XLeaveWindowEvent; alias XCrossingEvent XLeaveWindowEvent;
struct XFocusChangeEvent{ struct XFocusChangeEvent{
int type; /* FocusIn or FocusOut */ int type; /* FocusIn or FocusOut */
@ -1552,13 +1557,13 @@ struct XFocusChangeEvent{
NotifyGrab, NotifyUngrab */ NotifyGrab, NotifyUngrab */
NotifyDetail detail; NotifyDetail detail;
/* /*
* NotifyAncestor, NotifyVirtual, NotifyInferior, * NotifyAncestor, NotifyVirtual, NotifyInferior,
* NotifyNonlinear,NotifyNonlinearVirtual, NotifyPointer, * NotifyNonlinear,NotifyNonlinearVirtual, NotifyPointer,
* NotifyPointerRoot, NotifyDetailNone * NotifyPointerRoot, NotifyDetailNone
*/ */
} }
typedef XFocusChangeEvent XFocusInEvent; alias XFocusChangeEvent XFocusInEvent;
typedef XFocusChangeEvent XFocusOutEvent; alias XFocusChangeEvent XFocusOutEvent;
Window XCreateSimpleWindow( Window XCreateSimpleWindow(
Display* /* display */, Display* /* display */,
Window /* parent */, Window /* parent */,
@ -1587,17 +1592,17 @@ XImage *XCreateImage(
Atom XInternAtom( Atom XInternAtom(
Display* /* display */, Display* /* display */,
const char* /* atom_name */, const char* /* atom_name */,
Bool /* only_if_exists */ Bool /* only_if_exists */
); );
typedef int Status; alias int Status;
enum EventMask:int enum EventMask:int
{ {
NoEventMask =0, NoEventMask =0,
KeyPressMask =1<<0, KeyPressMask =1<<0,
KeyReleaseMask =1<<1, KeyReleaseMask =1<<1,
ButtonPressMask =1<<2, ButtonPressMask =1<<2,
ButtonReleaseMask =1<<3, ButtonReleaseMask =1<<3,
EnterWindowMask =1<<4, EnterWindowMask =1<<4,
@ -1633,7 +1638,7 @@ int XPutImage(
int /* dest_x */, int /* dest_x */,
int /* dest_y */, int /* dest_y */,
uint /* width */, uint /* width */,
uint /* height */ uint /* height */
); );
int XDestroyWindow( int XDestroyWindow(
@ -1713,7 +1718,7 @@ struct XKeymapEvent
Display *display; /* Display the event was read from */ Display *display; /* Display the event was read from */
Window window; Window window;
byte key_vector[32]; byte key_vector[32];
} }
struct XExposeEvent struct XExposeEvent
{ {
@ -1772,7 +1777,7 @@ struct XCreateWindowEvent{
Bool override_redirect; /* creation should be overridden */ Bool override_redirect; /* creation should be overridden */
} }
struct XDestroyWindowEvent struct XDestroyWindowEvent
{ {
int type; int type;
uint serial; /* # of last request processed by server */ uint serial; /* # of last request processed by server */
@ -2003,7 +2008,7 @@ struct XErrorEvent
ubyte minor_code; /* Minor op-code of failed request */ ubyte minor_code; /* Minor op-code of failed request */
} }
struct XAnyEvent struct XAnyEvent
{ {
int type; int type;
ubyte serial; /* # of last request processed by server */ ubyte serial; /* # of last request processed by server */
@ -2104,10 +2109,10 @@ struct Depth
Visual *visuals; /* list of visuals possible at this depth */ Visual *visuals; /* list of visuals possible at this depth */
} }
typedef void* GC; alias void* GC;
alias int VisualID; alias int VisualID;
typedef XID Colormap; alias XID Colormap;
typedef XID KeySym; alias XID KeySym;
alias uint KeyCode; alias uint KeyCode;
struct Screen{ struct Screen{
@ -2126,7 +2131,7 @@ struct Screen{
uint black_pixel; /* White and Black pixel values */ uint black_pixel; /* White and Black pixel values */
int max_maps, min_maps; /* max and min color maps */ int max_maps, min_maps; /* max and min color maps */
int backing_store; /* Never, WhenMapped, Always */ int backing_store; /* Never, WhenMapped, Always */
bool save_unders; bool save_unders;
int root_input_mask; /* initial root input mask */ int root_input_mask; /* initial root input mask */
} }