mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Move XFree86 DDX XKB actions into dixmods.
This commit is contained in:
parent
d7b9e2b0e9
commit
7257590651
8 changed files with 175 additions and 58 deletions
|
|
@ -15,32 +15,8 @@
|
|||
#define XKBSRV_NEED_FILE_FUNCS
|
||||
#include <X11/extensions/XKBsrv.h>
|
||||
|
||||
#ifdef XF86DDXACTIONS
|
||||
#include "xf86.h"
|
||||
#endif
|
||||
|
||||
int
|
||||
XkbDDXPrivate(DeviceIntPtr dev,KeyCode key,XkbAction *act)
|
||||
{
|
||||
#ifdef XF86DDXACTIONS
|
||||
XkbAnyAction *xf86act = &(act->any);
|
||||
char msgbuf[XkbAnyActionDataSize+1];
|
||||
|
||||
if (xf86act->type == XkbSA_XFree86Private) {
|
||||
memcpy(msgbuf, xf86act->data, XkbAnyActionDataSize);
|
||||
msgbuf[XkbAnyActionDataSize]= '\0';
|
||||
if (_XkbStrCaseCmp(msgbuf, "-vmode")==0)
|
||||
xf86ProcessActionEvent(ACTION_PREV_MODE, NULL);
|
||||
else if (_XkbStrCaseCmp(msgbuf, "+vmode")==0)
|
||||
xf86ProcessActionEvent(ACTION_NEXT_MODE, NULL);
|
||||
else if (_XkbStrCaseCmp(msgbuf, "ungrab")==0)
|
||||
xf86ProcessActionEvent(ACTION_DISABLEGRAB, NULL);
|
||||
else if (_XkbStrCaseCmp(msgbuf, "clsgrb")==0)
|
||||
xf86ProcessActionEvent(ACTION_CLOSECLIENT, NULL);
|
||||
else
|
||||
xf86ProcessActionEvent(ACTION_MESSAGE, (void *) msgbuf);
|
||||
}
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue