1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 1992-2006 TROLLTECH ASA. All rights reserved.
|
---|
4 | **
|
---|
5 | ** This file is part of the Phone Edition of the Qt Toolkit.
|
---|
6 | **
|
---|
7 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
8 | ** Commercial Usage
|
---|
9 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
10 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
11 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
12 | ** a written agreement between you and Nokia.
|
---|
13 | **
|
---|
14 | ** GNU Lesser General Public License Usage
|
---|
15 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
16 | ** General Public License version 2.1 as published by the Free Software
|
---|
17 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
18 | ** packaging of this file. Please review the following information to
|
---|
19 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
20 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
21 | **
|
---|
22 | ** In addition, as a special exception, Nokia gives you certain
|
---|
23 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
24 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
25 | ** package.
|
---|
26 | **
|
---|
27 | ** GNU General Public License Usage
|
---|
28 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
29 | ** General Public License version 3.0 as published by the Free Software
|
---|
30 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
31 | ** packaging of this file. Please review the following information to
|
---|
32 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
33 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
34 | **
|
---|
35 | ** If you are unsure which license is appropriate for your use, please
|
---|
36 | ** contact the sales department at [email protected].
|
---|
37 | ** $QT_END_LICENSE$
|
---|
38 | **
|
---|
39 | ****************************************************************************/
|
---|
40 |
|
---|
41 | #ifndef QTKEYSYM_H
|
---|
42 | #define QTKEYSYM_H
|
---|
43 |
|
---|
44 | /* Special keys used by Qtopia, mapped into the X11 private keypad range */
|
---|
45 | #define QTOPIAXK_Select 0x11000601
|
---|
46 | #define QTOPIAXK_Yes 0x11000602
|
---|
47 | #define QTOPIAXK_No 0x11000603
|
---|
48 |
|
---|
49 | #define QTOPIAXK_Cancel 0x11000604
|
---|
50 | #define QTOPIAXK_Printer 0x11000605
|
---|
51 | #define QTOPIAXK_Execute 0x11000606
|
---|
52 | #define QTOPIAXK_Sleep 0x11000607
|
---|
53 | #define QTOPIAXK_Play 0x11000608
|
---|
54 | #define QTOPIAXK_Zoom 0x11000609
|
---|
55 |
|
---|
56 | #define QTOPIAXK_Context1 0x1100060A
|
---|
57 | #define QTOPIAXK_Context2 0x1100060B
|
---|
58 | #define QTOPIAXK_Context3 0x1100060C
|
---|
59 | #define QTOPIAXK_Context4 0x1100060D
|
---|
60 | #define QTOPIAXK_Call 0x1100060E
|
---|
61 | #define QTOPIAXK_Hangup 0x1100060F
|
---|
62 | #define QTOPIAXK_Flip 0x11000610
|
---|
63 |
|
---|
64 | #define QTOPIAXK_Min QTOPIAXK_Select
|
---|
65 | #define QTOPIAXK_Max QTOPIAXK_Flip
|
---|
66 |
|
---|
67 | #endif
|
---|