home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / X11R6 / lib / X11 / xkb / compat / misc < prev    next >
Text File  |  1999-09-03  |  890b  |  37 lines

  1. // $XConsortium: misc /main/4 1995/12/07 21:33:00 kaleb $
  2. default partial xkb_compatibility "misc"  {
  3.  
  4.     virtual_modifiers    Alt,ScrollLock;
  5.  
  6.     // Interpretations for some other useful keys
  7.  
  8.     interpret Terminate_Server     { action = Terminate(); };
  9.  
  10.     // Sets the "Alt" virtual modifier
  11.  
  12.     setMods.clearLocks= True;
  13.     interpret Alt_L+Any     { 
  14.     virtualModifier= Alt;
  15.     action = SetMods(modifiers=modMapMods);
  16.     };
  17.  
  18.     interpret Alt_R+Any    {
  19.     virtualModifier= Alt;
  20.     action = SetMods(modifiers=modMapMods);
  21.     };
  22.  
  23.     // Sets the "ScrollLock" virtual modifier and
  24.     // makes it actually lock when pressed.  Sets
  25.     // up a map for the scroll lock indicator.
  26.     interpret Scroll_Lock+Any    {
  27.     virtualModifier= ScrollLock;
  28.     action = LockMods(modifiers=modMapMods);
  29.     };
  30.  
  31.     indicator "Scroll Lock" {
  32.     allowExplicit;
  33.     whichModState= Locked;
  34.     modifiers= ScrollLock;
  35.     };
  36. };
  37.