Remove deprecated and unused ActionButton
[platform/core/uifw/dali-adaptor.git] / dali / internal / input / windows / virtual-keyboard-impl-win.cpp
1 /*
2  * Copyright (c) 2020 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 <dali/internal/input/common/virtual-keyboard-impl.h>
20
21 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 namespace Adaptor
28 {
29
30 namespace VirtualKeyboard
31 {
32 void Show()
33 {
34 }
35
36 void Hide()
37 {
38
39 }
40
41 bool IsVisible()
42 {
43   return false;
44 }
45
46 void ApplySettings( const Property::Map& settingsMap )
47 {
48
49 }
50
51 void EnablePrediction( const bool enable )
52 {
53
54 }
55
56 bool IsPredictionEnabled()
57 {
58   return false;
59 }
60
61 Rect<int> GetSizeAndPosition()
62 {
63   Rect<int> ret;
64   return ret;
65 }
66
67 Dali::VirtualKeyboard::StatusSignalType& StatusChangedSignal()
68 {
69   Dali::VirtualKeyboard::StatusSignalType ret;
70   return ret;
71 }
72
73 Dali::VirtualKeyboard::KeyboardResizedSignalType& ResizedSignal()
74 {
75   Dali::VirtualKeyboard::KeyboardResizedSignalType ret;
76   return ret;
77 }
78
79 Dali::VirtualKeyboard::LanguageChangedSignalType& LanguageChangedSignal()
80 {
81   Dali::VirtualKeyboard::LanguageChangedSignalType ret;
82   return ret;
83 }
84
85 Dali::VirtualKeyboard::TextDirection GetTextDirection()
86 {
87   return Dali::VirtualKeyboard::LeftToRight;
88 }
89
90 void RotateTo(int angle)
91 {
92 }
93
94 void SetReturnKeyType( const InputMethod::ButtonAction::Type type )
95 {
96 }
97
98 Dali::InputMethod::ButtonAction::Type GetReturnKeyType()
99 {
100   return Dali::InputMethod::ButtonAction::DEFAULT;
101 }
102
103 } // namespace VirtualKeyboard
104
105 } // namespace Adaptor
106
107 } // namespace Internal
108
109 } // namespace Dali