]>
diplodocus.org Git - xorg-xinput/blob - src/list.c
2 * Copyright 1996 by Frederic Lepied, France. <Frederic.Lepied@sugix.frmug.org>
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the authors not be used in
9 * advertising or publicity pertaining to distribution of the software without
10 * specific, written prior permission. The authors make no
11 * representations about the suitability of this software for any purpose. It
12 * is provided "as is" without express or implied warranty.
14 * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
26 #include <X11/extensions/XIproto.h> /* for XI_Device***ChangedNotify */
29 print_info(Display
* dpy
, XDeviceInfo
*info
, Bool shortformat
)
38 printf("\"%s\"\tid=%ld\t[", info
->name
, info
->id
);
47 case IsXExtensionDevice
:
48 printf("XExtensionDevice");
50 case IsXExtensionKeyboard
:
51 printf("XExtensionKeyboard");
53 case IsXExtensionPointer
:
54 printf("XExtensionPointer");
57 printf("Unknown class");
65 if(info
->type
!= None
)
66 printf("\tType is %s\n", XGetAtomName(dpy
, info
->type
));
68 if (info
->num_classes
> 0) {
69 any
= (XAnyClassPtr
) (info
->inputclassinfo
);
70 for (i
=0; i
<info
->num_classes
; i
++) {
73 k
= (XKeyInfoPtr
) any
;
74 printf("\tNum_keys is %d\n", k
->num_keys
);
75 printf("\tMin_keycode is %d\n", k
->min_keycode
);
76 printf("\tMax_keycode is %d\n", k
->max_keycode
);
80 b
= (XButtonInfoPtr
) any
;
81 printf("\tNum_buttons is %d\n", b
->num_buttons
);
85 v
= (XValuatorInfoPtr
) any
;
86 a
= (XAxisInfoPtr
) ((char *) v
+
87 sizeof (XValuatorInfo
));
88 printf("\tNum_axes is %d\n", v
->num_axes
);
89 printf("\tMode is %s\n", (v
->mode
== Absolute
) ? "Absolute" : "Relative");
90 printf("\tMotion_buffer is %ld\n", v
->motion_buffer
);
91 for (j
=0; j
<v
->num_axes
; j
++, a
++) {
92 printf("\tAxis %d :\n", j
);
93 printf("\t\tMin_value is %d\n", a
->min_value
);
94 printf("\t\tMax_value is %d\n", a
->max_value
);
95 printf ("\t\tResolution is %d\n", a
->resolution
);
99 printf ("unknown class\n");
101 any
= (XAnyClassPtr
) ((char *) any
+ any
->length
);
106 static int list_xi1(Display
*display
,
114 int shortformat
= False
;
117 shortformat
= (argc
== 1 && strcmp(argv
[0], "--short") == 0);
118 daemon
= (argc
== 1 && strcmp(argv
[0], "--loop") == 0);
120 if (argc
== 0 || shortformat
|| daemon
) {
124 info
= XListInputDevices(display
, &num_devices
);
125 for(loop
=0; loop
<num_devices
; loop
++) {
126 print_info(display
, info
+loop
, shortformat
);
130 int ret
= EXIT_SUCCESS
;
132 for(loop
=0; loop
<argc
; loop
++) {
133 info
= find_device_info(display
, argv
[loop
], False
);
136 fprintf(stderr
, "unable to find device %s\n", argv
[loop
]);
139 print_info(display
, info
, shortformat
);
148 /* also used from test_xi2.c */
150 print_classes_xi2(Display
* display
, XIAnyClassInfo
**classes
,
155 printf("\tReporting %d classes:\n", num_classes
);
156 for (i
= 0; i
< num_classes
; i
++)
158 printf("\t\tClass originated from: %d\n", classes
[i
]->sourceid
);
159 switch(classes
[i
]->type
)
163 XIButtonClassInfo
*b
= (XIButtonClassInfo
*)classes
[i
];
164 printf("\t\tButtons supported: %d\n", b
->num_buttons
);
165 printf("\t\tButton labels:");
166 for (j
= 0; j
< b
->num_buttons
; j
++)
167 printf(" %s", (b
->labels
[j
]) ? XGetAtomName(display
, b
->labels
[j
]) : "None");
169 printf("\t\tButton state:");
170 for (j
= 0; j
< b
->state
.mask_len
* 8; j
++)
171 if (XIMaskIsSet(b
->state
.mask
, j
))
179 XIKeyClassInfo
*k
= (XIKeyClassInfo
*)classes
[i
];
180 printf("\t\tKeycodes supported: %d\n", k
->num_keycodes
);
183 case XIValuatorClass
:
185 XIValuatorClassInfo
*v
= (XIValuatorClassInfo
*)classes
[i
];
186 printf("\t\tDetail for Valuator %d:\n", v
->number
);
187 printf("\t\t Label: %s\n", v
->label
? XGetAtomName(display
, v
->label
) : "None");
188 printf("\t\t Range: %f - %f\n", v
->min
, v
->max
);
189 printf("\t\t Resolution: %d units/m\n", v
->resolution
);
190 printf("\t\t Mode: %s\n", v
->mode
== Absolute
? "absolute" :
192 if (v
->mode
== Absolute
)
193 printf("\t\t Current value: %f\n", v
->value
);
203 print_info_xi2(Display
* display
, XIDeviceInfo
*dev
, Bool shortformat
)
205 printf("%-40s\tid=%d\t[", dev
->name
, dev
->deviceid
);
208 case XIMasterPointer
:
209 printf("master pointer (%d)]\n", dev
->attachment
);
211 case XIMasterKeyboard
:
212 printf("master keyboard (%d)]\n", dev
->attachment
);
215 printf("slave pointer (%d)]\n", dev
->attachment
);
217 case XISlaveKeyboard
:
218 printf("slave keyboard (%d)]\n", dev
->attachment
);
220 case XIFloatingSlave
:
221 printf("floating slave]\n");
229 printf("\tThis device is disabled\n");
231 print_classes_xi2(display
, dev
->classes
, dev
->num_classes
);
236 list_xi2(Display
*display
,
242 int major
= XI_2_Major
,
245 int i
, j
, shortformat
;
246 XIDeviceInfo
*info
, *dev
;
248 shortformat
= (argc
== 1 && strcmp(argv
[0], "--short") == 0);
250 if (XIQueryVersion(display
, &major
, &minor
) != Success
||
251 (major
* 1000 + minor
) < (XI_2_Major
* 1000 + XI_2_Minor
))
253 fprintf(stderr
, "XI2 not supported.\n");
257 info
= XIQueryDevice(display
, XIAllDevices
, &ndevices
);
259 for(i
= 0; i
< ndevices
; i
++)
262 if (dev
->use
== XIMasterPointer
|| dev
->use
== XIMasterKeyboard
)
264 if (dev
->use
== XIMasterPointer
)
269 print_info_xi2(display
, dev
, shortformat
);
270 for (j
= 0; j
< ndevices
; j
++)
272 XIDeviceInfo
* sd
= &info
[j
];
274 if ((sd
->use
== XISlavePointer
|| sd
->use
== XISlaveKeyboard
) &&
275 (sd
->attachment
== dev
->deviceid
))
277 printf("%s ↳ ", dev
->use
== XIMasterPointer
? "⎜" : " ");
278 print_info_xi2(display
, sd
, shortformat
);
284 for (i
= 0; i
< ndevices
; i
++)
287 if (dev
->use
== XIFloatingSlave
)
290 print_info_xi2(display
, dev
, shortformat
);
295 XIFreeDeviceInfo(info
);
301 list(Display
*display
,
308 if (xinput_version(display
) == XI_2_Major
)
309 return list_xi2(display
, argc
, argv
, name
, desc
);
311 return list_xi1(display
, argc
, argv
, name
, desc
);