1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/*
* Copyright 2006 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkKey_DEFINED
#define SkKey_DEFINED
#include "SkTypes.h"
enum SkKey {
//reordering these to match android.app.KeyEvent
kNONE_SkKey, //corresponds to android's UNKNOWN
kLeftSoftKey_SkKey,
kRightSoftKey_SkKey,
kHome_SkKey, //!< the home key - added to match android
kBack_SkKey, //!< (CLR)
kSend_SkKey, //!< the green (talk) key
kEnd_SkKey, //!< the red key
k0_SkKey,
k1_SkKey,
k2_SkKey,
k3_SkKey,
k4_SkKey,
k5_SkKey,
k6_SkKey,
k7_SkKey,
k8_SkKey,
k9_SkKey,
kStar_SkKey, //!< the * key
kHash_SkKey, //!< the # key
kUp_SkKey,
kDown_SkKey,
kLeft_SkKey,
kRight_SkKey,
kOK_SkKey, //!< the center key
kVolUp_SkKey, //!< volume up - match android
kVolDown_SkKey, //!< volume down - same
kPower_SkKey, //!< power button - same
kCamera_SkKey, //!< camera - same
kSkKeyCount
};
enum SkModifierKeys {
kShift_SkModifierKey = 1 << 0,
kControl_SkModifierKey = 1 << 1,
kOption_SkModifierKey = 1 << 2, // same as ALT
kCommand_SkModifierKey = 1 << 3,
};
#endif
|