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:
parent
b30d834772
commit
884aff9191
1 changed files with 9 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue