summaryrefslogtreecommitdiff
path: root/doc/Xinput.xml
blob: 7f576a13559d2684e05416d1adb3ed74c9d9b48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
                   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"[
 <!ENTITY % defs SYSTEM "/xserver/doc/xml/xserver.ent"> %defs;
]>

<!-- lifted from troff+ms+XMan by doclifter -->
<book id="porting">

<bookinfo>
   <title>X11 Input Extension Porting Document</title>
   <authorgroup>
      <author>
         <firstname>George</firstname><surname>Sachs</surname>
         <affiliation><orgname>Hewlett-Packard</orgname></affiliation>
      </author>
   </authorgroup>
   <releaseinfo>X Server Version &xserver.version;</releaseinfo>
   <copyright><year>1989</year><year>1990</year><year>1991</year>
     <holder>Hewlett-Packard Company</holder>
   </copyright>

<legalnotice>


<para>
Permission to use, copy, modify, and distribute this documentation for any purpose and without fee is
hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
Hewlett-Packard makes no representations about the suitability for any purpose of the information in this
document. It is provided "as is" without express or implied warranty. This document is only a draft stan-
dard of the X Consortium and is therefore subject to change.
</para>
</legalnotice>

<legalnotice>
<para role="multiLicensing">Copyright © 1989, 1990, 1991 X Consortium</para>
<para>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &ldquo;Software&rdquo;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</para>
<para>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</para>

<para>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</para>

<para>Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium.</para>

<para>X Window System is a trademark of The Open Group.</para>
</legalnotice>

</bookinfo>

<chapter id="x11_input_extension_porting_document">
<title>X11 Input Extension Porting Document</title>

<para>
This document is intended to aid the process of integrating the 
X11 Input Extension into an X server.
</para>
<para>
<!-- .LP -->
Most of the functionality provided by the input extension is 
device- and implementation-independent, and should require no changes.  
The functionality is implemented by
routines that typically reside in the server source tree directory 
extensions/server/xinput.
This extension includes functions to enable and disable input extension devices,
select input, grab and focus those device, query and change key 
and button mappings, and others.  The only input extension requirements 
for the device-dependent part of X are that the input devices be 
correctly initialized and input events from those devices be correctly
generated.  Device-dependent X is responsible for reading input data from 
the input device hardware and if necessary, reformatting it into X events.
</para>
<para>
<!-- .LP -->
The process of initializing input extension devices is similar to that used 
for the core devices, and is described in the following sections.  When
multiple input devices are attached to X server, the choice of which devices
to initially use as the core X pointer and keyboard is left 
implementation-dependent.  It is also up to each implementation to decide
whether all input devices will be opened by the server during its 
initialization and kept open for the life of the server.  The alternative is
to open only the X keyboard and X pointer during server initialization, and
open other input devices only when requested by a client to do so.  Either
type of implementation is supported by the input extension.
</para>
<para>
<!-- .LP -->
Input extension events generated by the X server use the same 32-byte xEvent
wire event as do core input events.  However, additional information must be
sent for input extension devices, requiring that multiple xEvents be generated
each time data is received from an input extension device.  These xEvents are
combined into a single client XEvent by the input extension library.  A later
section of this document describes the format and generation of input extension
events.
</para>
<sect1 id="Initializing_Extension_Devices">
<title>Initializing Extension Devices</title>
<para>
<!-- .LP -->
Extension input devices are initialized in the same manner as the core 
X input devices.  Device-Independent X provides functions that can be 
called from DDX to initialize these devices.  Which functions are called
and when will vary by implementation, and will depend on whether the 
implementation opens all the input devices available to X when X is initialized,
or waits until a client requests that a device be opened.
In the simplest case, DDX will open all input devices as part of its
initialization, when the InitInput routine is called.
</para>
<sect2 id="Summary_of_Calling_Sequence">
<title>Summary of Calling Sequence</title>
<para>
<!-- .LP -->
<literallayout class="monospaced">
Device-Independent X       |  Device-Dependent X
--------------------       |  -------------------             
                           |                                        
InitInput --------------&gt;  |  - do device-specific initialization
                           |                                        
                           |  - call AddInputDevice  (deviceProc,AutoStart)
AddInputDevice             |   
  - creates DeviceIntRec   |
  - records deviceProc     |
  - adds new device to     | 
    list of off_devices.   |
sets dev-&gt;startup=AutoStart|           
                           |  - call one of:                       
                           |    - RegisterPointerDevice (X pointer)
                           |      - processInputProc = ProcessPointerEvents
                           |    - RegisterKeyboardDevice (X keyboard)
                           |      - processInputProc = ProcessKeyboardEvents
                           |    - RegisterOtherDevice  (extension device)
                           |      - processInputProc = ProcessOtherEvents
                           |                                        
                           |                                        
InitAndStartDevices -----&gt; |  - calls deviceProc with parameters
                           |    (DEVICE_INIT, AutoStart)
