[dali_1.2.34] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / public-api / events / key-event.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/events/key-event.h>
20
21 namespace Dali
22 {
23
24 namespace
25 {
26 const unsigned int MODIFIER_SHIFT = 0x1;
27 const unsigned int MODIFIER_CTRL  = 0x2;
28 const unsigned int MODIFIER_ALT   = 0x4;
29 const int KEY_INVALID_CODE = -1;
30
31 }
32
33 KeyEvent::KeyEvent()
34 : keyPressedName(""),
35   keyPressed(""),
36   keyCode(KEY_INVALID_CODE),
37   keyModifier(0),
38   time(0),
39   state(KeyEvent::Down)
40 {
41 }
42
43 KeyEvent::KeyEvent(const std::string& keyName, const std::string& keyString, int keyCode, int keyModifier,unsigned long timeStamp, const State& keyState)
44 : keyPressedName(keyName),
45   keyPressed(keyString),
46   keyCode(keyCode),
47   keyModifier(keyModifier),
48   time(timeStamp),
49   state(keyState)
50 {
51 }
52
53 KeyEvent::~KeyEvent()
54 {
55 }
56
57 bool KeyEvent::IsShiftModifier() const
58 {
59   if ((MODIFIER_SHIFT & keyModifier) == MODIFIER_SHIFT)
60   {
61     return true;
62   }
63
64   return false;
65 }
66
67 bool KeyEvent::IsCtrlModifier() const
68 {
69   if ((MODIFIER_CTRL & keyModifier) == MODIFIER_CTRL)
70   {
71     return true;
72   }
73
74   return false;
75 }
76
77 bool KeyEvent::IsAltModifier() const
78 {
79   if ((MODIFIER_ALT & keyModifier) == MODIFIER_ALT)
80   {
81     return true;
82   }
83
84   return false;
85 }
86
87 } // namespace Dali