Changed indicator bg color.
[platform/framework/native/uifw.git] / src / ui / FUi_KeyEventInfoImpl.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 /**
18 * @file         FUi_KeyEventInfoImpl.cpp
19 * @brief        This is the implementation for the _KeyEventInfoImpl class.
20 * @version      2.0
21 */
22
23 #include <new>
24 #include <FBaseDataType.h>
25 #include <FBaseErrors.h>
26 #include <FBaseSysLog.h>
27 #include "FUi_KeyEventInfoImpl.h"
28 #include "FUi_UiKeyEvent.h"
29
30 using namespace Tizen::Graphics;
31
32 namespace Tizen { namespace Ui
33 {
34
35 _KeyEventInfoImpl*
36 _KeyEventInfoImpl::CreateInstanceN(KeyEventInfo* pPublic)
37 {
38         ClearLastResult();
39
40         _KeyEventInfoImpl* pImpl = new (std::nothrow) _KeyEventInfoImpl(pPublic);
41         SysTryReturn(NID_UI, pImpl, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
42
43         return pImpl;
44 }
45
46 _KeyEventInfoImpl::_KeyEventInfoImpl(KeyEventInfo* pPublic)
47         : __pPublic(pPublic)
48         , __keyCode(KEY_INVALID)
49         , __keyModifier(KEY_MODIFIER_NONE)
50 {
51 }
52
53 _KeyEventInfoImpl::~_KeyEventInfoImpl(void)
54 {
55 }
56
57 void
58 _KeyEventInfoImpl::SetKeyEventInfo(KeyCode keyCode, int keyModifiers)
59 {
60         __keyCode = keyCode;
61         __keyModifier = keyModifiers;
62 }
63
64 void
65 _KeyEventInfoImpl::SetKeyCode(KeyCode keyCode)
66 {
67         __keyCode = keyCode;
68 }
69
70 KeyCode
71 _KeyEventInfoImpl::GetKeyCode(void) const
72 {
73         return __keyCode;
74 }
75
76 void
77 _KeyEventInfoImpl::SetKeyModifier(int keyModifiers)
78 {
79         __keyModifier = keyModifiers;
80 }
81
82 int
83 _KeyEventInfoImpl::GetKeyModifier(void) const
84 {
85         return __keyModifier;
86 }
87
88 } } // Tizen::Ui