vlc_keys.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * hotkeys.h: keycode defines
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: vlc_keys.h 8966 2004-10-10 10:08:44Z ipkiss $
  6.  *
  7.  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #define KEY_MODIFIER         0xFF000000
  24. #define KEY_MODIFIER_ALT     0x01000000
  25. #define KEY_MODIFIER_SHIFT   0x02000000
  26. #define KEY_MODIFIER_CTRL    0x04000000
  27. #define KEY_MODIFIER_META    0x08000000
  28. #define KEY_MODIFIER_COMMAND 0x10000000
  29. #define KEY_SPECIAL          0x00FF0000
  30. #define KEY_LEFT             0x00010000
  31. #define KEY_RIGHT            0x00020000
  32. #define KEY_UP               0x00030000
  33. #define KEY_DOWN             0x00040000
  34. #define KEY_SPACE            0x00050000
  35. #define KEY_ENTER            0x00060000
  36. #define KEY_F1               0x00070000
  37. #define KEY_F2               0x00080000
  38. #define KEY_F3               0x00090000
  39. #define KEY_F4               0x000A0000
  40. #define KEY_F5               0x000B0000
  41. #define KEY_F6               0x000C0000
  42. #define KEY_F7               0x000D0000
  43. #define KEY_F8               0x000E0000
  44. #define KEY_F9               0x000F0000
  45. #define KEY_F10              0x00100000
  46. #define KEY_F11              0x00110000
  47. #define KEY_F12              0x00120000
  48. #define KEY_HOME             0x00130000
  49. #define KEY_END              0x00140000
  50. #define KEY_MENU             0x00150000
  51. #define KEY_ESC              0x00160000
  52. #define KEY_PAGEUP           0x00170000
  53. #define KEY_PAGEDOWN         0x00180000
  54. #define KEY_TAB              0x00190000
  55. #define KEY_BACKSPACE        0x001A0000
  56. #define KEY_MOUSEWHEELUP     0x001B0000
  57. #define KEY_MOUSEWHEELDOWN   0x001C0000
  58. #define KEY_ASCII            0x0000007F
  59. #define KEY_UNSET            0
  60. typedef struct key_descriptor_s
  61. {
  62.     char *psz_key_string;
  63.     int i_key_code;
  64. } key_descriptor_t;
  65. #define ADD_KEY(a) { a, *a }
  66. static const struct key_descriptor_s vlc_modifiers[] =
  67. {
  68.     { "Alt", KEY_MODIFIER_ALT },
  69.     { "Shift", KEY_MODIFIER_SHIFT },
  70.     { "Ctrl", KEY_MODIFIER_CTRL },
  71.     { "Meta", KEY_MODIFIER_META },
  72.     { "Command", KEY_MODIFIER_COMMAND }
  73. };
  74. static const struct key_descriptor_s vlc_keys[] =
  75. {
  76.     { "Unset", KEY_UNSET },
  77.     { "Left", KEY_LEFT },
  78.     { "Right", KEY_RIGHT },
  79.     { "Up", KEY_UP },
  80.     { "Down", KEY_DOWN },
  81.     { "Space", KEY_SPACE },
  82.     { "Enter", KEY_ENTER },
  83.     { "F1", KEY_F1 },
  84.     { "F2", KEY_F2 },
  85.     { "F3", KEY_F3 },
  86.     { "F4", KEY_F4 },
  87.     { "F5", KEY_F5 },
  88.     { "F6", KEY_F6 },
  89.     { "F7", KEY_F7 },
  90.     { "F8", KEY_F8 },
  91.     { "F9", KEY_F9 },
  92.     { "F10", KEY_F10 },
  93.     { "F11", KEY_F11 },
  94.     { "F12", KEY_F12 },
  95.     { "Home", KEY_HOME },
  96.     { "End", KEY_END },
  97.     { "Menu", KEY_MENU },
  98.     { "Esc", KEY_ESC },
  99.     { "Page Up", KEY_PAGEUP },
  100.     { "Page Down", KEY_PAGEDOWN },
  101.     { "Tab", KEY_TAB },
  102.     { "Backspace", KEY_BACKSPACE },
  103.     { "Mouse Wheel Up", KEY_MOUSEWHEELUP },
  104.     { "Mouse Wheel Down", KEY_MOUSEWHEELDOWN },
  105.     { "a", 'a' },
  106.     { "b", 'b' },
  107.     { "c", 'c' },
  108.     { "d", 'd' },
  109.     { "e", 'e' },
  110.     { "f", 'f' },
  111.     { "g", 'g' },
  112.     { "h", 'h' },
  113.     { "i", 'i' },
  114.     { "j", 'j' },
  115.     { "k", 'k' },
  116.     { "l", 'l' },
  117.     { "m", 'm' },
  118.     { "n", 'n' },
  119.     { "o", 'o' },
  120.     { "p", 'p' },
  121.     { "q", 'q' },
  122.     { "r", 'r' },
  123.     { "s", 's' },
  124.     { "t", 't' },
  125.     { "u", 'u' },
  126.     { "v", 'v' },
  127.     { "w", 'w' },
  128.     { "x", 'x' },
  129.     { "y", 'y' },
  130.     { "z", 'z' },
  131.     { "+", '+' },
  132.     { "=", '=' },
  133.     { "-", '-' },
  134.     { ",", ',' },
  135.     { ".", '.' },
  136.     { "<", '<' },
  137.     { ">", '>' },
  138.     { "`", '`' },
  139.     { "/", '/' },
  140.     { ";", ';' },
  141.     { "'", ''' },
  142.     { "\", '\' },
  143.     { "[", '[' },
  144.     { "]", ']' },
  145.     { "*", '*' }
  146. };
  147. static inline char *KeyToString( int i_key )
  148. {
  149.     unsigned int i = 0;
  150.     for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
  151.     {
  152.         if ( vlc_keys[i].i_key_code == i_key )
  153.         {
  154.             return vlc_keys[i].psz_key_string;
  155.         }
  156.     }
  157.     return NULL;
  158. }
  159. static inline int StringToKey( char *psz_key )
  160. {
  161.     unsigned int i = 0;
  162.     for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
  163.     {
  164.         if ( !strcmp( vlc_keys[i].psz_key_string, psz_key ))
  165.         {
  166.             return vlc_keys[i].i_key_code;
  167.         }
  168.     }
  169.     return 0;
  170. }
  171. #define ACTIONID_QUIT                  1
  172. #define ACTIONID_PLAY_PAUSE            2
  173. #define ACTIONID_PLAY                  3
  174. #define ACTIONID_PAUSE                 4
  175. #define ACTIONID_STOP                  5
  176. #define ACTIONID_PREV                  6
  177. #define ACTIONID_NEXT                  7
  178. #define ACTIONID_SLOWER                8
  179. #define ACTIONID_FASTER                9
  180. #define ACTIONID_FULLSCREEN            10
  181. #define ACTIONID_VOL_UP                11
  182. #define ACTIONID_VOL_DOWN              12
  183. #define ACTIONID_NAV_ACTIVATE          13
  184. #define ACTIONID_NAV_UP                14
  185. #define ACTIONID_NAV_DOWN              15
  186. #define ACTIONID_NAV_LEFT              16
  187. #define ACTIONID_NAV_RIGHT             17
  188. #define ACTIONID_JUMP_BACKWARD_10SEC   18
  189. #define ACTIONID_JUMP_FORWARD_10SEC    19
  190. #define ACTIONID_JUMP_BACKWARD_1MIN    20
  191. #define ACTIONID_JUMP_FORWARD_1MIN     21
  192. #define ACTIONID_JUMP_BACKWARD_5MIN    22
  193. #define ACTIONID_JUMP_FORWARD_5MIN     23
  194. #define ACTIONID_POSITION              24
  195. #define ACTIONID_VOL_MUTE              25
  196. /* let ACTIONID_SET_BOOMARK* and ACTIONID_PLAY_BOOKMARK* be contiguous */
  197. #define ACTIONID_SET_BOOKMARK1         26
  198. #define ACTIONID_SET_BOOKMARK2         27
  199. #define ACTIONID_SET_BOOKMARK3         28
  200. #define ACTIONID_SET_BOOKMARK4         29
  201. #define ACTIONID_SET_BOOKMARK5         30
  202. #define ACTIONID_SET_BOOKMARK6         31
  203. #define ACTIONID_SET_BOOKMARK7         32
  204. #define ACTIONID_SET_BOOKMARK8         33
  205. #define ACTIONID_SET_BOOKMARK9         34
  206. #define ACTIONID_SET_BOOKMARK10        35
  207. #define ACTIONID_PLAY_BOOKMARK1        36
  208. #define ACTIONID_PLAY_BOOKMARK2        37
  209. #define ACTIONID_PLAY_BOOKMARK3        38
  210. #define ACTIONID_PLAY_BOOKMARK4        39
  211. #define ACTIONID_PLAY_BOOKMARK5        40
  212. #define ACTIONID_PLAY_BOOKMARK6        41
  213. #define ACTIONID_PLAY_BOOKMARK7        42
  214. #define ACTIONID_PLAY_BOOKMARK8        43
  215. #define ACTIONID_PLAY_BOOKMARK9        44
  216. #define ACTIONID_PLAY_BOOKMARK10       45
  217. /* end of contiguous zone */
  218. #define ACTIONID_SUBDELAY_UP           46
  219. #define ACTIONID_SUBDELAY_DOWN         47
  220. #define ACTIONID_HISTORY_BACK          48
  221. #define ACTIONID_HISTORY_FORWARD       49
  222. #define ACTIONID_AUDIO_TRACK           50
  223. #define ACTIONID_SUBTITLE_TRACK        51
  224. #define ACTIONID_INTF_SHOW             52