home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / site-packages / cgkit / keydefs.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  3.4 KB  |  142 lines

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. #
  4. # The contents of this file are subject to the Mozilla Public License Version
  5. # 1.1 (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS IS" basis,
  10. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. # for the specific language governing rights and limitations under the
  12. # License.
  13. #
  14. # The Original Code is the Python Computer Graphics Kit.
  15. #
  16. # The Initial Developer of the Original Code is Matthias Baas.
  17. # Portions created by the Initial Developer are Copyright (C) 2004
  18. # the Initial Developer. All Rights Reserved.
  19. #
  20. # Contributor(s):
  21. #
  22. # Alternatively, the contents of this file may be used under the terms of
  23. # either the GNU General Public License Version 2 or later (the "GPL"), or
  24. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  25. # in which case the provisions of the GPL or the LGPL are applicable instead
  26. # of those above. If you wish to allow use of your version of this file only
  27. # under the terms of either the GPL or the LGPL, and not to allow others to
  28. # use your version of this file under the terms of the MPL, indicate your
  29. # decision by deleting the provisions above and replace them with the notice
  30. # and other provisions required by the GPL or the LGPL. If you do not delete
  31. # the provisions above, a recipient may use your version of this file under
  32. # the terms of any one of the MPL, the GPL or the LGPL.
  33. #
  34. # ***** END LICENSE BLOCK *****
  35. # $Id: keydefs.py,v 1.1.1.1 2004/12/12 14:31:06 mbaas Exp $
  36.  
  37. ## \file keydefs.py
  38. ## Contains key definitions for the key event.
  39.  
  40. # Key modifier flags
  41.  
  42. KEYMOD_SHIFT   = 0x01
  43. KEYMOD_CONTROL = 0x02
  44. KEYMOD_ALT     = 0x04
  45. KEYMOD_META    = 0x08
  46.  
  47. # Key codes
  48.  
  49. KEY_BACK = 8
  50. KEY_TAB = 9
  51. KEY_RETURN = 13
  52. KEY_ESCAPE = 27
  53. KEY_SPACE = 32
  54.  
  55. KEY_CAPSLOCK = 2700
  56.  
  57. KEY_SHIFT_LEFT = 2701
  58. KEY_SHIFT_RIGHT = 2702
  59. KEY_CONTROL_LEFT = 2703
  60. KEY_CONTROL_RIGHT = 2704
  61. KEY_ALT_LEFT = 2705
  62. KEY_ALT_RIGHT = 2706
  63.  
  64. KEY_PRINT = 2707
  65. KEY_SCROLL = 2708
  66. KEY_PAUSE = 2709
  67.  
  68. KEY_INSERT = 2710
  69. KEY_DELETE = 127 # 2711
  70. KEY_HOME = 2712
  71. KEY_END = 2713
  72. KEY_PRIOR = 2714
  73. KEY_NEXT = 2715
  74.  
  75. KEY_LEFT = 2716
  76. KEY_UP = 2717
  77. KEY_RIGHT = 2718
  78. KEY_DOWN = 2719
  79.  
  80. KEY_F1 = 2720
  81. KEY_F2 = 2721
  82. KEY_F3 = 2722
  83. KEY_F4 = 2723
  84. KEY_F5 = 2724
  85. KEY_F6 = 2725
  86. KEY_F7 = 2726
  87. KEY_F8 = 2727
  88. KEY_F9 = 2728
  89. KEY_F10 = 2729
  90. KEY_F11 = 2730
  91. KEY_F12 = 2731
  92. KEY_F13 = 2732
  93. KEY_F14 = 2733
  94. KEY_F15 = 2734
  95. KEY_F16 = 2735
  96. KEY_F17 = 2736
  97. KEY_F18 = 2737
  98. KEY_F19 = 2738
  99. KEY_F20 = 2739
  100. KEY_F21 = 2740
  101. KEY_F22 = 2741
  102. KEY_F23 = 2742
  103. KEY_F24 = 2743
  104.  
  105. KEY_NUMLOCK = 2744
  106.  
  107. KEY_NUMPAD0 = 2745
  108. KEY_NUMPAD1 = 2746
  109. KEY_NUMPAD2 = 2747
  110. KEY_NUMPAD3 = 2748
  111. KEY_NUMPAD4 = 2749
  112. KEY_NUMPAD5 = 2750
  113. KEY_NUMPAD6 = 2751
  114. KEY_NUMPAD7 = 2752
  115. KEY_NUMPAD8 = 2753
  116. KEY_NUMPAD9 = 2754
  117.  
  118. KEY_NUMPAD_DECIMAL = 2755
  119. KEY_NUMPAD_ENTER = 2756
  120. KEY_NUMPAD_ADD = 2757
  121. KEY_NUMPAD_SUBTRACT = 2758
  122. KEY_NUMPAD_MULTIPLY = 2759
  123. KEY_NUMPAD_DIVIDE = 2760
  124.  
  125. KEY_WINDOWS_LEFT = 2761
  126. KEY_WINDOWS_RIGHT = 2762
  127. KEY_WINDOWS_MENU = 2763
  128.  
  129.  
  130. ######################################################################
  131. if __name__=="__main__":
  132.     keys = {}
  133.     for k in locals().keys():
  134.         if k[:4]!="KEY_":
  135.             continue
  136.         key = k[4:]
  137.         keycode = locals()[k]
  138.         keys[keycode] = key
  139.  
  140.     for kc in keys:
  141.         print '  %d : "%s",'%(kc, keys[kc])
  142.