os/kernelhwsrv/kernel/eka/include/e32keys.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\e32keys.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __E32KEYS_H__
sl@0
    19
#define __E32KEYS_H__
sl@0
    20
sl@0
    21
// Using #define instead of const TInt so this file is parsable by rcomp
sl@0
    22
sl@0
    23
/**
sl@0
    24
@publishedPartner
sl@0
    25
@released
sl@0
    26
sl@0
    27
Base code of range that doesn't correspond to a character
sl@0
    28
*/
sl@0
    29
#define ENonCharacterKeyBase 0xf800
sl@0
    30
sl@0
    31
/**
sl@0
    32
@publishedPartner
sl@0
    33
@released
sl@0
    34
sl@0
    35
Size of range that doesn't correspond to a character
sl@0
    36
*/
sl@0
    37
#define ENonCharacterKeyCount 0x100
sl@0
    38
sl@0
    39
/**
sl@0
    40
@publishedPartner
sl@0
    41
@released
sl@0
    42
sl@0
    43
Base code of range that is reserved for application framework use and guaranteed
sl@0
    44
not to be produced by any keyboard.
sl@0
    45
*/
sl@0
    46
#define ESpecialKeyBase 0xf700
sl@0
    47
sl@0
    48
/**
sl@0
    49
@publishedPartner
sl@0
    50
@released
sl@0
    51
sl@0
    52
Size of range that is reserved for application framework use and guaranteed
sl@0
    53
not to be produced by any keyboard.
sl@0
    54
*/
sl@0
    55
#define ESpecialKeyCount 0x100
sl@0
    56
sl@0
    57
sl@0
    58
sl@0
    59
sl@0
    60
/**
sl@0
    61
@publishedAll
sl@0
    62
@released
sl@0
    63
sl@0
    64
Modifier flags for a key or pointer event.
sl@0
    65
sl@0
    66
The modifier flags for a key event are held in TKeyEvent::iModifiers.
sl@0
    67
sl@0
    68
The modifier flags for a pointer event are held in TPointerEvent::iModifiers.
sl@0
    69
sl@0
    70
@see TKeyEvent::iModifiers
sl@0
    71
@see TPointerEvent::iModifiers
sl@0
    72
*/
sl@0
    73
enum TEventModifier
sl@0
    74
	{
sl@0
    75
	EModifierAutorepeatable=0x00000001, /**< Key event can auto-repeat.*/
sl@0
    76
	EModifierKeypad=0x00000002,         /**< The key that generated the event was on the numeric keypad, on the emulator.*/
sl@0
    77
	EModifierLeftAlt=0x00000004,        /**< Left Alt key.*/
sl@0
    78
	EModifierRightAlt=0x00000008,       /**< Right Alt key.*/
sl@0
    79
	EModifierAlt=0x00000010,            /**< Single Alt key.*/
sl@0
    80
	EModifierLeftCtrl=0x00000020,       /**< Left Control (Ctrl) key.*/
sl@0
    81
	EModifierRightCtrl=0x00000040,      /**< Right Control (Ctrl) key.*/
sl@0
    82
	EModifierCtrl=0x00000080,           /**< Single Control (Ctrl) key.*/
sl@0
    83
	EModifierLeftShift=0x00000100,      /**< Left Shift key.*/
sl@0
    84
	EModifierRightShift=0x00000200,     /**< Right Shift key.*/
sl@0
    85
	EModifierShift=0x00000400,          /**< Single Shift key.*/
sl@0
    86
	EModifierLeftFunc=0x00000800,       /**< Left Fn key.*/
sl@0
    87
	EModifierRightFunc=0x00001000,      /**< Right Fn key.*/
sl@0
    88
	EModifierFunc=0x00002000,           /**< Single Fn key.*/
sl@0
    89
	EModifierCapsLock=0x00004000,       /**< Caps lock key.*/
sl@0
    90
	EModifierNumLock=0x00008000,        /**< Num lock key.*/
sl@0
    91
	EModifierScrollLock=0x00010000,     /**< Scroll lock key.*/
sl@0
    92
	EModifierKeyUp=0x00020000,          /**< Key up event.*/
sl@0
    93
	EModifierSpecial=0x00040000,        /**< The keycode is a non-standard keyboard character that has been generated in a special keyboard mode, for example accented vowels.*/
sl@0
    94
	EModifierDoubleClick=0x00080000,    /**< Double click.*/
sl@0
    95
    EModifierPureKeycode=0x00100000,    /**< The key code in the key event is not changed. E.g.an alphabetic key is not changed by the Caps Lock or Shift key being pressed.*/
sl@0
    96
	EModifierKeyboardExtend=0x00200000,	/**< The "Keyboard extend" generated modifier. */
sl@0
    97
	EModifierCancelRotation=0x00000000, /**< No Keyboard rotation is in effect. */
sl@0
    98
	EModifierRotateBy90=0x00400000,		/**< Keyboard rotation through 90 degrees clockwise is in effect. */
sl@0
    99
	EModifierRotateBy180=0x00800000,	/**< Keyboard rotation through 180 degrees clockwise is in effect. */
sl@0
   100
	EModifierRotateBy270=0x01000000,	/**< Keyboard rotation through 270 degrees clockwise is in effect. */
sl@0
   101
	EModifierPointer3DButton1=0x02000000,/**< 3D pointer device specific modifier (button 1). */
sl@0
   102
	EModifierPointer3DButton2=0x04000000,/**< 3D pointer device specific modifier (button 2). */
sl@0
   103
	EModifierPointer3DButton3=0x08000000,/**< 3D pointer device specific modifier (button 3). */
sl@0
   104
	EModifierAdvancedPointerEvent=0x10000000, /**< TPointerEvent is a TAdvancedPointerEvent.*/
sl@0
   105
	EAllModifiers=0x1fffffff            /**< A combination of all event modifiers.*/
sl@0
   106
	};
sl@0
   107
sl@0
   108
sl@0
   109
sl@0
   110
sl@0
   111
/**
sl@0
   112
@publishedAll
sl@0
   113
@released
sl@0
   114
sl@0
   115
Specifies the state of an event modifier, for instance Caps Lock or Num Lock.
sl@0
   116
sl@0
   117
Event modifiers are enumerated in TEventModifier.
sl@0
   118
The modifier state can be set using RWsSession::SetModifierState().
sl@0
   119
sl@0
   120
@see TEventModifier
sl@0
   121
@see RWsSession::SetModifierState()
sl@0
   122
*/
sl@0
   123
enum TModifierState
sl@0
   124
    {
sl@0
   125
    ETurnOnModifier=0x40, /**< Switch on modifier.*/
sl@0
   126
    ETurnOffModifier,     /**< Switch off modifier.*/
sl@0
   127
    EToggleModifier       /**< Toggle the modifier on or off.*/
sl@0
   128
    };
sl@0
   129
sl@0
   130
sl@0
   131
sl@0
   132
sl@0
   133
/**
sl@0
   134
@publishedAll
sl@0
   135
@released
sl@0
   136
sl@0
   137
Scan codes for the physical keys found on keyboards.
sl@0
   138
sl@0
   139
When processing a TKeyEvent, the TStdScanCode in TKeyEvent::iScanCode should
sl@0
   140
usually be ignored in favour of the TKeyCode in TKeyEvent::iCode.
sl@0
   141
sl@0
   142
Using iScanCode would bypass the keyboard mapping and any FEP that happens
sl@0
   143
to be installed. The exceptions to this general rule are games where
sl@0
   144
the positions of the keys are more important than their translations,
sl@0
   145
and FEPs that are implementing keyboard maps themselves. In these cases,
sl@0
   146
if the iCode is used rather than iScanCode to determine the key pressed,
sl@0
   147
there will be two unfortunate consequences.
sl@0
   148
First, the low-level keyboard mapping might re-arrange the mapping that
sl@0
   149
you are trying to impose.
sl@0
   150
Second, you will subvert the CTRL+number method of entering Unicode literals.
sl@0
   151
sl@0
   152
@see TKeyEvent
sl@0
   153
@see TStdScanCode
sl@0
   154
*/
sl@0
   155
enum TStdScanCode
sl@0
   156
	{
sl@0
   157
	EStdKeyNull=0x00,                     /**< No key present. */
sl@0
   158
	EStdKeyBackspace=0x01,                /**< Scan code for Backspace key.*/
sl@0
   159
	EStdKeyTab=0x02,                      /**< Scan code for Tab key. */
sl@0
   160
	EStdKeyEnter=0x03,                    /**< Scan code for Enter key.*/
sl@0
   161
	EStdKeyEscape=0x04,                   /**< Scan code for Escape (Esc) key.*/
sl@0
   162
	EStdKeySpace=0x05,                    /**< Scan code for Space key.*/
sl@0
   163
	EStdKeyPrintScreen=0x06,              /**< Scan code for Print Screen key.*/
sl@0
   164
	EStdKeyPause=0x07,                    /**< Scan code for Pause key.*/
sl@0
   165
	EStdKeyHome=0x08,                     /**< Scan code for Home key.*/
sl@0
   166
	EStdKeyEnd=0x09,                      /**< Scan code for End key.*/
sl@0
   167
	EStdKeyPageUp=0x0a,                   /**< Scan code for Page Up key.*/
sl@0
   168
	EStdKeyPageDown=0x0b,                 /**< Scan code for Page Down key.*/
sl@0
   169
	EStdKeyInsert=0x0c,                   /**< Scan code for Insert key.*/
sl@0
   170
	EStdKeyDelete=0x0d,                   /**< Scan code for Delete (Del) key.*/
sl@0
   171
	EStdKeyLeftArrow=0x0e,                /**< Scan code for Left arrow key.*/
sl@0
   172
	EStdKeyRightArrow=0x0f,               /**< Scan code for Right arrow key.*/
sl@0
   173
	EStdKeyUpArrow=0x10,                  /**< Scan code for Up arrow key.*/
sl@0
   174
	EStdKeyDownArrow=0x11,                /**< Scan code for Down arrow key.*/
sl@0
   175
	EStdKeyLeftShift=0x12,                /**< Scan code for left Shift key.*/
sl@0
   176
	EStdKeyRightShift=0x13,               /**< Scan code for right Shift key.*/
sl@0
   177
	EStdKeyLeftAlt=0x14,                  /**< Scan code for left Alt key.*/
sl@0
   178
	EStdKeyRightAlt=0x15,                 /**< Scan code for right Alt key.*/
sl@0
   179
	EStdKeyLeftCtrl=0x16,                 /**< Scan code for left Control (Ctrl) key.*/
sl@0
   180
	EStdKeyRightCtrl=0x17,                /**< Scan code for right Control (Ctrl) key.*/
sl@0
   181
	EStdKeyLeftFunc=0x18,                 /**< Scan code for left Fn key.*/
sl@0
   182
	EStdKeyRightFunc=0x19,                /**< Scan code for right Fn key.*/
sl@0
   183
	EStdKeyCapsLock=0x1a,                 /**< Scan code for Caps lock key.*/
sl@0
   184
	EStdKeyNumLock=0x1b,                  /**< Scan code for Num lock key.*/
sl@0
   185
	EStdKeyScrollLock=0x1c,               /**< Scan code for Scroll lock key.*/
sl@0
   186
	EStdKeyF1=0x60,                       /**< Scan code for function key F1.*/
sl@0
   187
	EStdKeyF2=0x61,                       /**< Scan code for function key F2.*/
sl@0
   188
	EStdKeyF3=0x62,                       /**< Scan code for function key F3.*/
sl@0
   189
	EStdKeyF4=0x63,                       /**< Scan code for function key F4.*/
sl@0
   190
	EStdKeyF5=0x64,                       /**< Scan code for function key F5*/
sl@0
   191
	EStdKeyF6=0x65,                       /**< Scan code for function key F6*/
sl@0
   192
	EStdKeyF7=0x66,                       /**< Scan code for function key F7*/
sl@0
   193
	EStdKeyF8=0x67,                       /**< Scan code for function key F8*/
sl@0
   194
	EStdKeyF9=0x68,                       /**< Scan code for function key F9*/
sl@0
   195
	EStdKeyF10=0x69,                      /**< Scan code for function key F10*/
sl@0
   196
	EStdKeyF11=0x6a,                      /**< Scan code for function key F11*/
sl@0
   197
	EStdKeyF12=0x6b,                      /**< Scan code for function key F12*/
sl@0
   198
	EStdKeyF13=0x6c,                      /**< Scan code for function key F13*/
sl@0
   199
	EStdKeyF14=0x6d,                      /**< Scan code for function key F14*/
sl@0
   200
	EStdKeyF15=0x6e,                      /**< Scan code for function key F15*/
sl@0
   201
	EStdKeyF16=0x6f,                      /**< Scan code for function key F16*/
sl@0
   202
	EStdKeyF17=0x70,                      /**< Scan code for function key F17*/
sl@0
   203
	EStdKeyF18=0x71,                      /**< Scan code for function key F18*/
sl@0
   204
	EStdKeyF19=0x72,                      /**< Scan code for function key F19*/
sl@0
   205
	EStdKeyF20=0x73,                      /**< Scan code for function key F20*/
sl@0
   206
	EStdKeyF21=0x74,                      /**< Scan code for function key F21*/
sl@0
   207
	EStdKeyF22=0x75,                      /**< Scan code for function key F22.*/
sl@0
   208
	EStdKeyF23=0x76,                      /**< Scan code for function key F23.*/
sl@0
   209
	EStdKeyF24=0x77,                      /**< Scan code for function key F24.*/
sl@0
   210
	EStdKeyXXX=0x78,                      /**< Scan code for the key to the left of the 1 key on a standard keyboard.*/
sl@0
   211
	EStdKeyComma=0x79,                    /**< Scan code for Comma (,) key.*/
sl@0
   212
	EStdKeyFullStop=0x7a,                 /**< Scan code for Full stop (.) key.*/
sl@0
   213
	EStdKeyForwardSlash=0x7b,             /**< Scan code for Forward slash (/) key.*/
sl@0
   214
	EStdKeyBackSlash=0x7c,                /**< Scan code for Back slash (\) key.*/
sl@0
   215
	EStdKeySemiColon=0x7d,                /**< Scan code for Semi colon (;) key.*/
sl@0
   216
	EStdKeySingleQuote=0x7e,              /**< Scan code for Single quote (') key.*/
sl@0
   217
	EStdKeyHash=0x7f,                     /**< Scan code for Hash key (#) key.*/
sl@0
   218
	EStdKeySquareBracketLeft=0x80,        /**< Scan code for left Square bracket ([) key.*/
sl@0
   219
	EStdKeySquareBracketRight=0x81,       /**< Scan code for right Square bracket (]) key.*/
sl@0
   220
	EStdKeyMinus=0x82,                    /**< Scan code for Minus key (-) key.*/
sl@0
   221
	EStdKeyEquals=0x83,                   /**< Scan code for Equals key (=) key.*/
sl@0
   222
	EStdKeyNkpForwardSlash=0x84,          /**< Scan code for forward slash (/) key on the Numeric keypad.*/
sl@0
   223
	EStdKeyNkpAsterisk=0x85,              /**< Scan code for Asterisk (*) key on the Numeric keypad.*/
sl@0
   224
	EStdKeyNkpMinus=0x86,                 /**< Scan code for Minus (-) key on the Numeric keypad.*/
sl@0
   225
	EStdKeyNkpPlus=0x87,                  /**< Scan code for Plus (+) key on the Numeric keypad.*/
sl@0
   226
	EStdKeyNkpEnter=0x88,                 /**< Scan code for Enter key on the Numeric keypad.*/
sl@0
   227
	EStdKeyNkp1=0x89,                     /**< Scan code for the 1 key on the Numeric keypad.*/
sl@0
   228
	EStdKeyNkp2=0x8a,                     /**< Scan code for the 2 key on the Numeric keypad.*/
sl@0
   229
	EStdKeyNkp3=0x8b,                     /**< Scan code for the 3 key on the Numeric keypad.*/
sl@0
   230
	EStdKeyNkp4=0x8c,                     /**< Scan code for the 4 key on the Numeric keypad.*/
sl@0
   231
	EStdKeyNkp5=0x8d,                     /**< Scan code for the 5 key on the Numeric keypad.*/
sl@0
   232
	EStdKeyNkp6=0x8e,                     /**< Scan code for the 6 key on the Numeric keypad.*/
sl@0
   233
	EStdKeyNkp7=0x8f,                     /**< Scan code for the 7 key on the Numeric keypad.*/
sl@0
   234
	EStdKeyNkp8=0x90,                     /**< Scan code for the 8 key on the Numeric keypad.*/ 
sl@0
   235
	EStdKeyNkp9=0x91,                     /**< Scan code for the 9 key on the Numeric keypad.*/
sl@0
   236
	EStdKeyNkp0=0x92,                     /**< Scan code for the 0 key on the Numeric keypad.*/
sl@0
   237
	EStdKeyNkpFullStop=0x93,              /**< Scan code for Full stop (.) key on the Numeric keypad.*/
sl@0
   238
    EStdKeyMenu=0x94,                     /**< Scan code for Menu key.*/
sl@0
   239
    EStdKeyBacklightOn=0x95,              /**< Scan code for Backlight on key.*/
sl@0
   240
    EStdKeyBacklightOff=0x96,             /**< Scan code for Backlight off key.*/
sl@0
   241
    EStdKeyBacklightToggle=0x97,          /**< Scan code for Backlight toggle key.*/
sl@0
   242
    EStdKeyIncContrast=0x98,              /**< Scan code for Increase contrast key.*/
sl@0
   243
    EStdKeyDecContrast=0x99,              /**< Scan code for Decrease contrast key.*/
sl@0
   244
    EStdKeySliderDown=0x9a,               /**< Scan code for Slider down key.*/
sl@0
   245
    EStdKeySliderUp=0x9b,                 /**< Scan code for Slider up key.*/
sl@0
   246
    EStdKeyDictaphonePlay=0x9c,           /**< Scan code for Dictaphone play key.*/
sl@0
   247
    EStdKeyDictaphoneStop=0x9d,           /**< Scan code for Dictaphone stop key.*/
sl@0
   248
    EStdKeyDictaphoneRecord=0x9e,         /**< Scan code for Dictaphone record key.*/
sl@0
   249
    EStdKeyHelp=0x9f,                     /**< Scan code for Help key */
sl@0
   250
    EStdKeyOff=0xa0,                      /**< Scan code for Off key.*/
sl@0
   251
    EStdKeyDial=0xa1,                     /**< Scan code for Dial key.*/
sl@0
   252
    EStdKeyIncVolume=0xa2,                /**< Scan code for Increase volume key.*/
sl@0
   253
    EStdKeyDecVolume=0xa3,                /**< Scan code for Decrease volume key.*/
sl@0
   254
    EStdKeyDevice0=0xa4,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   255
    EStdKeyDevice1=0xa5,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   256
    EStdKeyDevice2=0xa6,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   257
    EStdKeyDevice3=0xa7,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   258
    EStdKeyDevice4=0xa8,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   259
    EStdKeyDevice5=0xa9,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   260
    EStdKeyDevice6=0xaa,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   261
    EStdKeyDevice7=0xab,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   262
    EStdKeyDevice8=0xac,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   263
    EStdKeyDevice9=0xad,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   264
    EStdKeyDeviceA=0xae,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   265
    EStdKeyDeviceB=0xaf,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   266
    EStdKeyDeviceC=0xb0,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   267
    EStdKeyDeviceD=0xb1,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   268
    EStdKeyDeviceE=0xb2,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   269
    EStdKeyDeviceF=0xb3,                  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   270
    EStdKeyApplication0=0xb4,             /**< Scan code for device-specific application launcher key.*/
sl@0
   271
    EStdKeyApplication1=0xb5,             /**< Scan code for device-specific application launcher key.*/
sl@0
   272
    EStdKeyApplication2=0xb6,             /**< Scan code for device-specific application launcher key.*/
sl@0
   273
    EStdKeyApplication3=0xb7,             /**< Scan code for device-specific application launcher key.*/
sl@0
   274
    EStdKeyApplication4=0xb8,             /**< Scan code for device-specific application launcher key.*/
sl@0
   275
    EStdKeyApplication5=0xb9,             /**< Scan code for device-specific application launcher key.*/
sl@0
   276
    EStdKeyApplication6=0xba,             /**< Scan code for device-specific application launcher key.*/
sl@0
   277
    EStdKeyApplication7=0xbb,             /**< Scan code for device-specific application launcher key.*/
sl@0
   278
    EStdKeyApplication8=0xbc,             /**< Scan code for device-specific application launcher key.*/
sl@0
   279
    EStdKeyApplication9=0xbd,             /**< Scan code for device-specific application launcher key.*/
sl@0
   280
    EStdKeyApplicationA=0xbe,             /**< Scan code for device-specific application launcher key.*/
sl@0
   281
    EStdKeyApplicationB=0xbf,             /**< Scan code for device-specific application launcher key.*/
sl@0
   282
    EStdKeyApplicationC=0xc0,             /**< Scan code for device-specific application launcher key.*/
sl@0
   283
    EStdKeyApplicationD=0xc1,             /**< Scan code for device-specific application launcher key.*/
sl@0
   284
    EStdKeyApplicationE=0xc2,             /**< Scan code for device-specific application launcher key.*/
sl@0
   285
    EStdKeyApplicationF=0xc3,             /**< Scan code for device-specific application launcher key.*/
sl@0
   286
	EStdKeyYes=0xc4,                      /**< Scan code for Yes key.*/
sl@0
   287
	EStdKeyNo=0xc5,                       /**< Scan code for No key.*/
sl@0
   288
	EStdKeyIncBrightness=0xc6,            /**< Scan code for Increase brightness key.*/
sl@0
   289
	EStdKeyDecBrightness=0xc7,            /**< Scan code for Decrease brightness key.*/
sl@0
   290
	EStdKeyKeyboardExtend=0xc8,           /**< Scan code for flip actuated when keypad extends to full keyboard.*/
sl@0
   291
    EStdKeyDevice10=0xc9,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   292
    EStdKeyDevice11=0xca,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   293
    EStdKeyDevice12=0xcb,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   294
    EStdKeyDevice13=0xcc,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   295
    EStdKeyDevice14=0xcd,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   296
    EStdKeyDevice15=0xce,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   297
    EStdKeyDevice16=0xcf,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   298
    EStdKeyDevice17=0xd0,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   299
    EStdKeyDevice18=0xd1,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   300
    EStdKeyDevice19=0xd2,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   301
    EStdKeyDevice1A=0xd3,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   302
    EStdKeyDevice1B=0xd4,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   303
    EStdKeyDevice1C=0xd5,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   304
    EStdKeyDevice1D=0xd6,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   305
    EStdKeyDevice1E=0xd7,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   306
    EStdKeyDevice1F=0xd8,                 /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   307
    EStdKeyApplication10=0xd9,            /**< Scan code for device-specific application launcher key.*/
sl@0
   308
    EStdKeyApplication11=0xda,            /**< Scan code for device-specific application launcher key.*/
sl@0
   309
    EStdKeyApplication12=0xdb,            /**< Scan code for device-specific application launcher key.*/
sl@0
   310
    EStdKeyApplication13=0xdc,            /**< Scan code for device-specific application launcher key.*/
sl@0
   311
    EStdKeyApplication14=0xdd,            /**< Scan code for device-specific application launcher key.*/
sl@0
   312
    EStdKeyApplication15=0xde,            /**< Scan code for device-specific application launcher key.*/
sl@0
   313
    EStdKeyApplication16=0xdf,            /**< Scan code for device-specific application launcher key.*/
sl@0
   314
    EStdKeyApplication17=0xe0,            /**< Scan code for device-specific application launcher key.*/
sl@0
   315
    EStdKeyApplication18=0xe1,            /**< Scan code for device-specific application launcher key.*/
sl@0
   316
    EStdKeyApplication19=0xe2,            /**< Scan code for device-specific application launcher key.*/
sl@0
   317
    EStdKeyApplication1A=0xe3,            /**< Scan code for device-specific application launcher key.*/
sl@0
   318
    EStdKeyApplication1B=0xe4,            /**< Scan code for device-specific application launcher key.*/
sl@0
   319
    EStdKeyApplication1C=0xe5,            /**< Scan code for device-specific application launcher key.*/
sl@0
   320
    EStdKeyApplication1D=0xe6,            /**< Scan code for device-specific application launcher key.*/
sl@0
   321
    EStdKeyApplication1E=0xe7,            /**< Scan code for device-specific application launcher key.*/
sl@0
   322
    EStdKeyApplication1F=0xe8,            /**< Scan code for device-specific application launcher key.*/
sl@0
   323
	EStdKeyDevice20=0xe9,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   324
	EStdKeyDevice21=0xea,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   325
	EStdKeyDevice22=0xeb,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   326
	EStdKeyDevice23=0xec,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   327
	EStdKeyDevice24=0xed,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   328
	EStdKeyDevice25=0xee,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   329
	EStdKeyDevice26=0xef,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   330
	EStdKeyDevice27=0xf0,				  /**< Device-specific scan code - usually represents an extra hardware key on the phone.*/
sl@0
   331
	EStdKeyApplication20=0xf1,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   332
	EStdKeyApplication21=0xf2,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   333
	EStdKeyApplication22=0xf3,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   334
	EStdKeyApplication23=0xf4,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   335
	EStdKeyApplication24=0xf5,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   336
	EStdKeyApplication25=0xf6,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   337
	EStdKeyApplication26=0xf7,			  /**< Scan code for device-specific application launcher key.*/
sl@0
   338
	EStdKeyApplication27=0xf8			  /**< Scan code for device-specific application launcher key.*/
sl@0
   339
	};
sl@0
   340
sl@0
   341
sl@0
   342
sl@0
   343
sl@0
   344
/**
sl@0
   345
@publishedAll
sl@0
   346
@released
sl@0
   347
	
sl@0
   348
Codes generated by non-ASCII key presses.
sl@0
   349
sl@0
   350
A key event's character code is held in TKeyEvent::iCode.
sl@0
   351
sl@0
   352
@see TKeyEvent::iCode
sl@0
   353
*/
sl@0
   354
enum TKeyCode
sl@0
   355
	{
sl@0
   356
	EKeyNull=0x0000,                     /**< Code for the Null key. */
sl@0
   357
	EKeyBell=0x0007,                     /**< Code for the Bell key*/
sl@0
   358
	EKeyBackspace=0x0008,                /**< Code for the Backspace key */
sl@0
   359
	EKeyTab=0x0009,                      /**< Code for the Tab key*/
sl@0
   360
	EKeyLineFeed=0x000a,                 /**< Code for the Linefeed key*/
sl@0
   361
	EKeyVerticalTab=0x000b,              /**< Code for the Vertical tab key*/
sl@0
   362
	EKeyFormFeed=0x000c,                 /**< Code for the Form feed key*/
sl@0
   363
	EKeyEnter=0x000d,                    /**< Code for the Enter key */
sl@0
   364
	EKeyEscape=0x001b,                   /**< Code for the Escape key */
sl@0
   365
	EKeySpace=0x0020,                    /**< Code for the Space key*/
sl@0
   366
	EKeyDelete=0x007f,                   /**< Code for the Delete (Del) key*/
sl@0
   367
	EKeyPrintScreen=ENonCharacterKeyBase,/**< Code for the Print screen key */
sl@0
   368
	EKeyPause,                           /**< Code for the Pause key*/
sl@0
   369
	EKeyHome,                            /**< Code for the Home key*/
sl@0
   370
	EKeyEnd,                             /**< Code for the End key*/
sl@0
   371
	EKeyPageUp,                          /**< Code for the Page up key*/
sl@0
   372
	EKeyPageDown,                        /**< Code for the Page down key*/
sl@0
   373
	EKeyInsert,                          /**< Code for the Insert key*/
sl@0
   374
	EKeyLeftArrow,                       /**< Code for the Left arrow key*/
sl@0
   375
	EKeyRightArrow,                      /**< Code for the Right arrow key*/
sl@0
   376
	EKeyUpArrow,                         /**< Code for the Up arrow key*/
sl@0
   377
	EKeyDownArrow,                       /**< Code for the Down arrow key*/
sl@0
   378
	EKeyLeftShift,                       /**< Code for the left Shift key*/
sl@0
   379
	EKeyRightShift,                      /**< Code for the right Shift key*/
sl@0
   380
	EKeyLeftAlt,                         /**< Code for the left Alt key*/
sl@0
   381
	EKeyRightAlt,                        /**< Code for the right Alt key*/
sl@0
   382
	EKeyLeftCtrl,                        /**< Code for the left Control (Ctrl) key*/
sl@0
   383
	EKeyRightCtrl,                       /**< Code for the right Control (Ctrl) key.*/
sl@0
   384
	EKeyLeftFunc,                        /**< Code for the left Fn key.*/
sl@0
   385
	EKeyRightFunc,                       /**< Code for the right Fn key.*/
sl@0
   386
	EKeyCapsLock,                        /**< Code for the Caps lock key.*/
sl@0
   387
	EKeyNumLock,                         /**< Code for the Num lock key.*/
sl@0
   388
	EKeyScrollLock,                      /**< Code for the Scroll lock key.*/
sl@0
   389
	EKeyF1,                              /**< Code for the F1 function key.*/
sl@0
   390
	EKeyF2,                              /**< Code for the F2 function key.*/
sl@0
   391
	EKeyF3,                              /**< Code for the F3 function key.*/
sl@0
   392
	EKeyF4,                              /**< Code for the F4 function key.*/
sl@0
   393
	EKeyF5,                              /**< Code for the F5 function key.*/
sl@0
   394
	EKeyF6,                              /**< Code for the F6 function key.*/
sl@0
   395
	EKeyF7,                              /**< Code for the F7 function key.*/
sl@0
   396
	EKeyF8,                              /**< Code for the F8 function key.*/
sl@0
   397
	EKeyF9,                              /**< Code for the F9 function key.*/
sl@0
   398
	EKeyF10,                             /**< Code for the F10 function key.*/
sl@0
   399
	EKeyF11,                             /**< Code for the F11 function key.*/
sl@0
   400
	EKeyF12,                             /**< Code for the F12 function key.*/
sl@0
   401
	EKeyF13,                             /**< Code for the F13 function key.*/
sl@0
   402
	EKeyF14,                             /**< Code for the F14 function key.*/
sl@0
   403
	EKeyF15,                             /**< Code for the F15 function key.*/
sl@0
   404
	EKeyF16,                             /**< Code for the F16 function key.*/
sl@0
   405
	EKeyF17,                             /**< Code for the F17 function key.*/
sl@0
   406
	EKeyF18,                             /**< Code for the F18 function key.*/
sl@0
   407
	EKeyF19,                             /**< Code for the F19 function key.*/
sl@0
   408
	EKeyF20,                             /**< Code for the F20 function key.*/
sl@0
   409
	EKeyF21,                             /**< Code for the F21 function key.*/
sl@0
   410
	EKeyF22,                             /**< Code for the F22 function key.*/
sl@0
   411
	EKeyF23,                             /**< Code for the F23 function key.*/
sl@0
   412
	EKeyF24,                             /**< Code for the F24 function key.*/
sl@0
   413
    EKeyOff,                             /**< Code for the Off key.*/
sl@0
   414
    EKeyIncContrast,                     /**< Code for the Increase contrast key.*/
sl@0
   415
    EKeyDecContrast,                     /**< Code for the Decrease contrast key.*/
sl@0
   416
    EKeyBacklightOn,                     /**< Code for the Backlight on key.*/
sl@0
   417
    EKeyBacklightOff,                    /**< Code for the Backlight off key.*/
sl@0
   418
    EKeyBacklightToggle,                 /**< Code for the Backlight toggle key.*/
sl@0
   419
    EKeySliderDown,                      /**< Code for the Slider down key.*/
sl@0
   420
    EKeySliderUp,                        /**< Code for the Slider up key.*/
sl@0
   421
    EKeyMenu,                            /**< Code for the Menu key.*/
sl@0
   422
    EKeyDictaphonePlay,                  /**< Code for the Dictaphone play key.*/
sl@0
   423
    EKeyDictaphoneStop,                  /**< Code for the Dictaphone stop key.*/
sl@0
   424
    EKeyDictaphoneRecord,                /**< Code for the Dictaphone record key.*/
sl@0
   425
    EKeyHelp,                            /**< Code for the Help key.*/
sl@0
   426
    EKeyDial,                            /**< Code for the Dial key.*/
sl@0
   427
	EKeyScreenDimension0,                /**< Code for the first Screen dimension change key.*/
sl@0
   428
	EKeyScreenDimension1,                /**< Code for the second Screen dimension change key.*/
sl@0
   429
	EKeyScreenDimension2,                /**< Code for the third Screen dimension change key.*/
sl@0
   430
	EKeyScreenDimension3,                /**< Code for the fourth Screen dimension change key.*/
sl@0
   431
	EKeyIncVolume,                       /**< Code for the increase colume key.*/
sl@0
   432
	EKeyDecVolume,                       /**< Code for the decrease volume key.*/
sl@0
   433
	EKeyDevice0,                         /**< Code for a device specific key.*/
sl@0
   434
	EKeyDevice1,                         /**< Code for a device specific key.*/
sl@0
   435
	EKeyDevice2,                         /**< Code for a device specific key. */
sl@0
   436
	EKeyDevice3,                         /**< Code for a device specific key.*/
sl@0
   437
	EKeyDevice4,                         /**< Code for a device specific key.*/
sl@0
   438
	EKeyDevice5,                         /**< Code for a device specific key.*/
sl@0
   439
	EKeyDevice6,                         /**< Code for a device specific key.*/
sl@0
   440
	EKeyDevice7,                         /**< Code for a device specific key.*/
sl@0
   441
	EKeyDevice8,                         /**< Code for a device specific key.*/
sl@0
   442
	EKeyDevice9,                         /**< Code for a device specific key.*/
sl@0
   443
	EKeyDeviceA,                         /**< Code for a device specific key.*/
sl@0
   444
	EKeyDeviceB,                         /**< Code for a device specific key.*/
sl@0
   445
	EKeyDeviceC,                         /**< Code for a device specific key.*/
sl@0
   446
	EKeyDeviceD,                         /**< Code for a device specific key.*/
sl@0
   447
	EKeyDeviceE,                         /**< Code for a device specific key.*/
sl@0
   448
	EKeyDeviceF,                         /**< Code for a device specific key.*/
sl@0
   449
	EKeyApplication0,                    /**< Code for an Application launcher key.*/
sl@0
   450
	EKeyApplication1,                    /**< Code for an Application launcher key.*/
sl@0
   451
	EKeyApplication2,                    /**< Code for an Application launcher key.*/
sl@0
   452
	EKeyApplication3,                    /**< Code for an Application launcher key.*/
sl@0
   453
	EKeyApplication4,                    /**< Code for an Application launcher key.*/
sl@0
   454
	EKeyApplication5,                    /**< Code for an Application launcher key.*/
sl@0
   455
	EKeyApplication6,                    /**< Code for an Application launcher key.*/
sl@0
   456
	EKeyApplication7,                    /**< Code for an Application launcher key.*/
sl@0
   457
	EKeyApplication8,                    /**< Code for an Application launcher key.*/
sl@0
   458
	EKeyApplication9,                    /**< Code for an Application launcher key.*/
sl@0
   459
	EKeyApplicationA,                    /**< Code for an Application launcher key.*/
sl@0
   460
	EKeyApplicationB,                    /**< Code for an Application launcher key.*/
sl@0
   461
	EKeyApplicationC,                    /**< Code for an Application launcher key.*/
sl@0
   462
	EKeyApplicationD,                    /**< Code for an Application launcher key.*/
sl@0
   463
	EKeyApplicationE,                    /**< Code for an Application launcher key.*/
sl@0
   464
	EKeyApplicationF,                    /**< Code for an Application launcher key.*/
sl@0
   465
	EKeyYes,                             /**< Code for the Yes key.*/
sl@0
   466
	EKeyNo,                              /**< Code for the No key.*/
sl@0
   467
	EKeyIncBrightness,                   /**< Code for the increase brightness key.*/
sl@0
   468
	EKeyDecBrightness,                   /**< Code for the decrease brightness key. */
sl@0
   469
	EKeyKeyboardExtend,                  /**< Code for flip actuated when keypad extends to full keyboard.*/
sl@0
   470
	EKeyDevice10,                        /**< Code for a device specific key.*/
sl@0
   471
	EKeyDevice11,                        /**< Code for a device specific key.*/
sl@0
   472
	EKeyDevice12,                        /**< Code for a device specific key. */
sl@0
   473
	EKeyDevice13,                        /**< Code for a device specific key.*/
sl@0
   474
	EKeyDevice14,                        /**< Code for a device specific key.*/
sl@0
   475
	EKeyDevice15,                        /**< Code for a device specific key.*/
sl@0
   476
	EKeyDevice16,                        /**< Code for a device specific key.*/
sl@0
   477
	EKeyDevice17,                        /**< Code for a device specific key.*/
sl@0
   478
	EKeyDevice18,                        /**< Code for a device specific key.*/
sl@0
   479
	EKeyDevice19,                        /**< Code for a device specific key.*/
sl@0
   480
	EKeyDevice1A,                        /**< Code for a device specific key.*/
sl@0
   481
	EKeyDevice1B,                        /**< Code for a device specific key.*/
sl@0
   482
	EKeyDevice1C,                        /**< Code for a device specific key.*/
sl@0
   483
	EKeyDevice1D,                        /**< Code for a device specific key.*/
sl@0
   484
	EKeyDevice1E,                        /**< Code for a device specific key.*/
sl@0
   485
	EKeyDevice1F,                        /**< Code for a device specific key.*/
sl@0
   486
	EKeyApplication10,                   /**< Code for an Application launcher key.*/
sl@0
   487
	EKeyApplication11,                   /**< Code for an Application launcher key.*/
sl@0
   488
	EKeyApplication12,                   /**< Code for an Application launcher key.*/
sl@0
   489
	EKeyApplication13,                   /**< Code for an Application launcher key.*/
sl@0
   490
	EKeyApplication14,                   /**< Code for an Application launcher key.*/
sl@0
   491
	EKeyApplication15,                   /**< Code for an Application launcher key.*/
sl@0
   492
	EKeyApplication16,                   /**< Code for an Application launcher key.*/
sl@0
   493
	EKeyApplication17,                   /**< Code for an Application launcher key.*/
sl@0
   494
	EKeyApplication18,                   /**< Code for an Application launcher key.*/
sl@0
   495
	EKeyApplication19,                   /**< Code for an Application launcher key.*/
sl@0
   496
	EKeyApplication1A,                   /**< Code for an Application launcher key.*/
sl@0
   497
	EKeyApplication1B,                   /**< Code for an Application launcher key.*/
sl@0
   498
	EKeyApplication1C,                   /**< Code for an Application launcher key.*/
sl@0
   499
	EKeyApplication1D,                   /**< Code for an Application launcher key.*/
sl@0
   500
	EKeyApplication1E,                   /**< Code for an Application launcher key.*/
sl@0
   501
	EKeyApplication1F,                   /**< Code for an Application launcher key.*/
sl@0
   502
	EKeyDevice20,                        /**< Code for a device specific key.*/
sl@0
   503
	EKeyDevice21,                        /**< Code for a device specific key.*/
sl@0
   504
	EKeyDevice22,                        /**< Code for a device specific key.*/
sl@0
   505
	EKeyDevice23,                        /**< Code for a device specific key.*/
sl@0
   506
	EKeyDevice24,                        /**< Code for a device specific key.*/
sl@0
   507
	EKeyDevice25,                        /**< Code for a device specific key.*/
sl@0
   508
	EKeyDevice26,                        /**< Code for a device specific key.*/
sl@0
   509
	EKeyDevice27,                        /**< Code for a device specific key.*/
sl@0
   510
	EKeyApplication20,                   /**< Code for an Application launcher key.*/
sl@0
   511
	EKeyApplication21,                   /**< Code for an Application launcher key.*/
sl@0
   512
	EKeyApplication22,                   /**< Code for an Application launcher key.*/
sl@0
   513
	EKeyApplication23,                   /**< Code for an Application launcher key.*/
sl@0
   514
	EKeyApplication24,                   /**< Code for an Application launcher key.*/
sl@0
   515
	EKeyApplication25,                   /**< Code for an Application launcher key.*/
sl@0
   516
	EKeyApplication26,                   /**< Code for an Application launcher key.*/
sl@0
   517
	EKeyApplication27                    /**< Code for an Application launcher key.*/
sl@0
   518
	};
sl@0
   519
sl@0
   520
#endif
sl@0
   521