Merge "Automated test fix for framebuffer creation" into devel/master
[platform/core/uifw/dali-adaptor.git] / adaptors / wayland / virtual-keyboard-impl-wl.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 <Ecore.h>
23 #include <Ecore_Wayland.h>
24 #include <algorithm>
25
26 #include <dali/public-api/common/vector-wrapper.h>
27 #include <dali/integration-api/debug.h>
28
29 // INTERNAL INCLUDES
30 #include <adaptor.h>
31 #include <locale-utils.h>
32 #include <imf-manager-impl.h>
33
34
35 namespace Dali
36 {
37
38 namespace Internal
39 {
40
41 namespace Adaptor
42 {
43
44 namespace VirtualKeyboard
45 {
46
47 Dali::InputMethod::ActionButton gActionButtonFunction = Dali::InputMethod::ACTION_DEFAULT;
48
49 void RotateTo(int angle)
50 {
51 }
52
53 void SetReturnKeyType( const InputMethod::ActionButton type )
54 {
55 }
56
57 Dali::InputMethod::ActionButton GetReturnKeyType()
58 {
59   return gActionButtonFunction;
60 }
61
62 } // namespace VirtualKeyboard
63
64 } // namespace Adaptor
65
66 } // namespace Internal
67
68 } // namespace Dali