From c4cd9e782c7d44a29375faae46dbf56c0e87e6fd Mon Sep 17 00:00:00 2001 From: mattias Date: Sat, 3 Jan 2004 12:04:07 +0000 Subject: [PATCH] removed non portable hkeys.inc git-svn-id: trunk@4996 - --- .gitattributes | 1 - lcl/include/hkeys.inc | 127 ------------------------------------------ lcl/vclglobals.pp | 3 - 3 files changed, 131 deletions(-) delete mode 100644 lcl/include/hkeys.inc diff --git a/.gitattributes b/.gitattributes index f8cc7061d1..f1eb3b6ad5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -925,7 +925,6 @@ lcl/include/graphic.inc svneol=native#text/pascal lcl/include/graphiccontrol.inc svneol=native#text/pascal lcl/include/graphicsobject.inc svneol=native#text/pascal lcl/include/hintwindow.inc svneol=native#text/pascal -lcl/include/hkeys.inc svneol=native#text/pascal lcl/include/idletimer.inc svneol=native#text/pascal lcl/include/imglist.inc svneol=native#text/pascal lcl/include/inputdialog.inc svneol=native#text/pascal diff --git a/lcl/include/hkeys.inc b/lcl/include/hkeys.inc deleted file mode 100644 index ab61953afb..0000000000 --- a/lcl/include/hkeys.inc +++ /dev/null @@ -1,127 +0,0 @@ -// 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 - -} diff --git a/lcl/vclglobals.pp b/lcl/vclglobals.pp index b03cfd8afc..600ed19296 100644 --- a/lcl/vclglobals.pp +++ b/lcl/vclglobals.pp @@ -119,9 +119,6 @@ const MK_MBUTTON = $10; -{ Generic Key names } -{$I hkeys.inc} - Function CS_To_String(CompStyle: Integer): String;