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