[PATCH:xf86-input-mouse 3/4] Set button & axis labels
Alexandr Shadchin
alexandr.shadchin at gmail.com
Sun Apr 29 08:01:39 PDT 2012
On Fri, Apr 27, 2012 at 05:43:51PM -0700, Alan Coopersmith wrote:
> Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>
> ---
> src/mouse.c | 42 +++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 41 insertions(+), 1 deletion(-)
>
Reviewed-by: Alexandr Shadchin <alexandr.shadchin at gmail.com>
small comment see below
> diff --git a/src/mouse.c b/src/mouse.c
> index 7613403..308d356 100644
> --- a/src/mouse.c
> +++ b/src/mouse.c
> @@ -1023,9 +1023,28 @@ out:
> return rc;
> }
>
> +static void MouseInitButtonLabels(Atom *btn_labels)
> +{
> + int i;
> + Atom unknown_btn = XIGetKnownProperty(BTN_LABEL_PROP_BTN_UNKNOWN);
> +
> + btn_labels[0] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_LEFT);
> + btn_labels[1] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_MIDDLE);
> + btn_labels[2] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_RIGHT);
> + btn_labels[3] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_WHEEL_UP);
> + btn_labels[4] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_WHEEL_DOWN);
> + btn_labels[5] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_HWHEEL_LEFT);
> + btn_labels[6] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_HWHEEL_RIGHT);
> +
> + unknown_btn = XIGetKnownProperty(BTN_LABEL_PROP_BTN_UNKNOWN);
unneeded, unknown_btn defined above
> + for (i = 7; i < MSE_MAXBUTTONS; i++)
> + btn_labels[i] = unknown_btn;
> +}
> +
> static void MouseInitProperties(DeviceIntPtr device)
> {
> InputInfoPtr pInfo = device->public.devicePrivate;
> + MouseDevPtr pMse = pInfo->private;
>
> #ifdef XI_PROP_DEVICE_NODE
> const char *device_node =
> @@ -1040,6 +1059,23 @@ static void MouseInitProperties(DeviceIntPtr device)
> strlen(device_node), device_node, FALSE);
> }
> #endif /* XI_PROP_DEVICE_NODE */
> +
> + /* Button labels */
> + if (pMse->buttons > 0)
> + {
> + Atom prop_btn_label = XIGetKnownProperty(BTN_LABEL_PROP);
> +
> + if (prop_btn_label)
> + {
> + Atom btn_labels[MSE_MAXBUTTONS];
> + MouseInitButtonLabels(btn_labels);
> +
> + XIChangeDeviceProperty(device, prop_btn_label, XA_ATOM, 32,
> + PropModeReplace, pMse->buttons,
> + btn_labels, FALSE);
> + XISetDevicePropertyDeletable(device, prop_btn_label, FALSE);
> + }
> + }
> }
>
> static void
> @@ -1597,7 +1633,11 @@ MouseProc(DeviceIntPtr device, int what)
> for (i = 0; i < MSE_MAXBUTTONS; i++)
> map[i + 1] = i + 1;
>
> - /* FIXME: we should probably set the labels here */
> +#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7
> + MouseInitButtonLabels(btn_labels);
> + axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_X);
> + axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_Y);
> +#endif
>
> InitPointerDeviceStruct((DevicePtr)device, map,
> min(pMse->buttons, MSE_MAXBUTTONS),
> --
> 1.7.9.2
>
> _______________________________________________
> xorg-devel at lists.x.org: X.Org development
> Archives: http://lists.x.org/archives/xorg-devel
> Info: http://lists.x.org/mailman/listinfo/xorg-devel
--
Alexandr Shadchin
More information about the xorg-devel
mailing list