2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
4 // Licensed under the Flora License, Version 1.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
8 // http://floralicense.org/license/
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.
18 #include <dali/public-api/events/key-event.h>
25 const unsigned int MODIFIER_SHIFT = 0x1;
26 const unsigned int MODIFIER_CTRL = 0x2;
27 const unsigned int MODIFIER_ALT = 0x4;
28 const int KEY_INVALID_CODE = -1;
35 keyCode(KEY_INVALID_CODE),
43 KeyEvent::KeyEvent(const std::string& keyName, const std::string& keyPressed, const int& keyModifier, const int& offset, const int& characters, const State& keyState)
44 : keyPressedName(keyName),
45 keyPressed(keyPressed),
46 keyCode(KEY_INVALID_CODE),
47 keyModifier(keyModifier),
49 numberOfChars(characters),
55 KeyEvent::KeyEvent(const std::string& keyName, const std::string& keyString, const int& keyCode, const int& keyModifier, const int& cursorOffset, const int& numberOfChars, const State& keyState)
56 : keyPressedName(keyName),
57 keyPressed(keyString),
59 keyModifier(keyModifier),
60 cursorOffset(cursorOffset),
61 numberOfChars(numberOfChars),
67 KeyEvent::KeyEvent(const std::string& keyName, const std::string& keyString, const int& keyCode, const int& keyModifier, const int& cursorOffset, const int& numberOfChars, const unsigned long& timeStamp, const State& keyState)
68 : keyPressedName(keyName),
69 keyPressed(keyString),
71 keyModifier(keyModifier),
72 cursorOffset(cursorOffset),
73 numberOfChars(numberOfChars),
83 bool KeyEvent::IsShiftModifier() const
85 if ((MODIFIER_SHIFT & keyModifier) == MODIFIER_SHIFT)
93 bool KeyEvent::IsCtrlModifier() const
95 if ((MODIFIER_CTRL & keyModifier) == MODIFIER_CTRL)
103 bool KeyEvent::IsAltModifier() const
105 if ((MODIFIER_ALT & keyModifier) == MODIFIER_ALT)