Xi: namespace XI2 files.
Some files (notably those merged with MPX before XI2 came along) didn't use a 'xi' prefix. This patch changes all of them to meaningful names. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
4ddb002b68
commit
d230742ea8
|
@ -5,12 +5,8 @@ AM_CFLAGS = $(DIX_CFLAGS)
|
|||
libXi_la_SOURCES = \
|
||||
allowev.c \
|
||||
allowev.h \
|
||||
chdevcur.c \
|
||||
chdevcur.h \
|
||||
chgdctl.c \
|
||||
chgdctl.h \
|
||||
chdevhier.c \
|
||||
chdevhier.h \
|
||||
chgfctl.c \
|
||||
chgfctl.h \
|
||||
chgkbd.c \
|
||||
|
@ -30,8 +26,6 @@ libXi_la_SOURCES = \
|
|||
extinit.c \
|
||||
getbmap.c \
|
||||
getbmap.h \
|
||||
getcptr.c \
|
||||
getcptr.h \
|
||||
getdctl.c \
|
||||
getdctl.h \
|
||||
getfctl.c \
|
||||
|
@ -60,12 +54,6 @@ libXi_la_SOURCES = \
|
|||
listdev.h \
|
||||
opendev.c \
|
||||
opendev.h \
|
||||
querydev.c \
|
||||
querydev.h \
|
||||
queryversion.h \
|
||||
queryversion.c \
|
||||
querydp.c \
|
||||
querydp.h \
|
||||
queryst.c \
|
||||
queryst.h \
|
||||
selectev.c \
|
||||
|
@ -74,8 +62,6 @@ libXi_la_SOURCES = \
|
|||
sendexev.h \
|
||||
setbmap.c \
|
||||
setbmap.h \
|
||||
setcptr.c \
|
||||
setcptr.h \
|
||||
setdval.c \
|
||||
setdval.h \
|
||||
setfocus.c \
|
||||
|
@ -90,19 +76,33 @@ libXi_la_SOURCES = \
|
|||
ungrdevb.h \
|
||||
ungrdevk.c \
|
||||
ungrdevk.h \
|
||||
warpdevp.c \
|
||||
warpdevp.h \
|
||||
xiallowev.c \
|
||||
xiallowev.h \
|
||||
xichangecursor.c \
|
||||
xichangecursor.h \
|
||||
xichangehierarchy.c \
|
||||
xichangehierarchy.h \
|
||||
xigetclientpointer.c \
|
||||
xigetclientpointer.h \
|
||||
xigrabdev.c \
|
||||
xigrabdev.h \
|
||||
xipassivegrab.h \
|
||||
xipassivegrab.c \
|
||||
xiproperty.c \
|
||||
xiproperty.h \
|
||||
xiquerydevice.c \
|
||||
xiquerydevice.h \
|
||||
xiquerypointer.c \
|
||||
xiquerypointer.h \
|
||||
xiqueryversion.c \
|
||||
xiqueryversion.h \
|
||||
xiselectev.c \
|
||||
xiselectev.h \
|
||||
xisetclientpointer.c \
|
||||
xisetclientpointer.h \
|
||||
xisetdevfocus.c \
|
||||
xisetdevfocus.h
|
||||
xisetdevfocus.h \
|
||||
xiwarppointer.c \
|
||||
xiwarppointer.h
|
||||
|
||||
EXTRA_DIST = stubs.c
|
||||
|
|
|
@ -74,7 +74,7 @@ SOFTWARE.
|
|||
#include "scrnintstr.h"
|
||||
#include "listdev.h" /* for CopySwapXXXClass */
|
||||
#include "xace.h"
|
||||
#include "querydev.h" /* For List*Info */
|
||||
#include "xiquerydevice.h" /* For List*Info */
|
||||
#include "eventconvert.h"
|
||||
|
||||
#include <X11/extensions/XKBproto.h>
|
||||
|
|
16
Xi/extinit.c
16
Xi/extinit.c
|
@ -75,9 +75,7 @@ SOFTWARE.
|
|||
|
||||
/* modules local to Xi */
|
||||
#include "allowev.h"
|
||||
#include "chdevcur.h"
|
||||
#include "chgdctl.h"
|
||||
#include "chdevhier.h"
|
||||
#include "chgfctl.h"
|
||||
#include "chgkbd.h"
|
||||
#include "chgprop.h"
|
||||
|
@ -86,7 +84,6 @@ SOFTWARE.
|
|||
#include "devbell.h"
|
||||
#include "getbmap.h"
|
||||
#include "getbmap.h"
|
||||
#include "getcptr.h"
|
||||
#include "getdctl.h"
|
||||
#include "getfctl.h"
|
||||
#include "getfocus.h"
|
||||
|
@ -102,15 +99,11 @@ SOFTWARE.
|
|||
#include "gtmotion.h"
|
||||
#include "listdev.h"
|
||||
#include "opendev.h"
|
||||
#include "querydp.h"
|
||||
#include "queryst.h"
|
||||
#include "querydev.h"
|
||||
#include "queryversion.h"
|
||||
#include "selectev.h"
|
||||
#include "sendexev.h"
|
||||
#include "chgkmap.h"
|
||||
#include "setbmap.h"
|
||||
#include "setcptr.h"
|
||||
#include "setdval.h"
|
||||
#include "setfocus.h"
|
||||
#include "setmmap.h"
|
||||
|
@ -118,13 +111,20 @@ SOFTWARE.
|
|||
#include "ungrdev.h"
|
||||
#include "ungrdevb.h"
|
||||
#include "ungrdevk.h"
|
||||
#include "warpdevp.h"
|
||||
#include "xiallowev.h"
|
||||
#include "xiselectev.h"
|
||||
#include "xigrabdev.h"
|
||||
#include "xipassivegrab.h"
|
||||
#include "xisetdevfocus.h"
|
||||
#include "xiproperty.h"
|
||||
#include "xichangecursor.h"
|
||||
#include "xichangehierarchy.h"
|
||||
#include "xigetclientpointer.h"
|
||||
#include "xiquerydevice.h"
|
||||
#include "xiquerypointer.h"
|
||||
#include "xiqueryversion.h"
|
||||
#include "xisetclientpointer.h"
|
||||
#include "xiwarppointer.h"
|
||||
|
||||
|
||||
/* Masks for XI events have to be aligned with core event (partially anyway).
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
#include "exglobals.h"
|
||||
#include "input.h"
|
||||
|
||||
#include "chdevcur.h"
|
||||
#include "xichangecursor.h"
|
||||
|
||||
/***********************************************************************
|
||||
*
|
|
@ -48,11 +48,11 @@
|
|||
#include "exglobals.h"
|
||||
#include "geext.h"
|
||||
#include "xace.h"
|
||||
#include "querydev.h" /* for GetDeviceUse */
|
||||
#include "xiquerydevice.h" /* for GetDeviceUse */
|
||||
|
||||
#include "xkbsrv.h"
|
||||
|
||||
#include "chdevhier.h"
|
||||
#include "xichangehierarchy.h"
|
||||
|
||||
extern DevPrivateKey XTstDevicePrivateKey;
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
#include "exevents.h"
|
||||
#include "exglobals.h"
|
||||
|
||||
#include "getcptr.h"
|
||||
#include "xigetclientpointer.h"
|
||||
|
||||
/***********************************************************************
|
||||
* This procedure allows a client to query another client's client pointer
|
|
@ -40,7 +40,7 @@
|
|||
#include "xserver-properties.h"
|
||||
#include "exevents.h"
|
||||
|
||||
#include "querydev.h"
|
||||
#include "xiquerydevice.h"
|
||||
|
||||
static int ListDeviceInfo(DeviceIntPtr dev, xXIDeviceInfo* info);
|
||||
static int SizeDeviceInfo(DeviceIntPtr dev);
|
|
@ -49,7 +49,7 @@
|
|||
#include "panoramiXsrv.h"
|
||||
#endif
|
||||
|
||||
#include "querydp.h"
|
||||
#include "xiquerypointer.h"
|
||||
|
||||
/***********************************************************************
|
||||
*
|
|
@ -25,7 +25,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @file queryversion.c
|
||||
* @file xiqueryversion.c
|
||||
* Protocol handling for the XIQueryVersion request/reply.
|
||||
*/
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include "exglobals.h"
|
||||
#include "exevents.h"
|
||||
#include "queryversion.h"
|
||||
#include "xiqueryversion.h"
|
||||
#include "misc.h"
|
||||
|
||||
extern XExtensionVersion XIVersion; /* defined in getvers.c */
|
|
@ -46,7 +46,7 @@
|
|||
#include "exevents.h"
|
||||
#include "exglobals.h"
|
||||
|
||||
#include "setcptr.h"
|
||||
#include "xisetclientpointer.h"
|
||||
|
||||
int
|
||||
SProcXISetClientPointer(ClientPtr client)
|
|
@ -46,7 +46,7 @@
|
|||
#include "mipointer.h" /* for miPointerUpdateSprite */
|
||||
|
||||
|
||||
#include "warpdevp.h"
|
||||
#include "xiwarppointer.h"
|
||||
/***********************************************************************
|
||||
*
|
||||
* This procedure allows a client to warp the pointer of a device.
|
|
@ -78,11 +78,11 @@ SOFTWARE.
|
|||
#include <X11/extensions/XIproto.h>
|
||||
#include "exglobals.h"
|
||||
#include "exevents.h"
|
||||
#include "querydev.h" /* for SizeDeviceClasses */
|
||||
#include "xiquerydevice.h" /* for SizeDeviceClasses */
|
||||
#include "xiproperty.h"
|
||||
#include "enterleave.h" /* for EnterWindow() */
|
||||
#include "xserver-properties.h"
|
||||
#include "chdevhier.h" /* For XISendDeviceHierarchyEvent */
|
||||
#include "xichangehierarchy.h" /* For XISendDeviceHierarchyEvent */
|
||||
|
||||
/** @file
|
||||
* This file handles input device-related stuff.
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
#include "events.h"
|
||||
#include "exglobals.h"
|
||||
#include "eventconvert.h"
|
||||
#include "querydev.h"
|
||||
#include "xiquerydevice.h"
|
||||
#include "xkbsrv.h"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue