Main Page | Modules | Class Hierarchy | Data Structures | File List | Data Fields | Globals | Related Pages

omemukeys.h

Go to the documentation of this file.
00001 
00002 // This code is part of the MaiaProject free software
00003 //
00004 // Keyboard and Mouse Emulator - Virtual keyboard Engine
00005 //
00006 // Copyright (c) 2002-2003 Luca Clivio <luca.clivio@maiaproject.org>
00007 // Tel. +39-347-2538040
00008 // via B.Croce 2, 20037 Paderno Dugnano (Milano) - Italy
00009 //
00010 // Developers:
00011 //    Simone Mangano <simone.mangano@maiaproject.org>
00012 //    Andrea Tosato  <andrea.tosato@maiaproject.org>
00013 //
00014 //  -----------------------------------------------------------------------------
00015 //  This program is free software; This program is free software; 
00016 //  you can redistribute it and/or modify it under the terms of the 
00017 //  GNU General Public License as published by the Free Software Foundation; 
00018 //  either version 2 of the License, or (at your option) any later version.
00019 //  but WITHOUT ANY WARRANTY; without even the implied warranty of                              
00020 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                                
00021 //  GNU General Public License for more details.                                                
00022 //  You should have received a copy of the GNU General Public License                           
00023 //  along with this program; if not, write to the Free Software                                 
00024 //  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                                   
00026 
00027 
00028 #define RESUMEFROMFIRST 30
00029 #define RESUMEFROMTHIS 31
00030 #define RESUMEFROMNEXT 32
00031 
00032 
00033 
00034 // This header contains internal codes for emulation keys
00035 
00036 
00037 // special keys
00038 #define BACKSPACEKEY 256
00039 #define TABKEY 257
00040 #define CLEARKEY 258
00041 #define ENTERKEY 259
00042 #define SHIFTKEY 260
00043 #define CONTROLKEY 261
00044 #define ALTKEY 262
00045 #define PAUSEKEY 263
00046 #define CAPSLOCKKEY 264
00047 #define ESCKEY 265
00048 #define SPACEKEY 266
00049 #define PAGEUPKEY 267
00050 #define PAGEDOWNKEY 268
00051 #define ENDKEY 269
00052 #define HOMEKEY 270
00053 #define LEFTARROWKEY 271
00054 #define UPARROWKEY 272
00055 #define RIGHTARROWKEY 273
00056 #define DOWNARROWKEY 274
00057 #define SELECTKEY 275
00058 #define PRINTSCREENKEY 276
00059 #define EXECUTEKEY 277
00060 #define SNAPSHOTKEY 278
00061 #define INSKEY 279
00062 #define DELKEY 280
00063 #define HELPKEY 281
00064 #define NUMLOCKKEY 282
00065 
00066 // function keys
00067 #define F1KEY 400 
00068 #define F2KEY 401
00069 #define F3KEY 402
00070 #define F4KEY 403
00071 #define F5KEY 404
00072 #define F6KEY 405
00073 #define F7KEY 406
00074 #define F8KEY 407
00075 #define F9KEY 408
00076 #define F10KEY 409
00077 #define F11KEY 410
00078 #define F12KEY 411
00079 #define F13KEY 412
00080 #define F14KEY 413
00081 #define F15KEY 414
00082 #define F16KEY 415
00083 
00084 
00085 // Use maxmousebuttons +1 because we start indexes from 1
00086 #define MAXMOUSEBUTTONS 4
00087 #define LEFTBUTTON 1
00088 #define CENTRALBUTTON 2
00089 #define RIGHTBUTTON 3
00090 
00091