home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / Xlib_ModMap.c < prev    next >
C/C++ Source or Header  |  1999-11-02  |  6KB  |  206 lines

  1. /* $XConsortium: ModMap.c /main/15 1996/10/22 14:20:24 kaleb $ */
  2. /*
  3.  
  4. Copyright (c) 1986  X Consortium
  5.  
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12.  
  13. The above copyright notice and this permission notice shall be included in
  14. all copies or substantial portions of the Software.
  15.  
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  19. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  20. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22.  
  23. Except as contained in this notice, the name of the X Consortium shall not be
  24. used in advertising or otherwise to promote the sale, use or other dealings
  25. in this Software without prior written authorization from the X Consortium.
  26.  
  27. */
  28.  
  29. #define NEED_REPLIES
  30. #include "Xlib_private.h"
  31. #include "x11pmvk.h"
  32.  
  33. XModifierKeymap *
  34. XGetModifierMapping(dpy)
  35.      register Display *dpy;
  36. {       
  37.     DBUG_ENTER("XGetModifierMapping")
  38.     XModifierKeymap *res, *rc;
  39.  
  40.     res = XNewModifiermap(8);
  41.     if (!res) DBUG_RETURN(NULL);
  42.  
  43.     DBUG_POINT("ShiftMapIndex");
  44.     if ((rc = XInsertModifiermapEntry(res, 0xaa, ShiftMapIndex))) res=rc;
  45.     if ((rc = XInsertModifiermapEntry(res, 0xb6, ShiftMapIndex))) res=rc;
  46.     DBUG_POINT("LockMapIndex");
  47.     if ((rc = XInsertModifiermapEntry(res, 0xba, LockMapIndex))) res=rc;
  48.     DBUG_POINT("ControlMapIndex");
  49.     if ((rc = XInsertModifiermapEntry(res, 0x9d, ControlMapIndex))) res=rc;
  50.     if ((rc = XInsertModifiermapEntry(res, 0xdb, ControlMapIndex))) res=rc;
  51.     DBUG_POINT("Mod1MapIndex");
  52.     if ((rc = XInsertModifiermapEntry(res, 0x11, Mod1MapIndex))) res=rc;
  53.     DBUG_POINT("Mod2MapIndex");
  54.     if ((rc = XInsertModifiermapEntry(res, 0xb8, Mod2MapIndex))) res=rc;
  55.     if ((rc = XInsertModifiermapEntry(res, 0xde, Mod2MapIndex))) res=rc;
  56.  
  57.     DBUG_POINT("SyncHandle()");
  58.     SyncHandle();
  59.     DBUG_RETURN(res);
  60. }
  61.  
  62. /*
  63.  *    Returns:
  64.  *    0    Success
  65.  *    1    Busy - one or more old or new modifiers are down
  66.  *    2    Failed - one or more new modifiers unacceptable
  67.  */
  68. #if 0
  69. int
  70. XSetModifierMapping(dpy, modifier_map)
  71.     register Display *dpy;
  72.     register XModifierKeymap *modifier_map;
  73. {
  74.     register xSetModifierMappingReq *req;
  75.     xSetModifierMappingReply rep;
  76.     int         mapSize = modifier_map->max_keypermod << 3;    /* 8 modifiers */
  77.  
  78.     LockDisplay(dpy);
  79.     GetReqExtra(SetModifierMapping, mapSize, req);
  80.  
  81.     req->numKeyPerModifier = modifier_map->max_keypermod;
  82.  
  83.     memcpy((char *) NEXTPTR(req,xSetModifierMappingReq),
  84.        (char *) modifier_map->modifiermap,
  85.        mapSize);
  86.  
  87.     (void) _XReply(dpy, (xReply *) & rep,
  88.     (SIZEOF(xSetModifierMappingReply) - SIZEOF(xReply)) >> 2, xTrue);
  89.     UnlockDisplay(dpy);
  90.     SyncHandle();
  91.     return (rep.success);
  92. }
  93. #endif
  94.  
  95. XModifierKeymap *
  96. XNewModifiermap(keyspermodifier)
  97.     int keyspermodifier;
  98. {
  99.     DBUG_ENTER("XNewModifiermap")
  100.     XModifierKeymap *res = (XModifierKeymap *) Xmalloc((sizeof (XModifierKeymap)));
  101.     if (res) {
  102.     res->max_keypermod = keyspermodifier;
  103.     res->modifiermap = (keyspermodifier > 0 ?
  104.                 (KeyCode *) Xmalloc((unsigned) (8 * keyspermodifier))
  105.                 : (KeyCode *) NULL);
  106.     if (keyspermodifier && (res->modifiermap == NULL)) {
  107.         Xfree((char *) res);
  108.         DBUG_RETURN((XModifierKeymap *) NULL);
  109.     }
  110.     }
  111.     DBUG_RETURN(res);
  112. }
  113.  
  114.  
  115. int XFreeModifiermap(map)
  116.     XModifierKeymap *map;
  117. {
  118.     DBUG_ENTER("XFreeModifiermap")
  119.     if (map) {
  120.     if (map->modifiermap)
  121.         Xfree((char *) map->modifiermap);
  122.     Xfree((char *) map);
  123.     }
  124.     DBUG_RETURN(1);
  125. }
  126.  
  127. #if NeedFunctionPrototypes
  128. XModifierKeymap *
  129. XInsertModifiermapEntry(XModifierKeymap *map,
  130. #if NeedWidePrototypes
  131.             unsigned int keycode,
  132. #else
  133.             KeyCode keycode,
  134. #endif
  135.             int modifier)
  136. #else
  137. XModifierKeymap *
  138. XInsertModifiermapEntry(map, keycode, modifier)
  139.     XModifierKeymap *map;
  140.     KeyCode keycode;
  141.     int modifier;
  142. #endif
  143. {
  144.     DBUG_ENTER("XInsertModifiermapEntry")
  145.     XModifierKeymap *newmap;
  146.     int i,
  147.     row = modifier * map->max_keypermod,
  148.     newrow,
  149.     lastrow;
  150.  
  151.     for (i=0; i<map->max_keypermod; i++) {
  152.         if (map->modifiermap[ row+i ] == keycode)
  153.         DBUG_RETURN(map); /* already in the map */
  154.         if (map->modifiermap[ row+i ] == 0) {
  155.             map->modifiermap[ row+i ] = keycode;
  156.         DBUG_RETURN(map); /* we added it without stretching the map */
  157.     }
  158.     }   
  159.  
  160.     /* stretch the map */
  161.     if ((newmap = XNewModifiermap(map->max_keypermod+1)) == NULL)
  162.     DBUG_RETURN((XModifierKeymap *) NULL);
  163.     newrow = row = 0;
  164.     lastrow = newmap->max_keypermod * 8;
  165.     while (newrow < lastrow) {
  166.     for (i=0; i<map->max_keypermod; i++)
  167.         newmap->modifiermap[ newrow+i ] = map->modifiermap[ row+i ];
  168.     newmap->modifiermap[ newrow+i ] = 0;
  169.     row += map->max_keypermod;
  170.     newrow += newmap->max_keypermod;
  171.     }
  172.     (void) XFreeModifiermap(map);
  173.     newrow = newmap->max_keypermod * modifier + newmap->max_keypermod - 1;
  174.     newmap->modifiermap[ newrow ] = keycode;
  175.     DBUG_RETURN(newmap);
  176. }
  177.  
  178. #if NeedFunctionPrototypes
  179. XModifierKeymap *
  180. XDeleteModifiermapEntry(XModifierKeymap *map,
  181. #if NeedWidePrototypes
  182.             unsigned int keycode,
  183. #else
  184.             KeyCode keycode,
  185. #endif
  186.             int modifier)
  187. #else
  188. XModifierKeymap *
  189. XDeleteModifiermapEntry(map, keycode, modifier)
  190.     XModifierKeymap *map;
  191.     KeyCode keycode;
  192.     int modifier;
  193. #endif
  194. {
  195.     DBUG_ENTER("XDeleteModifiermapEntry")
  196.     int i,
  197.     row = modifier * map->max_keypermod;
  198.  
  199.     for (i=0; i<map->max_keypermod; i++) {
  200.         if (map->modifiermap[ row+i ] == keycode)
  201.             map->modifiermap[ row+i ] = 0;
  202.     }
  203.     /* should we shrink the map?? */
  204.     DBUG_RETURN(map);
  205. }
  206.