mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-21 04:53:37 +01:00
145 lines
4.0 KiB
C
145 lines
4.0 KiB
C
// Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
|
|
//
|
|
// This file is part of the VNC system.
|
|
//
|
|
// The VNC system is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
// USA.
|
|
//
|
|
// If the source code for the VNC system is not available from the place
|
|
// whence you received this file, check http://www.uk.research.att.com/vnc or contact
|
|
// the authors on vnc@uk.research.att.com for information on obtaining it.
|
|
|
|
#define XK_VoidSymbol 0xFFFFFF
|
|
|
|
#define XK_space 0x020
|
|
|
|
#define XK_BackSpace 0xFF08
|
|
#define XK_Tab 0xFF09
|
|
#define XK_Linefeed 0xFF0A
|
|
#define XK_Clear 0xFF0B
|
|
#define XK_Return 0xFF0D
|
|
#define XK_Pause 0xFF13
|
|
#define XK_Scroll_Lock 0xFF14
|
|
#define XK_Sys_Req 0xFF15
|
|
#define XK_Escape 0xFF1B
|
|
|
|
#define XK_Delete 0xFFFF
|
|
|
|
#define XK_Print 0xFF61
|
|
#define XK_dead_grave 0xFE50
|
|
#define XK_dead_acute 0xFE51
|
|
#define XK_dead_circumflex 0xFE52
|
|
#define XK_dead_tilde 0xFE53
|
|
#define XK_dead_diaeresis 0xFE57
|
|
|
|
#define XK_Home 0xFF50
|
|
#define XK_Left 0xFF51
|
|
#define XK_Up 0xFF52
|
|
#define XK_Right 0xFF53
|
|
#define XK_Down 0xFF54
|
|
#define XK_Page_Up 0xFF55
|
|
#define XK_Page_Down 0xFF56
|
|
#define XK_End 0xFF57
|
|
#define XK_Begin 0xFF58
|
|
|
|
#define XK_Select 0xFF60
|
|
#define XK_Print 0xFF61
|
|
#define XK_Execute 0xFF62
|
|
#define XK_Insert 0xFF63
|
|
|
|
#define XK_Cancel 0xFF69
|
|
#define XK_Help 0xFF6A
|
|
#define XK_Break 0xFF6B
|
|
#define XK_Num_Lock 0xFF7F
|
|
|
|
#define XK_KP_Space 0xFF80
|
|
#define XK_KP_Tab 0xFF89
|
|
#define XK_KP_Enter 0xFF8D
|
|
|
|
#define XK_KP_Home 0xFF95
|
|
#define XK_KP_Left 0xFF96
|
|
#define XK_KP_Up 0xFF97
|
|
#define XK_KP_Right 0xFF98
|
|
#define XK_KP_Down 0xFF99
|
|
#define XK_KP_Prior 0xFF9A
|
|
#define XK_KP_Page_Up 0xFF9A
|
|
#define XK_KP_Next 0xFF9B
|
|
#define XK_KP_Page_Down 0xFF9B
|
|
#define XK_KP_End 0xFF9C
|
|
#define XK_KP_Begin 0xFF9D
|
|
#define XK_KP_Insert 0xFF9E
|
|
#define XK_KP_Delete 0xFF9F
|
|
#define XK_KP_Equal 0xFFBD
|
|
#define XK_KP_Multiply 0xFFAA
|
|
#define XK_KP_Add 0xFFAB
|
|
#define XK_KP_Separator 0xFFAC
|
|
#define XK_KP_Subtract 0xFFAD
|
|
#define XK_KP_Decimal 0xFFAE
|
|
#define XK_KP_Divide 0xFFAF
|
|
|
|
#define XK_KP_0 0xFFB0
|
|
#define XK_KP_1 0xFFB1
|
|
#define XK_KP_2 0xFFB2
|
|
#define XK_KP_3 0xFFB3
|
|
#define XK_KP_4 0xFFB4
|
|
#define XK_KP_5 0xFFB5
|
|
#define XK_KP_6 0xFFB6
|
|
#define XK_KP_7 0xFFB7
|
|
#define XK_KP_8 0xFFB8
|
|
#define XK_KP_9 0xFFB9
|
|
|
|
#define XK_F1 0xFFBE
|
|
#define XK_F2 0xFFBF
|
|
#define XK_F3 0xFFC0
|
|
#define XK_F4 0xFFC1
|
|
#define XK_F5 0xFFC2
|
|
#define XK_F6 0xFFC3
|
|
#define XK_F7 0xFFC4
|
|
#define XK_F8 0xFFC5
|
|
#define XK_F9 0xFFC6
|
|
#define XK_F10 0xFFC7
|
|
#define XK_F11 0xFFC8
|
|
#define XK_F12 0xFFC9
|
|
#define XK_F13 0xFFCA
|
|
#define XK_F14 0xFFCB
|
|
#define XK_F15 0xFFCC
|
|
#define XK_F16 0xFFCD
|
|
#define XK_F17 0xFFCE
|
|
#define XK_F18 0xFFCF
|
|
#define XK_F19 0xFFD0
|
|
#define XK_F20 0xFFD1
|
|
#define XK_F21 0xFFD2
|
|
#define XK_F22 0xFFD3
|
|
#define XK_F23 0xFFD4
|
|
#define XK_F24 0xFFD5
|
|
|
|
|
|
#define XK_Shift_L 0xFFE1
|
|
#define XK_Shift_R 0xFFE2
|
|
#define XK_Control_L 0xFFE3
|
|
#define XK_Control_R 0xFFE4
|
|
#define XK_Caps_Lock 0xFFE5
|
|
#define XK_Shift_Lock 0xFFE6
|
|
#define XK_Meta_L 0xFFE7
|
|
#define XK_Meta_R 0xFFE8
|
|
#define XK_Alt_L 0xFFE9
|
|
#define XK_Alt_R 0xFFEA
|
|
|
|
#define XK_Super_L 0xFFEB /* Left super */
|
|
#define XK_Super_R 0xFFEC /* Right super */
|
|
#define XK_Menu 0xFF67
|
|
|
|
|