Add support for Animation::EndAction::BakeFinal to builder
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / focus-manager / keyinput-focus-manager.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
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
7 //
8 //     http://floralicense.org/license/
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 // CLASS HEADER
18
19 #include "keyinput-focus-manager.h"
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24
25 #include <dali-toolkit/internal/focus-manager/keyinput-focus-manager-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 const char* const KeyInputFocusManager::SIGNAL_KEY_INPUT_FOCUS_CHANGED = "key-input-focus-changed";
34 const char* const KeyInputFocusManager::SIGNAL_UNHANDLED_KEY_EVENT = "unhandled-key-event";
35
36 KeyInputFocusManager::KeyInputFocusManager()
37 {
38 }
39
40 KeyInputFocusManager::~KeyInputFocusManager()
41 {
42 }
43
44 KeyInputFocusManager KeyInputFocusManager::Get()
45 {
46   KeyInputFocusManager manager;
47
48   // Check whether the focus manager is already created
49   Dali::Adaptor& adaptor = Dali::Adaptor::Get();
50   Dali::BaseHandle handle = adaptor.GetSingleton(typeid(KeyInputFocusManager));
51   if(handle)
52   {
53     // If so, downcast the handle of singleton to focus manager
54     manager = KeyInputFocusManager(dynamic_cast<Internal::KeyInputFocusManager*>(handle.GetObjectPtr()));
55   }
56
57   if(!manager)
58   {
59     // If not, create the focus manager and register it as a singleton
60     manager = KeyInputFocusManager(new Internal::KeyInputFocusManager());
61     adaptor.RegisterSingleton(typeid(manager), manager);
62   }
63
64   return manager;
65 }
66
67 KeyInputFocusManager::KeyInputFocusManager(Internal::KeyInputFocusManager *impl)
68   : BaseHandle(impl)
69 {
70 }
71
72 void KeyInputFocusManager::SetFocus(Control control)
73 {
74   GetImpl(*this).SetFocus(control);
75 }
76
77 Control KeyInputFocusManager::GetCurrentFocusControl() const
78 {
79   return GetImpl(*this).GetCurrentFocusControl();
80 }
81
82 void KeyInputFocusManager::RemoveFocus(Control control)
83 {
84   GetImpl(*this).RemoveFocus(control);
85 }
86
87 bool KeyInputFocusManager::IsKeyboardListener(Control control)
88 {
89   return GetImpl(*this).IsKeyboardListener(control);
90 }
91
92 KeyInputFocusManager::KeyInputFocusChangedSignalV2& KeyInputFocusManager::KeyInputFocusChangedSignal()
93 {
94   return GetImpl(*this).KeyInputFocusChangedSignal();
95 }
96
97 KeyInputFocusManager::UnhandledKeyEventSignalV2& KeyInputFocusManager::UnhandledKeyEventSignal()
98 {
99   return GetImpl(*this).UnhandledKeyEventSignal();
100 }
101
102 } // namespace Toolkit
103
104 } // namespace Dali
105