sets dev-&gt;inited = return  |
  value from deviceProc    |    
                           |                                        
                           |  - in deviceProc, do one of:                       
                           |    - call InitPointerDeviceStruct (X pointer)
                           |    - call InitKeyboardDeviceStruct (X keybd)
                           |    - init extension device by calling some of:
                           |      - InitKeyClassDeviceStruct
                           |      - InitButtonClassDeviceStruct
                           |      - InitValuatorClassDeviceStruct
                           |      - InitValuatorAxisStruct
                           |      - InitFocusClassDeviceStruct
                           |      - InitProximityClassDeviceStruct
                           |      - InitKbdFeedbackClassDeviceStruct
                           |      - InitPtrFeedbackClassDeviceStruct
                           |      - InitLedFeedbackClassDeviceStruct
                           |      - InitStringFeedbackClassDeviceStruct
                           |      - InitIntegerFeedbackClassDeviceStruct
                           |      - InitBellFeedbackClassDeviceStruct
                           |    - init device name and type by:
                           |      - calling MakeAtom with one of the 
                           |        predefined names
                           |      - calling AssignTypeAndName
                           |                                        
                           |                                        
for each device added      |                                        
    by AddInputDevice,     |                                        
    InitAndStartDevices    |                                        
    calls EnableDevice if  |  - EnableDevice calls deviceProc with 
    dev-&gt;startup &amp;         |    (DEVICE_ON, AutoStart)
    dev-&gt;inited            |  
                           |                                        
If deviceProc returns      |  - core devices are now enabled, extension
    Success, EnableDevice  |    devices are now available to be accessed
    move the device from   |    through the input extension protocol
    inputInfo.off_devices  |    requests.                           
    to inputInfo.devices   |                                        
</literallayout>
</para>
</sect2>
<sect2 id="Initialization_Called_From_InitInput">
<title>Initialization Called From InitInput</title>
<para>
<!-- .LP -->
InitInput is the first DDX input entry point called during X server startup.
This routine is responsible for
device- and implementation- specific initialization, and for calling
AddInputDevice to create and initialize the DeviceIntRec structure for each
input device.  AddInputDevice is passed the address of a procedure to be called
by the DIX routine InitAndStartDevices when input devices are enabled.
This procedure is expected to perform X initialization for the input device.
</para>
<para>
<!-- .LP -->
If the device is to be used as the X pointer, DDX should then call
RegisterPointerDevice, passing the DeviceIntRec pointer,
to initialize the device as the X pointer.
</para>
<para>
<!-- .LP -->
If the device is to be used as the X keyboard, DDX should instead call
RegisterKeyboardDevice to initialize the device as the X keyboard.
</para>
<para>
<!-- .LP -->
If the device is to be used as an extension device, DDX should instead
call RegisterOtherDevice, passing the DeviceIntPtr returned by
AddInputDevice.
</para>
<para>
<!-- .LP -->
A sample InitInput implementation is shown below.
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
InitInput(argc,argv)
    {
    int i, numdevs, ReadInput();
    DeviceIntPtr dev;
    LocalDevice localdevs[LOCAL_MAX_DEVS];
    DeviceProc kbdproc, ptrproc, extproc;

    /**************************************************************
     * Open the appropriate input devices, determine which are 
     * available, and choose an X pointer and X keyboard device
     * in some implementation-dependent manner.
     ***************************************************************/

    open_input_devices (&amp;numdevs, localdevs);

    /**************************************************************
     * Register a WakeupHandler to handle input when it is generated.
     ***************************************************************/

    RegisterBlockAndWakeupHandlers (NoopDDA, ReadInput, NULL);

    /**************************************************************
     * Register the input devices with DIX.
     ***************************************************************/

    for (i=0; i&lt;numdevs; i++)
        {
        if (localdevs[i].use == IsXKeyboard)
            {
            dev = AddInputDevice (kbdproc, TRUE);
            RegisterKeyboardDevice (dev);
            }
        else if (localdevs[i].use == IsXPointer)
            {
            dev = AddInputDevice (ptrproc, TRUE);
            RegisterPointerDevice (dev);
            }
        else 
            {
            dev = AddInputDevice (extproc, FALSE);
            RegisterOtherDevice (dev);
            }
        if (dev == NULL)
            FatalError ("Too many input devices.");
        dev-&gt;devicePrivate = (pointer) &amp;localdevs[i];
        }
</literallayout>
</para>
</sect2>
<sect2 id="Initialization_Called_From_InitAndStartDevices">
<title>Initialization Called From InitAndStartDevices</title>
<para>
<!-- .LP -->
After InitInput has returned,
InitAndStartDevices is the DIX routine that is called to enable input devices. 
It calls the device control routine that was passed to AddInputDevice,
with a mode value of DEVICE_INIT.  The action taken by the device control
routine depends on how the device is to be used.  If the device is to be
the X pointer, the device control routine should call
InitPointerDeviceStruct to initialize it.  If the device is to be the
X keyboard, the device control routine should call
InitKeyboardDeviceStruct.  Since input extension devices may support various
combinations of keys, buttons, valuators, and feedbacks,
each class of input that it supports must be initialized.
Entry points are defined by DIX to initialize each of the supported classes of
input, and are described in the following sections.
</para>
<para>
<!-- .LP -->
A sample device control routine called from InitAndStartDevices is 
shown below.
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
Bool extproc (dev, mode)
    DeviceIntPtr dev;
    int mode;
    {
    LocalDevice *localdev = (LocalDevice *) dev-&gt;devicePrivate;

    switch (mode)
        {
        case DEVICE_INIT:
            if (strcmp(localdev-&gt;name, XI_TABLET) == 0)
                {
                /****************************************************
                 * This device reports proximity, has buttons,
                 * reports two axes of motion, and can be focused.
                 * It also supports the same feedbacks as the X pointer
                 * (acceleration and threshold can be set).
                 ****************************************************/

                InitButtonClassDeviceStruct (dev, button_count, button_map);
                InitValuatorClassDeviceStruct (dev, localdev-&gt;n_axes,);
                    motionproc, MOTION_BUF_SIZE, Absolute);
                for (i=0; i&lt;localdev-&gt;n_axes; i++)
                    InitValuatorAxisStruct (dev, i, min_val, max_val, 
                        resolution);
                InitFocusClassDeviceStruct (dev);
                InitProximityClassDeviceStruct (dev);
                InitPtrFeedbackClassDeviceStruct (dev, p_controlproc);
                }
            else if (strcmp(localdev-&gt;name, XI_BUTTONBOX) == 0)
                {
                /****************************************************
                 * This device has keys and LEDs, and can be focused.
                 ****************************************************/

                InitKeyClassDeviceStruct (dev, syms, modmap);
                InitFocusClassDeviceStruct (dev);
                InitLedFeedbackClassDeviceStruct (dev, ledcontrol);
                }
            else if (strcmp(localdev-&gt;name, XI_KNOBBOX) == 0)
                {
                /****************************************************
                 * This device reports motion.
                 * It can be focused.
                 ****************************************************/

                InitValuatorClassDeviceStruct (dev, localdev-&gt;n_axes,);
                    motionproc, MOTION_BUF_SIZE, Absolute);
                for (i=0; i&lt;localdev-&gt;n_axes; i++)
                    InitValuatorAxisStruct (dev, i, min_val, max_val, 
                        resolution);
                InitFocusClassDeviceStruct (dev);
                }
            localdev-&gt;atom = 
                MakeAtom(localdev-&gt;name, strlen(localdev-&gt;name), FALSE);
            AssignTypeAndName (dev, localdev-&gt;atom, localdev-&gt;name);
            break;
        case DEVICE_ON:
            AddEnabledDevice (localdev-&gt;file_ds);
            dev-&gt;on = TRUE;
            break;
        case DEVICE_OFF:
            dev-&gt;on = FALSE;
            RemoveEnabledDevice (localdev-&gt;file_ds);
            break;
        case DEVICE_CLOSE:
            break;
        }
    }
