Tizen 2.1 base
[platform/core/uifw/ise-engine-sunpinyin.git] / src / ime-core / imi_keys.h
1 // -*- mode: c++ -*-
2 /*
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4  *
5  * Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
6  *
7  * The contents of this file are subject to the terms of either the GNU Lesser
8  * General Public License Version 2.1 only ("LGPL") or the Common Development and
9  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
10  * file except in compliance with the License. You can obtain a copy of the CDDL at
11  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
12  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the
13  * specific language governing permissions and limitations under the License. When
14  * distributing the software, include this License Header Notice in each file and
15  * include the full text of the License in the License file as well as the
16  * following notice:
17  *
18  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
19  * (CDDL)
20  * For Covered Software in this distribution, this License shall be governed by the
21  * laws of the State of California (excluding conflict-of-law provisions).
22  * Any litigation relating to this License shall be subject to the jurisdiction of
23  * the Federal Courts of the Northern District of California and the state courts
24  * of the State of California, with venue lying in Santa Clara County, California.
25  *
26  * Contributor(s):
27  *
28  * If you wish your version of this file to be governed by only the CDDL or only
29  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
30  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
31  * license." If you don't indicate a single choice of license, a recipient has the
32  * option to distribute your version of this file under either the CDDL or the LGPL
33  * Version 2.1, or to extend the choice of license to its licensees as provided
34  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
35  * Version 2 license, then the option applies only if the new code is made subject
36  * to such option by the copyright holder.
37  */
38
39 #ifndef SUNPINYIN_KEYSDEFINE_H
40 #define SUNPINYIN_KEYSDEFINE_H
41
42 #include "portability.h"
43
44 #define IM_SHIFT_MASK        (1 << 0)
45 #define IM_CTRL_MASK         (1 << 2)
46 #define IM_ALT_MASK          (1 << 3)
47 #define IM_SUPER_MASK        (1 << 26)
48 #define IM_RELEASE_MASK      (1 << 30)
49
50 #define IM_VK_SPACE          ' '
51 #define IM_VK_MINUS          '-'
52 #define IM_VK_EQUALS         '='
53 #define IM_VK_COMMA          ','
54 #define IM_VK_PERIOD         '.'
55 #define IM_VK_OPEN_BRACKET   '['
56 #define IM_VK_CLOSE_BRACKET  ']'
57 #define IM_VK_BACK_QUOTE     '`'
58
59 #define IM_VK_HOME           0xff50
60 #define IM_VK_LEFT           0xff51
61 #define IM_VK_UP             0xff52
62 #define IM_VK_RIGHT          0xff53
63 #define IM_VK_DOWN           0xff54
64 #define IM_VK_PAGE_UP        0xff55
65 #define IM_VK_PAGE_DOWN      0xff56
66 #define IM_VK_END            0xff57
67
68 #define IM_VK_DELETE         0xffff
69 #define IM_VK_BACK_SPACE     0xff08
70
71 #define IM_VK_ENTER          0xff0d
72 #define IM_VK_ESCAPE         0xff1b
73
74 #define IM_VK_SHIFT_L        0xffe1
75 #define IM_VK_SHIFT_R        0xffe2
76 #define IM_VK_CONTROL_L      0xffe3
77 #define IM_VK_CONTROL_R      0xffe4
78 #define IM_VK_ALT            0xffe9
79
80 struct CKeyEvent {
81     unsigned code;
82     unsigned value;
83     unsigned modifiers;
84
85     CKeyEvent (unsigned kc, unsigned kv = 0, unsigned m = 0)
86         : code(kc), value(kv), modifiers(m){
87         // clear other mask bit we do not care
88         modifiers &=
89             (IM_SHIFT_MASK | IM_CTRL_MASK | IM_ALT_MASK | IM_SUPER_MASK |
90         IM_RELEASE_MASK);
91     }
92
93     bool operator <(const CKeyEvent& b) const {
94         return((code < b.code) ||
95                ((code == b.code) &&
96                 (modifiers < b.modifiers)));
97     }
98
99     bool operator ==(const CKeyEvent& rhs) const {
100         return(code == rhs.code &&
101                modifiers == rhs.modifiers);
102     }
103
104     bool operator !=(const CKeyEvent& rhs) const {
105         return(code != rhs.code ||
106                modifiers != rhs.modifiers);
107     }
108
109     void reset(){
110         code = (unsigned) ~0;
111         value = (unsigned) ~0;
112         modifiers = 0;
113     }
114 };
115
116 #endif