Added missing newline chars to logging commands
[platform/core/uifw/dali-adaptor.git] / adaptors / ecore / common / ecore-virtual-keyboard.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 "virtual-keyboard-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <algorithm>
23
24 #include <dali/integration-api/debug.h>
25
26 // INTERNAL INCLUDES
27 #include "ecore-virtual-keyboard.h"
28 #include <adaptor.h>
29 #include <locale-utils.h>
30 #include <imf-manager-impl.h>
31
32 namespace Dali
33 {
34
35 namespace Internal
36 {
37
38 namespace Adaptor
39 {
40
41 namespace VirtualKeyboard
42 {
43
44 namespace
45 {
46 #if defined(DEBUG_ENABLED)
47 Debug::Filter* gLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_VIRTUAL_KEYBOARD");
48 #endif
49
50 #define TOKEN_STRING(x) #x
51
52 //forward declarations
53 void InputPanelGeometryChangedCallback ( void *data, Ecore_IMF_Context *context, int value );
54 void InputPanelLanguageChangeCallback( void* data, Ecore_IMF_Context* context, int value );
55
56 // Signals
57 Dali::VirtualKeyboard::StatusSignalType gKeyboardStatusSignal;
58 Dali::VirtualKeyboard::VoidSignalType   gKeyboardResizeSignal;
59 Dali::VirtualKeyboard::VoidSignalType   gKeyboardLanguageChangedSignal;
60
61 void InputPanelStateChangeCallback( void* data, Ecore_IMF_Context* context, int value )
62 {
63   switch (value)
64   {
65     case ECORE_IMF_INPUT_PANEL_STATE_SHOW:
66     {
67       DALI_LOG_INFO( gLogFilter, Debug::General, "VKB ECORE_IMF_INPUT_PANEL_STATE_SHOW\n" );
68
69       gKeyboardStatusSignal.Emit( true );
70
71       break;
72     }
73
74     case ECORE_IMF_INPUT_PANEL_STATE_HIDE:
75     {
76       DALI_LOG_INFO( gLogFilter, Debug::General, "VKB ECORE_IMF_INPUT_PANEL_STATE_HIDE\n" );
77
78       gKeyboardStatusSignal.Emit( false );
79
80       break;
81     }
82
83     case ECORE_IMF_INPUT_PANEL_STATE_WILL_SHOW:
84     default:
85     {
86       // Do nothing
87       break;
88     }
89   }
90 }
91
92 void InputPanelLanguageChangeCallback( void* data, Ecore_IMF_Context* context, int value )
93 {
94   DALI_LOG_INFO( gLogFilter, Debug::General, "VKB InputPanelLanguageChangeCallback\n" );
95
96   // Emit the signal that the language has changed
97   gKeyboardLanguageChangedSignal.Emit();
98 }
99
100 void InputPanelGeometryChangedCallback ( void *data, Ecore_IMF_Context *context, int value )
101 {
102   DALI_LOG_INFO( gLogFilter, Debug::General, "VKB InputPanelGeometryChangedCallback\n" );
103
104   // Emit signal that the keyboard is resized
105   gKeyboardResizeSignal.Emit();
106 }
107
108 } // unnamed namespace
109
110 void ConnectCallbacks( Ecore_IMF_Context *imfContext )
111 {
112   if( imfContext )
113   {
114     DALI_LOG_INFO( gLogFilter, Debug::General, "VKB ConnectPanelCallbacks\n" );
115
116     ecore_imf_context_input_panel_event_callback_add( imfContext, ECORE_IMF_INPUT_PANEL_STATE_EVENT,    InputPanelStateChangeCallback,     NULL );
117     ecore_imf_context_input_panel_event_callback_add( imfContext, ECORE_IMF_INPUT_PANEL_LANGUAGE_EVENT, InputPanelLanguageChangeCallback,  NULL );
118     ecore_imf_context_input_panel_event_callback_add( imfContext, ECORE_IMF_INPUT_PANEL_GEOMETRY_EVENT, InputPanelGeometryChangedCallback, NULL );
119   }
120 }
121
122 void DisconnectCallbacks( Ecore_IMF_Context *imfContext )
123 {
124   if( imfContext )
125   {
126     DALI_LOG_INFO( gLogFilter, Debug::General, "VKB DisconnectPanelCallbacks\n" );
127
128     ecore_imf_context_input_panel_event_callback_del( imfContext, ECORE_IMF_INPUT_PANEL_STATE_EVENT,    InputPanelStateChangeCallback     );
129     ecore_imf_context_input_panel_event_callback_del( imfContext, ECORE_IMF_INPUT_PANEL_LANGUAGE_EVENT, InputPanelLanguageChangeCallback  );
130     ecore_imf_context_input_panel_event_callback_del( imfContext, ECORE_IMF_INPUT_PANEL_GEOMETRY_EVENT, InputPanelGeometryChangedCallback );
131   }
132 }
133
134 void Show()
135 {
136   Dali::ImfManager imfManager = ImfManager::Get(); // Create ImfManager instance (if required) to show the keyboard
137
138   if( imfManager )
139   {
140     Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
141
142     if( imfContext )
143     {
144       ecore_imf_context_input_panel_show( imfContext );
145     }
146   }
147 }
148
149 void Hide()
150 {
151   if( ImfManager::IsAvailable() /* We do not want to create an ImfManager instance*/ )
152   {
153     Dali::ImfManager imfManager = ImfManager::Get();
154     Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
155
156     if( imfContext )
157     {
158       ecore_imf_context_input_panel_hide( imfContext );
159     }
160   }
161 }
162
163 bool IsVisible()
164 {
165   if( ImfManager::IsAvailable() /* We do not want to create an ImfManager instance */ )
166   {
167     DALI_LOG_INFO( gLogFilter, Debug::General, "IMF IsVisible\n" );
168
169     Dali::ImfManager imfManager = ImfManager::Get();
170     Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
171
172     if ( imfContext )
173     {
174       if (ecore_imf_context_input_panel_state_get(imfContext) == ECORE_IMF_INPUT_PANEL_STATE_SHOW ||
175           ecore_imf_context_input_panel_state_get(imfContext) == ECORE_IMF_INPUT_PANEL_STATE_WILL_SHOW)
176       {
177         return true;
178       }
179     }
180   }
181
182   return false;
183 }
184
185 void ApplySettings( const Property::Map& settingsMap )
186 {
187   using namespace InputMethod; // Allows exclusion of namespace in TOKEN_STRING.
188
189   for ( unsigned int i = 0, count = settingsMap.Count(); i < count; ++i )
190   {
191     std::string key = settingsMap.GetKey( i );
192     Property::Value item = settingsMap.GetValue(i);
193
194     if ( key == TOKEN_STRING( ACTION_BUTTON ) )
195     {
196       if ( item.GetType() == Property::INTEGER )
197       {
198         int value = item.Get< int >();
199         VirtualKeyboard::SetReturnKeyType( static_cast<InputMethod::ActionButton>(value) );
200       }
201     }
202     else
203     {
204       DALI_LOG_INFO( gLogFilter, Debug::General, "Provided Settings Key not supported\n" );
205     }
206    }
207 }
208
209 void EnablePrediction(const bool enable)
210 {
211   Dali::ImfManager imfManager = ImfManager::Get(); // Create ImfManager instance (if required) when enabling prediction
212
213   if( imfManager )
214   {
215     Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
216
217     if ( imfContext )
218     {
219       ecore_imf_context_prediction_allow_set( imfContext, (enable)? EINA_TRUE : EINA_FALSE);
220     }
221   }
222 }
223
224 bool IsPredictionEnabled()
225 {
226   if ( ImfManager::IsAvailable() /* We do not want to create an instance of ImfManger */ )
227   {
228     Dali::ImfManager imfManager = ImfManager::Get();
229     Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
230
231     if ( imfContext )
232     {
233       // predictive text is enabled.
234       if ( ecore_imf_context_input_panel_enabled_get( imfContext ) == EINA_TRUE )
235       {
236         return true;
237       }
238     }
239   }
240
241   return false;
242 }
243
244 Rect<int> GetSizeAndPosition()
245 {
246   int xPos, yPos, width, height;
247
248   width = height = xPos = yPos = 0;
249   Dali::ImfManager imfManager = ImfManager::Get(); // Create ImfManager instance (if required) as we may need to do some size related setup in the application
250
251   if( imfManager )
252   {
253     Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
254
255     if( imfContext )
256     {
257       ecore_imf_context_input_panel_geometry_get(imfContext, &xPos, &yPos, &width, &height);
258     }
259     else
260     {
261       DALI_LOG_WARNING("VKB Unable to get IMF Context so GetSize unavailable\n");
262     // return 0 as real size unknown.
263     }
264   }
265
266   return Rect<int>(xPos,yPos,width,height);
267 }
268
269 Dali::VirtualKeyboard::StatusSignalType& StatusChangedSignal()
270 {
271   return gKeyboardStatusSignal;
272 }
273
274 Dali::VirtualKeyboard::VoidSignalType& ResizedSignal()
275 {
276   return gKeyboardResizeSignal;
277 }
278
279 Dali::VirtualKeyboard::VoidSignalType& LanguageChangedSignal()
280 {
281   return gKeyboardLanguageChangedSignal;
282 }
283
284 Dali::VirtualKeyboard::TextDirection GetTextDirection()
285 {
286   Dali::VirtualKeyboard::TextDirection direction ( Dali::VirtualKeyboard::LeftToRight );
287
288   if ( ImfManager::IsAvailable() /* We do not want to create an instance of ImfManager */ )
289   {
290     Dali::ImfManager imfManager = ImfManager::Get();
291
292     if ( imfManager )
293     {
294       Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
295
296       if ( imfContext )
297       {
298         char* locale( NULL );
299         ecore_imf_context_input_panel_language_locale_get( imfContext, &locale );
300
301         if ( locale )
302         {
303           direction = Locale::GetTextDirection( std::string( locale ) );
304           free( locale );
305         }
306       }
307     }
308   }
309   return direction;
310 }
311
312 } // namespace VirtualKeyboard
313
314 } // namespace Adaptor
315
316 } // namespace Internal
317
318 } // namespace Dali