xkb: add FIXMEs to procedures which need to act on all core devices
Add FIXME comments above request handlers which need to act on all core-sending devices if called on the core keyboard.
This commit is contained in:
parent
ef68273f5b
commit
4493acb88c
|
@ -347,6 +347,7 @@ ProcXkbSelectEvents(ClientPtr client)
|
||||||
|
|
||||||
/***====================================================================***/
|
/***====================================================================***/
|
||||||
|
|
||||||
|
/* FIXME: Needs to ding on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbBell(ClientPtr client)
|
ProcXkbBell(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -894,6 +895,7 @@ ProcXkbSetControls(ClientPtr client)
|
||||||
return client->noClientException;
|
return client->noClientException;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set rate on all core-sending devices. */
|
||||||
int
|
int
|
||||||
XkbSetRepeatRate(DeviceIntPtr dev,int timeout,int interval,int major,int minor)
|
XkbSetRepeatRate(DeviceIntPtr dev,int timeout,int interval,int major,int minor)
|
||||||
{
|
{
|
||||||
|
@ -2325,6 +2327,7 @@ XkbServerMapPtr srv = xkbi->desc->server;
|
||||||
return (char *)wire;
|
return (char *)wire;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set map on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetMap(ClientPtr client)
|
ProcXkbSetMap(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -2641,6 +2644,7 @@ ProcXkbGetCompatMap(ClientPtr client)
|
||||||
return XkbSendCompatMap(client,compat,&rep);
|
return XkbSendCompatMap(client,compat,&rep);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set compat map on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetCompatMap(ClientPtr client)
|
ProcXkbSetCompatMap(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -2918,6 +2922,7 @@ XkbIndicatorPtr leds;
|
||||||
return XkbSendIndicatorMap(client,leds,&rep);
|
return XkbSendIndicatorMap(client,leds,&rep);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set indicator map on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetIndicatorMap(ClientPtr client)
|
ProcXkbSetIndicatorMap(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -3081,6 +3086,7 @@ ProcXkbGetNamedIndicator(ClientPtr client)
|
||||||
return client->noClientException;
|
return client->noClientException;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set indicator on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetNamedIndicator(ClientPtr client)
|
ProcXkbSetNamedIndicator(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -3569,6 +3575,7 @@ char * str;
|
||||||
return True;
|
return True;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set names on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetNames(ClientPtr client)
|
ProcXkbSetNames(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -4866,6 +4873,7 @@ char * wire;
|
||||||
return Success;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set geom on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetGeometry(ClientPtr client)
|
ProcXkbSetGeometry(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
@ -6017,6 +6025,7 @@ DeviceIntPtr kbd;
|
||||||
return (char *)ledWire;
|
return (char *)ledWire;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: Needs to set info on all core-sending devices. */
|
||||||
int
|
int
|
||||||
ProcXkbSetDeviceInfo(ClientPtr client)
|
ProcXkbSetDeviceInfo(ClientPtr client)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue