Copyright (c) 2005 X.Org Foundation L.L.C. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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 AUTHORS OR COPYRIGHT HOLDERS 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. Copyright (c) Applied Testing and Technology, Inc. 1995 All Rights Reserved. >># Project: VSW5 >># >># File: xts5/XI/chngdvckym/chngdvckym.m >># >># Description: >># Tests for XChangeDeviceKeyMapping() >># >># Modifications: >># $Log: chngdvkmap.m,v $ >># Revision 1.2 2005-11-03 08:42:04 jmichael >># clean up all vsw5 paths to use xts5 instead. >># >># Revision 1.1.1.2 2005/04/15 14:05:13 anderson >># Reimport of the base with the legal name in the copyright fixed. >># >># Revision 8.0 1998/12/23 23:31:55 mar >># Branch point for Release 5.0.2 >># >># Revision 7.0 1998/10/30 22:52:01 mar >># Branch point for Release 5.0.2b1 >># >># Revision 6.0 1998/03/02 05:23:30 tbr >># Branch point for Release 5.0.1 >># >># Revision 5.0 1998/01/26 03:20:02 tbr >># Branch point for Release 5.0.1b1 >># >># Revision 4.0 1995/12/15 09:03:28 tbr >># Branch point for Release 5.0.0 >># >># Revision 3.1 1995/12/15 01:01:21 andy >># Prepare for GA Release >># /* Copyright (c) 1990, 1991 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), 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: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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. 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. Copyright 1993 by the Hewlett-Packard Company. Copyright 1990, 1991 UniSoft Group Limited. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the names of HP, and UniSoft not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. HP, and UniSoft make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. */ >>TITLE XChangeDeviceKeyMapping XI void Display *display = Dsp; XDevice *device; int first_keycode = Min_KeyCode; int keysyms_per_keycode = 1; KeySym *keysyms = Keys; int num_codes = 2; >>EXTERN extern ExtDeviceInfo Devs; static int Min_KeyCode, Max_KeyCode; #define MAXKPK 5 /* Maximum keysyms_per_keycode we will use */ #define MAXCODES 255 /* Max number of keycodes we will use */ static int ncodes; static int kpk; /* Keysyms per keycode */ static KeySym *oldkeym; /* * Can't really assume that there are any particular keysym names defined so * we use our own arbitrary values. */ #define XT_KSYM1 0x5678 #define XT_KSYM2 0x9328 static KeySym Keys[MAXKPK*MAXCODES] = { XT_KSYM1, XT_KSYM2}; /* * Set startup and cleanup functions to save and restore * the original keyboard map. */ >>SET startup savekeymap static void savekeymap() { int numkeys; startup(); if(Dsp) { if (!Setup_Extension_DeviceInfo(KeyMask)) return; MinMaxKeys(Dsp, Devs.Key, &Min_KeyCode, &Max_KeyCode, &numkeys); ncodes = Max_KeyCode - Min_KeyCode; oldkeym = XGetDeviceKeyMapping(Dsp, Devs.Key, Min_KeyCode, ncodes, &kpk); } } >>SET cleanup cleankeymap static void cleankeymap() { if(Dsp) { if (Devs.Key) XChangeDeviceKeyMapping(Dsp, Devs.Key, Min_KeyCode, kpk, oldkeym, ncodes); XFree((char*) oldkeym); XSync(Dsp,0); } cleanup(); } >>ASSERTION Good B 3 A call to xname associates .A keysyms_per_keycode KeySyms for each of the .A num_codes KeyCodes starting with .A first_keycode , with the KeySyms being taken from the array .A keysyms . >>STRATEGY Set up keysym array. Call xname. Verify that keyboard mapping has been changed. >>CODE int i, j; int newkpk; KeySym *newmap; if (!Devs.Key) { untested("%s: No input extension key device.\n", TestName); return; } device = Devs.Key; first_keycode = Min_KeyCode+3; keysyms_per_keycode = MAXKPK; num_codes = 6; for (i = 0; i < keysyms_per_keycode*num_codes; i++) keysyms[i] = XT_KSYM1; XCALL; newmap = XGetDeviceKeyMapping(display, Devs.Key, first_keycode, num_codes, &newkpk); for (i = 0; i < num_codes; i++) { for (j = 0; j < keysyms_per_keycode; j++) { if (keysyms[i*keysyms_per_keycode+j] == newmap[i*newkpk+j]) CHECK; else { report("Keysym for keycode %d was 0x%x, expecting 0x%x", first_keycode+i, newmap[i*newkpk+j], keysyms[i*keysyms_per_keycode+j]); FAIL; break; /* probably pointless to continue */ } } } CHECKPASS(keysyms_per_keycode*num_codes); XFree((char*)newmap); >>ASSERTION Good B 3 The KeySyms for KeyCodes outside the specified range remain unchanged. >>STRATEGY Get current keymap. Call xname to change part of the map. Verify that there is no change outside the specified range. >>CODE KeySym *oldmap; int oldkpk; KeySym *newmap; int newkpk; int i, j; int oldind, newind; if (!Devs.Key) { untested("%s: No input extension key device.\n", TestName); return; } device = Devs.Key; oldmap = XGetDeviceKeyMapping(display, Devs.Key, Min_KeyCode, ncodes, &oldkpk); first_keycode = Min_KeyCode+2; XCALL; newmap = XGetDeviceKeyMapping(display, Devs.Key, Min_KeyCode, ncodes, &newkpk); for (i = 0; i < ncodes; i++) { /* Skip the ones that were changed. */ if (i + Min_KeyCode >= first_keycode && i + Min_KeyCode < first_keycode+num_codes) continue; /* * The call may have altered the number of keysyms per keycode, * so must only check that the previously set position have * not changed. Expansion should have been filled with NoSymbol. */ for (j = 0; j < oldkpk; j++) { oldind = i*oldkpk + j; newind = i*newkpk + j; if (oldmap[oldind] == newmap[newind]) CHECK; else { report("Keysym outside of range altered"); report(" keycode %d was 0x%x, expecting 0x%x", Min_KeyCode+i, newmap[newind], oldmap[oldind]); FAIL; } } } /* Number of codes that should not have been changed is ncodes-num_codes */ CHECKPASS((ncodes - num_codes)*oldkpk); >>ASSERTION Good B 3 A call to xname generates a .S DeviceMappingNotify event. >>STRATEGY Call xname. Verify that a DeviceMappingNotify event is generated. >>CODE XEvent ev; XDeviceMappingEvent good; int n; int dmn; XEventClass dmnc; if (!Devs.Key) { untested("%s: No input extension key device.\n", TestName); return; } DeviceMappingNotify(Devs.Key, dmn, dmnc); SelectExtensionEvents (display,DefaultRootWindow(display)); device = Devs.Key; first_keycode = Min_KeyCode + 2; num_codes = 3; XCALL; defsetevent(good, display, dmn); good.window = None; /* unused */ good.request = MappingKeyboard; good.first_keycode = first_keycode; good.count = num_codes; good.deviceid = Devs.Key->device_id; n = getevent(display, &ev); if (n == 0) { report("Expecting one DeviceMappingEvent"); FAIL; return; } else CHECK; if (checkevent((XEvent*)&good, &ev)) FAIL; else CHECK; CHECKPASS(2); >>ASSERTION Good B 3 It is legal for the KeySym .S NoSymbol to appear anywhere in the KeySym list for a particular KeyCode. >>STRATEGY Call xname with the KeySym NoSymbol in the list. Verify that no error occurs. >>CODE if (!Devs.Key) { untested("%s: No input extension key device.\n", TestName); return; } device = Devs.Key; first_keycode = Min_KeyCode; Keys[0] = NoSymbol; XCALL; if (geterr() == Success) PASS; >>ASSERTION Bad B 3 When .A first_keycode is less than the value of min_keycode returned by .F XDisplayKeycodes , then a .S BadValue error occurs. >>STRATEGY Set first_keycode to a value less than min_keycode. Call xname. Verify that a BadValue error occurs. >>CODE BadValue if (!Devs.Key) { untested("%s: No input extension key device.\n", TestName); return; } device = Devs.Key; first_keycode = Min_KeyCode-1; XCALL; if (geterr() == BadValue) PASS; >>ASSERTION Bad B 3 When .A first_keycode + num_codes \- 1 is greater than the value of max_keycode returned by .F XDisplayKeycodes , then a .S BadValue error occurs. >>STRATEGY Set end of range to beyond max_keycode. Call xname. Verify that a BadValue error occurs. >>CODE BadValue if (!Devs.Key) { untested("%s: No input extension key device.\n", TestName); return; } device = Devs.Key; num_codes = Max_KeyCode - Min_KeyCode; first_keycode = Min_KeyCode+10; XCALL; if (geterr() == BadValue) PASS; >>ASSERTION Bad B 3 .ER BadAlloc