lazarus/lcl/include/hkeys.inc
2002-08-17 23:41:09 +00:00

128 lines
3.1 KiB
PHP

// included by vclglobals.pp
{
$Id$
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.LCL, included in this distribution, *
* for details about the copyright. *
* *
* 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. *
* *
*****************************************************************************
}
const
// Function keys
key_F0 = $e100;
key_F1 = $e101;
key_F2 = $e102;
key_F3 = $e103;
key_F4 = $e104;
key_F5 = $e105;
key_F6 = $e106;
key_F7 = $e107;
key_F8 = $e108;
key_F9 = $e109;
key_F10 = $e10a;
key_F11 = $e10b;
key_F12 = $e10c;
key_F13 = $e10d;
key_F14 = $e10e;
key_F15 = $e10f;
key_F16 = $e110;
key_F17 = $e111;
key_F18 = $e112;
key_F19 = $e113;
key_F20 = $e114;
key_F21 = $e115;
key_F22 = $e116;
key_F23 = $e117;
key_F24 = $e118;
key_F25 = $e119;
key_F26 = $e11a;
key_F27 = $e11b;
key_F28 = $e11c;
key_F29 = $e11d;
key_F30 = $e11e;
key_F31 = $e11f;
key_F32 = $e120;
key_F33 = $e121;
key_F34 = $e122;
key_F35 = $e123;
key_F36 = $e124;
key_F37 = $e125;
key_F38 = $e126;
key_F39 = $e127;
key_F40 = $e128;
key_F41 = $e129;
key_F42 = $e12a;
key_F43 = $e12b;
key_F44 = $e12c;
key_F45 = $e12d;
key_F46 = $e12e;
key_F47 = $e12f;
key_F48 = $e130;
key_F49 = $e131;
key_F50 = $e132;
key_F51 = $e133;
key_F52 = $e134;
key_F53 = $e135;
key_F54 = $e136;
key_F55 = $e137;
key_F56 = $e138;
key_F57 = $e139;
key_F58 = $e13a;
key_F59 = $e13b;
key_F60 = $e13c;
key_F61 = $e13d;
key_F62 = $e13e;
key_F63 = $e13f;
// Cursor keys
key_Insert = $e022;
key_Up = $e032;
key_Down = $e033;
key_Left = $e034;
key_Right = $e035;
key_PageUp = $e036;
key_PageDown = $e037;
key_Home = $e038;
key_End = $e039;
// Misc. keys
key_Backspace = $08;
key_Tab = $09;
key_Return = $0d;
key_Escape = $1b;
key_Delete = $7f;
// included by vclglobals.pp
{
$Log$
Revision 1.3 2003/03/11 07:46:43 mattias
more localization for gtk- and win32-interface and lcl
Revision 1.2 2002/05/10 06:05:52 lazarus
MG: changed license to LGPL
Revision 1.1 2000/07/13 10:28:26 michael
+ Initial import
Revision 1.1 2000/04/02 20:49:56 lazarus
MWE:
Moved lazarus/lcl/*.inc files to lazarus/lcl/include
Revision 1.1 1999/08/26 23:36:03 peter
+ paintbox
+ generic keydefinitions and gtk conversion
* gtk state -> shiftstate conversion
}