</literallayout>
</para>
<para>
<!-- .LP -->
The device control routine is called with a mode value of DEVICE_ON
by the DIX routine EnableDevice, which is called from InitAndStartDevices.  
When called with this mode, it should call AddEnabledDevice to cause the 
server to begin checking for available input from this device.
</para>
<para>
<!-- .LP -->
&gt;From InitAndStartDevices, EnableDevice is called for all devices that have
the "inited" and "startup" fields in the DeviceIntRec set to TRUE.  The
"inited" field is set by InitAndStartDevices to the value returned by
the deviceproc when called with a mode value of DEVICE_INIT.  The "startup"
field is set by AddInputDevice to value of the second parameter (autoStart).
</para>
<para>
<!-- .LP -->
When the server is first initialized, it should only be checking for input
from the core X keyboard and pointer.  One way to accomplish this is to
call AddInputDevice for the core X keyboard and pointer with an
autoStart value equal to TRUE, while calling AddInputDevice for 
input extension devices with an autoStart value equal to FALSE.  If this is 
done, EnableDevice will skip all input extension devices during server
initialization.  In this case,
the OpenInputDevice routine should set the "startup" field to TRUE
when called for input extension devices.  This will cause ProcXOpenInputDevice
to call EnableDevice for those devices when a client first does an
XOpenDevice request.
</para>
</sect2>
<sect2 id="DIX_Input_Class_Initialization_Routines">
<title>DIX Input Class Initialization Routines</title>
<para>
<!-- .LP -->
DIX routines are defined to initialize each of the defined input classes.
The defined classes are:
<!-- .RS -->
<!-- .in +5n -->
</para>
<itemizedlist>
  <listitem>
    <para>
KeyClass - the device has keys.
    </para>
  </listitem>
  <listitem>
    <para>
ButtonClass - the device has buttons.
    </para>
  </listitem>
  <listitem>
    <para>
ValuatorClass - the device reports motion data or positional data.
    </para>
  </listitem>
  <listitem>
    <para>
Proximitylass - the device reports proximity information.
    </para>
  </listitem>
  <listitem>
    <para>
FocusClass - the device can be focused.
    </para>
  </listitem>
  <listitem>
    <para>
FeedbackClass - the device supports some kind of feedback
<!-- .in -5n -->
<!-- .RE -->
    </para>
  </listitem>
