1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00

Prepare for reading keypresses from the X server.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4461 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-11-12 11:19:44 +00:00
parent b30d834772
commit 884aff9191

View File

@ -410,7 +410,7 @@ static void* ScreenCreateInstance (unsigned Addr, unsigned Range, void* CfgInfo)
XDefineCursor (V->ScreenDisplay, V->ScreenWindow, C);
/* Select input events */
XSelectInput (V->ScreenDisplay, V->ScreenWindow, ExposureMask | StructureNotifyMask);
XSelectInput (V->ScreenDisplay, V->ScreenWindow, ExposureMask | StructureNotifyMask | KeyPressMask);
/* Show the window */
XMapRaised (V->ScreenDisplay, V->ScreenWindow);
@ -626,8 +626,15 @@ static void ScreenEventLoop (void)
XRefreshKeyboardMapping (&Event.xmapping);
break;
case KeyPress:
break;
default:
/* Ignore anything else */
break;
}
}
}
/* Flush the outgoing event queue */
XFlush (VScreen->ScreenDisplay);