f1a4c6fad255c1d81e2f302dd9f093ebff8d6a41
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / virtual-keyboard-impl-x.cpp
1 /*
2  * Copyright (c) 2014 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 <X11/Xlib.h>
23 #include <Ecore_X.h>
24 #include <algorithm>
25
26 #include <dali/integration-api/debug.h>
27
28 // INTERNAL INCLUDES
29 #include <adaptor.h>
30 #include <locale-utils.h>
31 #include <imf-manager-impl.h>
32
33
34 namespace Dali
35 {
36
37 namespace Internal
38 {
39
40 namespace Adaptor
41 {
42
43 namespace VirtualKeyboard
44 {
45
46 Dali::InputMethod::ActionButton gActionButtonFunction = Dali::InputMethod::ACTION_DEFAULT;
47
48 Ecore_IMF_Input_Panel_Return_Key_Type actionButtonMapping(Dali::InputMethod::ActionButton actionButton )
49 {
50   switch( actionButton )
51   {
52     case InputMethod::ACTION_DEFAULT:     return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT;
53     case InputMethod::ACTION_DONE:        return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DONE;
54     case InputMethod::ACTION_GO:          return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_GO;
55     case InputMethod::ACTION_JOIN:        return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_JOIN;
56     case InputMethod::ACTION_LOGIN:       return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_LOGIN;
57     case InputMethod::ACTION_NEXT:        return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_NEXT;
58     case InputMethod::ACTION_PREVIOUS:    return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT;
59     case InputMethod::ACTION_SEARCH:      return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_SEARCH;
60     case InputMethod::ACTION_SEND:        return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_SEND;
61     case InputMethod::ACTION_SIGNIN:      return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT;
62     case InputMethod::ACTION_UNSPECIFIED: return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT;
63     case InputMethod::ACTION_NONE:        return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT;
64     default:                              return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT;
65   }
66 }
67
68 void RotateTo(int angle)
69 {
70   // Get focus window used by Keyboard and rotate it
71   Display* display = XOpenDisplay(0);
72   if (display)
73   {
74     ::Window focusWindow;
75     int revert;
76     // Get Focus window
77     XGetInputFocus(display, &focusWindow, &revert);
78
79     ecore_x_window_prop_property_set( focusWindow,
80                                       ECORE_X_ATOM_E_ILLUME_ROTATE_WINDOW_ANGLE,
81                                       ECORE_X_ATOM_CARDINAL, 32, &angle, 1 );
82     XCloseDisplay(display);
83   }
84 }
85
86 void SetReturnKeyType( const InputMethod::ActionButton type )
87 {
88   Dali::ImfManager imfManager = ImfManager::Get(); // Create ImfManager instance (if required) when setting values
89   Ecore_IMF_Context* imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
90
91   if( imfContext )
92   {
93     gActionButtonFunction = type;
94     ecore_imf_context_input_panel_return_key_type_set( imfContext, actionButtonMapping( type ) );
95   }
96 }
97
98 Dali::InputMethod::ActionButton GetReturnKeyType()
99 {
100   return gActionButtonFunction;
101 }
102
103 } // namespace VirtualKeyboard
104
105 } // namespace Adaptor
106
107 } // namespace Internal
108
109 } // namespace Dali