</itemizedlist>
<para>
<!-- .LP -->
DIX routines are provided to initialize the X pointer and keyboard, as in
previous releases of X.  During X initialization, InitPointerDeviceStruct 
is called to initialize the X pointer, and InitKeyboardDeviceStruct is
called to initialize the X keyboard.  There is no
corresponding routine for extension input devices, since they do not all
support the same classes of input.  Instead, DDX is responsible for the 
initialization of the input classes supported by extension devices.  
A description of the routines provided by DIX to perform that initialization
follows.
</para>
<sect3 id="InitKeyClassDeviceStruct">
<title>InitKeyClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a KeyClassRec, and 
should be called for extension devices that have keys.  It is passed a pointer
to the device, and pointers to arrays of keysyms and modifiers reported by
the device.  It returns FALSE if the KeyClassRec could not be allocated,
or if the maps for the keysyms and and modifiers could not be allocated.
Its parameters are:
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
Bool
InitKeyClassDeviceStruct(dev, pKeySyms, pModifiers)
    DeviceIntPtr dev;
    KeySymsPtr pKeySyms;
    CARD8 pModifiers[];
</literallayout>
</para>
<para>
<!-- .LP -->
The DIX entry point InitKeyboardDeviceStruct calls this routine for the
core X keyboard.  It must be called explicitly for extension devices
that have keys.
</para>
</sect3>
<sect3 id="InitButtonClassDeviceStruct">
<title>InitButtonClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a ButtonClassRec, and 
should be called for extension devices that have buttons.  It is passed a 
pointer to the device, the number of buttons supported, and a map of the 
reported button codes.  It returns FALSE if the ButtonClassRec could not be 
allocated.  Its parameters are:
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
Bool
InitButtonClassDeviceStruct(dev, numButtons, map)
    register DeviceIntPtr dev;
    int numButtons;
    CARD8 *map;
</literallayout>
</para>
<para>
<!-- .LP -->
The DIX entry point InitPointerDeviceStruct calls this routine for the
core X pointer.  It must be called explicitly for extension devices that
have buttons.
</para>
</sect3>
<sect3 id="InitValuatorClassDeviceStruct">
<title>InitValuatorClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a ValuatorClassRec, and 
should be called for extension devices that have valuators.  It is passed the
number of axes of motion reported by the device, the address of the motion
history procedure for the device, the size of the motion history buffer,
and the mode (Absolute or Relative) of the device.  It returns FALSE if 
the ValuatorClassRec could not be allocated.  Its parameters are:
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
Bool
InitValuatorClassDeviceStruct(dev, numAxes, motionProc, numMotionEvents, mode)
    DeviceIntPtr dev;
    int (*motionProc)();
    int numAxes;
    int numMotionEvents;
    int mode;
</literallayout>
</para>
<para>
<!-- .LP -->
The DIX entry point InitPointerDeviceStruct calls this routine for the
core X pointer.  It must be called explicitly for extension devices that
report motion.
</para>
</sect3>
<sect3 id="InitValuatorAxisStruct">
<title>InitValuatorAxisStruct</title>
<para>
<!-- .LP -->
This function is provided to initialize an XAxisInfoRec, and 
should be called for core and extension devices that have valuators.  
The space for the XAxisInfoRec is allocated by 
the InitValuatorClassDeviceStruct function, but is not initialized.
</para>
<para>
<!-- .LP -->
InitValuatorAxisStruct should be called once for each axis of motion 
reported by the device.  Each
invocation should be passed the axis number (starting with 0), the
minimum value for that axis, the maximum value for that axis, and the
resolution of the device in counts per meter.  If the device reports
relative motion, 0 should be reported as the minimum and maximum values.
InitValuatorAxisStruct has the following parameters:
<literallayout class="monospaced">
InitValuatorAxisStruct(dev, axnum, minval, maxval, resolution)
    DeviceIntPtr dev;
    int axnum;
    int minval;
    int maxval;
    int resolution;
</literallayout>
</para>
<para>
<!-- .LP -->
This routine is not called by InitPointerDeviceStruct for the
core X pointer.  It must be called explicitly for core and extension devices 
that report motion.
</para>
</sect3>
<sect3 id="InitFocusClassDeviceStruct">
<title>InitFocusClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a FocusClassRec, and 
should be called for extension devices that can be focused.  It is passed a
pointer to the device, and returns FALSE if the allocation fails.
It has the following parameter:
<literallayout class="monospaced">
Bool
InitFocusClassDeviceStruct(dev)
    DeviceIntPtr dev;
</literallayout>
</para>
<para>
<!-- .LP -->
The DIX entry point InitKeyboardDeviceStruct calls this routine for the
core X keyboard.  It must be called explicitly for extension devices
that can be focused.  Whether or not a particular device can be focused
is left implementation-dependent.
</para>
</sect3>
<sect3 id="InitProximityClassDeviceStruct">
<title>InitProximityClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a ProximityClassRec, and 
should be called for extension absolute pointing devices that report proximity.
It is passed a pointer to the device, and returns FALSE if the allocation fails.
It has the following parameter:
<literallayout class="monospaced">
Bool
InitProximityClassDeviceStruct(dev)
    DeviceIntPtr dev;
</literallayout>
</para>
</sect3>
<sect3 id="Initializing_Feedbacks">
<title>Initializing Feedbacks</title>
<para>
<!-- .LP -->
</para>
<sect4 id="InitKbdFeedbackClassDeviceStruct">
<title>InitKbdFeedbackClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a KbdFeedbackClassRec, and 
may be called for extension devices that support some or all of the 
feedbacks that the core keyboard supports.  It is passed a
pointer to the device, a pointer to the procedure that sounds the bell,
and a pointer to the device control procedure.
It returns FALSE if the allocation fails, and has the following parameters:
<literallayout class="monospaced">
Bool
InitKbdFeedbackClassDeviceStruct(dev, bellProc, controlProc)
    DeviceIntPtr dev;
    void (*bellProc)();
    void (*controlProc)();
</literallayout>
The DIX entry point InitKeyboardDeviceStruct calls this routine for the
core X keyboard.  It must be called explicitly for extension devices
that have the same feedbacks as a keyboard.  Some feedbacks, such as LEDs and
bell, can be supported either with a KbdFeedbackClass or with BellFeedbackClass
and LedFeedbackClass feedbacks.
</para>
</sect4>
<sect4 id="InitPtrFeedbackClassDeviceStruct">
<title>InitPtrFeedbackClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a PtrFeedbackClassRec, and 
should be called for extension devices that allow the setting of acceleration
and threshold.  It is passed a pointer to the device,
and a pointer to the device control procedure.
It returns FALSE if the allocation fails, and has the following parameters:
<literallayout class="monospaced">
Bool
InitPtrFeedbackClassDeviceStruct(dev, controlProc)
    DeviceIntPtr dev;
    void (*controlProc)();
</literallayout>
</para>
<para>
<!-- .LP -->
The DIX entry point InitPointerDeviceStruct calls this routine for the
core X pointer.  It must be called explicitly for extension devices
that support the setting of acceleration and threshold.
</para>
</sect4>
<sect4 id="InitLedFeedbackClassDeviceStruct">
<title>InitLedFeedbackClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a LedFeedbackClassRec, and 
should be called for extension devices that have LEDs.
It is passed a pointer to the device,
and a pointer to the device control procedure.
It returns FALSE if the allocation fails, and has the following parameters:
<literallayout class="monospaced">
Bool
InitLedFeedbackClassDeviceStruct(dev, controlProc)
    DeviceIntPtr dev;
    void (*controlProc)();
</literallayout>
</para>
<para>
<!-- .LP -->
Up to 32 LEDs per feedback can be supported, and a device may have 
multiple feedbacks of the same type.
</para>
</sect4>
<sect4 id="InitBellFeedbackClassDeviceStruct">
<title>InitBellFeedbackClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a BellFeedbackClassRec, 
and should be called for extension devices that have a bell.
It is passed a pointer to the device,
and a pointer to the device control procedure.
It returns FALSE if the allocation fails, and has the following parameters:
<literallayout class="monospaced">
Bool
InitBellFeedbackClassDeviceStruct(dev, bellProc, controlProc)
    DeviceIntPtr dev;
    void (*bellProc)();
    void (*controlProc)();
</literallayout>
</para>
</sect4>
<sect4 id="InitStringFeedbackClassDeviceStruct">
<title>InitStringFeedbackClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize a StringFeedbackClassRec, 
and should be called for extension devices that have a display upon which a 
string can be displayed.
It is passed a pointer to the device,
and a pointer to the device control procedure.
It returns FALSE if the allocation fails, and has the following parameters:
<literallayout class="monospaced">
Bool
InitStringFeedbackClassDeviceStruct(dev, controlProc, max_symbols, 
	num_symbols_supported, symbols)
    DeviceIntPtr dev;
    void (*controlProc)();
    int max_symbols:
    int num_symbols_supported;
    KeySym *symbols;
</literallayout>
</para>
</sect4>
<sect4 id="InitIntegerFeedbackClassDeviceStruct">
<title>InitIntegerFeedbackClassDeviceStruct</title>
<para>
<!-- .LP -->
This function is provided to allocate and initialize an 
IntegerFeedbackClassRec, 
and should be called for extension devices that have a display upon which an
integer can be displayed.
It is passed a pointer to the device,
and a pointer to the device control procedure.
It returns FALSE if the allocation fails, and has the following parameters:
<literallayout class="monospaced">
Bool
InitIntegerFeedbackClassDeviceStruct(dev, controlProc)
    DeviceIntPtr dev;
    void (*controlProc)();
</literallayout>
</para>
</sect4>
</sect3>
</sect2>
<sect2 id="Initializing_The_Device_Name_And_Type">
<title>Initializing The Device Name And Type</title>
<para>
<!-- .LP -->
The device name and type can be initialized by calling AssignTypeAndName
with the following parameters:
<literallayout class="monospaced">
void
AssignTypeAndName(dev, type, name)
    DeviceIntPtr dev;
    Atom type;
    char *name;
</literallayout>
</para>
<para>
<!-- .LP -->
This will allocate space for the device name and copy the name that was passed.
The device type can be obtained by calling MakeAtom with one of the names
defined for input devices.  MakeAtom has the following parameters:
<literallayout class="monospaced">
Atom
MakeAtom(name, len, makeit)
    char *name;
    int len;
    Bool makeit;
</literallayout>
</para>
<para>
<!-- .LP -->
Since the atom was already made when the input extension was initialized, the
value of makeit should be FALSE;
</para>
</sect2>
</sect1>
<sect1 id="Closing_Extension_Devices">
<title>Closing Extension Devices</title>
<para>
<!-- .LP -->
The DisableDevice entry point is provided by DIX to disable input devices.
It calls the device control routine for the specified
device with a mode value of DEVICE_OFF.  The device control routine should
call RemoveEnabledDevice to stop the server from checking for input from
that device.
</para>
<para>
<!-- .LP -->
DisableDevice is not called by any input extension routines.  It can be 
called from the CloseInputDevice routine, which is called by
ProcXCloseDevice when a client makes an XCloseDevice request.  If
DisableDevice is called, it should only be called when the last client
using the extension device has terminated or called XCloseDevice.
</para>
</sect1>
<sect1 id="Implementation_Dependent_Routines">
<title>Implementation-Dependent Routines</title>
<para>
<!-- .LP -->
Several input extension protocol requests have 
implementation-dependent  entry points.  Default routines
are defined for these entry points and contained in the source
file extensions/server/xinput/xstubs.c.  Some implementations may
be able to use the default routines without change.
The following sections describe each of these routines.
</para>
<sect2 id="AddOtherInputDevices">
<title>AddOtherInputDevices</title>
<para>
<!-- .LP -->
AddOtherInputDevice is called from ProcXListInputDevices as a result of 
an XListInputDevices protocol request.  It may be needed by
implementations that do not open extension input devices until requested
to do so by some client.  These implementations may not initialize
all devices when the X server starts up, because some of those devices
may be in use.  Since the XListInputDevices
function only lists those devices that have been initialized,
AddOtherInputDevices is called to give DDX a chance to 
initialize any previously unavailable input devices.
</para>
<para>
<!-- .LP -->
A sample AddOtherInputDevices routine might look like the following:
<literallayout class="monospaced">
void
AddOtherInputDevices ()
    {
    DeviceIntPtr dev;
    int i;

    for (i=0; i&lt;MAX_DEVICES; i++) 
        {
        if (!local_dev[i].initialized &amp;&amp; available(local_dev[i]))
            {
            dev = (DeviceIntPtr) AddInputDevice (local_dev[i].deviceProc, TRUE);
            dev-&gt;public.devicePrivate = local_dev[i];
            RegisterOtherDevice (dev);
            dev-&gt;inited = ((*dev-&gt;deviceProc)(dev, DEVICE_INIT) == Success);
            }
        }
    }
</literallayout>
</para>
<para>
<!-- .LP -->
The default AddOtherInputDevices routine in xstubs.c does nothing.
If all input extension devices are initialized when the server 
starts up, it can be left as a null routine.
</para>
</sect2>
<sect2 id="OpenInputDevice">
<title>OpenInputDevice</title>
<para>
<!-- .LP -->
Some X server implementations open all input devices when the server
is initialized and never close them.  Other implementations may open only
the X pointer and keyboard devices during server initialization,
and open other input devices only when some client makes an
XOpenDevice request.  This entry point is for the latter type of 
implementation.
</para>
<para>
<!-- .LP -->
If the physical device is not already open, it can be done in this routine.  
In this case, the server must keep track of the fact that one or more clients 
have the device open, and physically close it when the last client that has
it open makes an XCloseDevice request.
</para>
<para>
<!-- .LP -->
The default implementation is to do nothing (assume all input devices
are opened during X server initialization and kept open).
</para>
</sect2>
<sect2 id="CloseInputDevice">
<title>CloseInputDevice</title>
<para>
<!-- .LP -->
Some implementations may close an input device when the last client
using that device requests that it be closed, or terminates.
CloseInputDevice is called from ProcXCloseDevice when a client
makes an XCloseDevice protocol request.
</para>
<para>
<!-- .LP -->
The default implementation is to do nothing (assume all input devices
are opened during X server initialization and kept open).
</para>
</sect2>
<sect2 id="SetDeviceMode">
<title>SetDeviceMode</title>
<para>
<!-- .LP -->
Some implementations support input devices that can report 
either absolute positional data or relative motion.  The XSetDeviceMode
protocol request is provided to allow DDX to change the current mode of 
such a device.
</para>
<para>
<!-- .LP -->
The default implementation is to always return a BadMatch error.  If the
implementation does not support any input devices that are capable of 
reporting both relative motion and absolute position information, the
default implementation may be left unchanged.
</para>
</sect2>
<sect2 id="SetDeviceValuators">
<title>SetDeviceValuators</title>
<para>
<!-- .LP -->
Some implementations support input devices that allow their valuators to be 
set to an initial value.  The XSetDeviceValuators 
protocol request is provided to allow DDX to set the valuators of
such a device.
</para>
<para>
<!-- .LP -->
The default implementation is to always return a BadMatch error.  If the
implementation does not support any input devices that are allow their
valuators to be set, the default implementation may be left unchanged.
</para>
</sect2>
<sect2 id="ChangePointerDevice">
<title>ChangePointerDevice</title>
<para>
<!-- .LP -->
The XChangePointerDevice protocol request is provided to change which device is
used as the X pointer.  Some implementations may maintain information
specific to the X pointer in the private data structure pointed to by
the DeviceIntRec.  ChangePointerDevice is called to allow such 
implementations to move that information to the new pointer device.
The current location of the X cursor is an example of the type of 
information that might be affected.
</para>
<para>
<!-- .LP -->
The DeviceIntRec structure that describes the X pointer device does not 
contain a FocusRec.  If the device that has been made into the new X pointer 
was previously a device that could be focused, ProcXChangePointerDevice will 
free the FocusRec associated with that device.
</para>
<para>
<!-- .LP -->
If the server implementation desires to allow clients to focus the old pointer 
device (which is now accessible through the input extension), it should call
InitFocusClassDeviceStruct for the old pointer device.
</para>
<para>
<!-- .LP -->
The XChangePointerDevice protocol request also allows the client
to choose which axes of the new pointer device are used to move 
the X cursor in the X- and Y- directions.  If the axes are different
than the default ones, the server implementation should record that fact.
</para>
<para>
<!-- .LP -->
If the server implementation supports input devices with valuators that 
are not allowed to be used as the X pointer, they should be screened out
by this routine and a  BadDevice error returned.
</para>
<para>
<!-- .LP -->
The default implementation is to do nothing. 
</para>
</sect2>
<sect2 id="ChangeKeyboardDevice">
<title>ChangeKeyboardDevice</title>
<para>
<!-- .LP -->
The XChangeKeyboardDevice protocol request is provided to change which device is
used as the X keyboard.  Some implementations may maintain information
specific to the X keyboard in the private data structure pointed to by
the DeviceIntRec.  ChangeKeyboardDevice is called to allow such 
implementations to move that information to the new keyboard device.
</para>
<para>
<!-- .LP -->
The X keyboard device can be focused, and the DeviceIntRec that describes
that device has a FocusRec.  If the device that has been made into the new X 
keyboard did not previously have a FocusRec, 
ProcXChangeKeyboardDevice will allocate one for it.
</para>
<para>
<!-- .LP -->
If the implementation does not want clients to be able to focus the old X 
keyboard (which has now become available as an input extension device)
it should call DeleteFocusClassDeviceStruct to free the FocusRec.
</para>
<para>
<!-- .LP -->
If the implementation supports input devices with keys that are not allowed
to be used as the X keyboard, they should be checked for here, and a
BadDevice error returned.
</para>
<para>
<!-- .LP -->
The default implementation is to do nothing. 
</para>
</sect2>
</sect1>
<sect1 id="Input_Extension_Events">
<title>Input Extension Events</title>
<para>
<!-- .LP -->
Events accessed through the input extension are analogous to the core input
events, but have different event types.  They are of types 
<function>DeviceKeyPress</function>, <function>DeviceKeyRelease</function>, <function>DeviceButtonPress</function>,
<function>DeviceButtonRelease</function>, <function>DeviceDeviceMotionNotify</function>,
<function>DeviceProximityIn</function>, <function>DeviceProximityOut</function>, and <function>DeviceValuator</function>.
These event types are not constants.  Instead, they are external integers 
defined by the input extension.  Their actual values will depend on which
extensions are supported by a server, and the order in which they are
initialized.
</para>
<para>
<!-- .LP -->
The data structures that define these
events are defined in the file <function>extensions/include/XIproto.h</function>.  Other
input extension constants needed by DDX are defined in the file
<function>extensions/include/XI.h</function>.
</para>
<para>
<!-- .LP -->
Some events defined by the input extension contain more information than can
be contained in the 32-byte xEvent data structure.  To send this information
to clients, DDX must generate two or more 32-byte wire events.  The following
sections describe the contents of these events. 
</para>
<sect2 id="Device_Key_Events">
<title>Device Key Events</title>
<para>
<!-- .LP -->
<function>DeviceKeyPresss</function> events contain all the information that is contained in
a core <function>KeyPress</function> event, and also the following additional information:
</para>
<para>
<!-- .LP -->
<!-- .RS -->
<!-- .in +5n -->
</para>
<itemizedlist>
  <listitem>
    <para>
deviceid - the identifier of the device that generated the event.
    </para>
  </listitem>
  <listitem>
    <para>
device_state - the state of any modifiers on the device that generated the event
    </para>
  </listitem>
  <listitem>
    <para>
num_valuators - the number of valuators reported in this event.
    </para>
  </listitem>
  <listitem>
    <para>
first_valuator - the first valuator reported in this event.
    </para>
  </listitem>
  <listitem>
    <para>
valuator0 through valuator5 - the values of the valuators.
<!-- .in -5n -->
<!-- .RE -->
    </para>
  </listitem>
</itemizedlist>
<para>
<!-- .LP -->
In order to pass this information to the input extension library, two 32-byte
wire events must be generated by DDX.  The first has an event type of 
<function>DeviceKeyPress</function>, and the second has an event type of \fPDeviceValuator\fP.
</para>
<para>
<!-- .LP -->
The following code fragment shows how the two wire events could be initialized:
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
    extern int DeviceKeyPress;
    DeviceIntPtr dev;
    xEvent xE[2];
    CARD8 id, num_valuators;
    INT16 x, y, pointerx, pointery;
    Time timestamp;
    deviceKeyButtonPointer *xev = (deviceKeyButtonPointer *) xE;
    deviceValuator *xv;

    xev-&gt;type = DeviceKeyPress;                /* defined by input extension */
    xev-&gt;detail = keycode;              /* key pressed on this device */
    xev-&gt;time = timestamp;              /* same as for core events    */
    xev-&gt;rootX = pointerx;              /* x location of core pointer */
    xev-&gt;rootY = pointery;              /* y location of core pointer */

    /******************************************************************/
    /*                                                                */
    /* The following field does not exist for core input events.      */
    /* It contains the device id for the device that generated the    */
    /* event, and also indicates whether more than one 32-byte wire   */
    /* event is being sent.                                           */
    /*                                                                */
    /******************************************************************/

    xev-&gt;deviceid = dev-&gt;id | MORE_EVENTS;        /* sending more than 1*/

    /******************************************************************/
    /* Fields in the second 32-byte wire event:                       */
    /******************************************************************/

    xv = (deviceValuator *) ++xev;
    xv-&gt;type = DeviceValuator;          /* event type of second event */
    xv-&gt;deviceid = dev-&gt;id;             /* id of this device          */
    xv-&gt;num_valuators = 0;              /* no valuators being sent    */
    xv-&gt;device_state  = 0;              /* will be filled in by DIX   */
</literallayout>
</para>
</sect2>
<sect2 id="Device_Button_Events">
<title>Device Button Events</title>
<para>
<!-- .LP -->
<function>DeviceButton</function> events contain all the information that is contained in
a core button event, and also the same additional information that a 
<function>DeviceKey</function> event contains.
</para>
</sect2>
<sect2 id="Device_Motion_Events">
<title>Device Motion Events</title>
<para>
<!-- .LP -->
<function>DeviceMotion</function> events contain all the information that is contained in
a core motion event, and also additional valuator information.  At least
two wire events are required to contain this information.
The following code fragment shows how the two wire events could be initialized:
</para>
<para>
<!-- .LP -->
<literallayout class="monospaced">
    extern int DeviceMotionNotify;
    DeviceIntPtr dev;
    xEvent xE[2];
    CARD8 id, num_valuators;
    INT16 x, y, pointerx, pointery;
    Time timestamp;
    deviceKeyButtonPointer *xev = (deviceKeyButtonPointer *) xE;
    deviceValuator *xv;

    xev-&gt;type = DeviceMotionNotify;     /* defined by input extension */
    xev-&gt;detail = keycode;              /* key pressed on this device */
    xev-&gt;time = timestamp;              /* same as for core events    */
    xev-&gt;rootX = pointerx;              /* x location of core pointer */
    xev-&gt;rootY = pointery;              /* y location of core pointer */

    /******************************************************************/
    /*                                                                */
    /* The following field does not exist for core input events.      */
    /* It contains the device id for the device that generated the    */
    /* event, and also indicates whether more than one 32-byte wire   */
    /* event is being sent.                                           */
    /*                                                                */
    /******************************************************************/

    xev-&gt;deviceid = dev-&gt;id | MORE_EVENTS;        /* sending more than 1*/

    /******************************************************************/
    /* Fields in the second 32-byte wire event:                       */
    /******************************************************************/

    xv = (deviceValuator *) ++xev;
    xv-&gt;type = DeviceValuator;          /* event type of second event */
    xv-&gt;deviceid = dev-&gt;id;             /* id of this device          */
    xv-&gt;num_valuators = 2;              /* 2 valuators being sent     */
    xv-&gt;first_valuator = 0;             /* first valuator being sent  */
    xv-&gt;device_state  = 0;              /* will be filled in by DIX   */
    xv-&gt;valuator0 = x;                  /* first axis of this device  */
    xv-&gt;valuator1 = y;                  /* second axis of this device */
</literallayout>
</para>
<para>
<!-- .LP -->
Up to six axes can be reported in the deviceValuator event.  If the device
is reporting more than 6 axes, additional pairs of DeviceMotionNotify and
DeviceValuator events should be sent,  with the first_valuator field
set correctly.
</para>
</sect2>
<sect2 id="Device_Proximity_Events">
<title>Device Proximity Events</title>
<para>
<!-- .LP -->
Some input devices that report absolute positional information, such as 
graphics tablets and touchscreens, may report proximity events.  
<function>ProximityIn</function>
events are generated when a pointing device like a stylus, or in the case
of a touchscreen, the user's finger, comes into close proximity with the
surface of the input device.  <function>ProximityOut</function> events are generated when
the stylus or finger leaves the proximity of the input devices surface.
</para>
<para>
<!-- .LP -->
<function>Proximity</function> events contain almost the same information as button events.
The event type is <function>ProximityIn</function> or <function>ProximityOut</function>, and there is no
detail information.
<!-- .bp -->
<!-- .\" .TC -->

</para>
</sect2>
</sect1>
</chapter>
</book>