[AT-SPI] Window: add highlight signal
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / window-devel.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 // EXTERNAL INCLUDES
19 #include <dali/public-api/adaptor-framework/window-enumerations.h>
20 #include <dali/public-api/events/key-event.h>
21 #include <dali/public-api/events/wheel-event.h>
22
23 // INTERNAL INCLUDES
24 #include <dali/devel-api/adaptor-framework/window-devel.h>
25 #include <dali/internal/window-system/common/window-impl.h>
26
27 namespace Dali
28 {
29 namespace DevelWindow
30 {
31 Window New(Any surface, PositionSize windowPosition, const std::string& name, bool isTransparent)
32 {
33   return DevelWindow::New(surface, windowPosition, name, "", isTransparent);
34 }
35
36 Window New(Any surface, PositionSize windowPosition, const std::string& name, const std::string& className, bool isTransparent)
37 {
38   Window newWindow;
39
40   const bool isAdaptorAvailable = Dali::Adaptor::IsAvailable();
41   bool       isNewWindowAllowed = true;
42
43   if(isAdaptorAvailable)
44   {
45     Dali::Adaptor& adaptor = Internal::Adaptor::Adaptor::Get();
46     isNewWindowAllowed     = Internal::Adaptor::Adaptor::GetImplementation(adaptor).IsMultipleWindowSupported();
47   }
48
49   if(isNewWindowAllowed)
50   {
51     Internal::Adaptor::Window* window = Internal::Adaptor::Window::New(surface, windowPosition, name, className, WindowType::NORMAL, isTransparent);
52
53     Integration::SceneHolder sceneHolder = Integration::SceneHolder(window);
54     if(isAdaptorAvailable)
55     {
56       Dali::Adaptor& adaptor = Internal::Adaptor::Adaptor::Get();
57       Internal::Adaptor::Adaptor::GetImplementation(adaptor).AddWindow(sceneHolder);
58     }
59     newWindow = Window(window);
60   }
61   else
62   {
63     DALI_LOG_ERROR("This device can't support multiple windows.\n");
64   }
65
66   return newWindow;
67 }
68
69 void SetPositionSize(Window window, PositionSize positionSize)
70 {
71   GetImplementation(window).SetPositionSize(positionSize);
72 }
73
74 Window Get(Actor actor)
75 {
76   return Internal::Adaptor::Window::Get(actor);
77 }
78
79 EventProcessingFinishedSignalType& EventProcessingFinishedSignal(Window window)
80 {
81   return GetImplementation(window).EventProcessingFinishedSignal();
82 }
83
84 WheelEventSignalType& WheelEventSignal(Window window)
85 {
86   return GetImplementation(window).WheelEventSignal();
87 }
88
89 VisibilityChangedSignalType& VisibilityChangedSignal(Window window)
90 {
91   return GetImplementation(window).VisibilityChangedSignal();
92 }
93
94 TransitionEffectEventSignalType& TransitionEffectEventSignal(Window window)
95 {
96   return GetImplementation(window).TransitionEffectEventSignal();
97 }
98
99 KeyboardRepeatSettingsChangedSignalType& KeyboardRepeatSettingsChangedSignal(Window window)
100 {
101   return GetImplementation(window).KeyboardRepeatSettingsChangedSignal();
102 }
103
104 AuxiliaryMessageSignalType& AuxiliaryMessageSignal(Window window)
105 {
106   return GetImplementation(window).AuxiliaryMessageSignal();
107 }
108
109 AccessibilityHighlightSignalType& AccessibilityHighlightSignal(Window window)
110 {
111   return GetImplementation(window).AccessibilityHighlightSignal();
112 }
113
114 void SetParent(Window window, Window parent)
115 {
116   GetImplementation(window).SetParent(parent);
117 }
118
119 void SetParent(Window window, Window parent, bool belowParent)
120 {
121   GetImplementation(window).SetParent(parent, belowParent);
122 }
123
124 void Unparent(Window window)
125 {
126   GetImplementation(window).Unparent();
127 }
128
129 Window GetParent(Window window)
130 {
131   return GetImplementation(window).GetParent();
132 }
133
134 Window DownCast(BaseHandle handle)
135 {
136   return Window(dynamic_cast<Dali::Internal::Adaptor::Window*>(handle.GetObjectPtr()));
137 }
138
139 WindowOrientation GetCurrentOrientation(Window window)
140 {
141   return GetImplementation(window).GetCurrentOrientation();
142 }
143
144 int GetPhysicalOrientation(Window window)
145 {
146   return GetImplementation(window).GetPhysicalOrientation();
147 }
148
149 void SetAvailableOrientations(Window window, const Dali::Vector<WindowOrientation>& orientations)
150 {
151   GetImplementation(window).SetAvailableOrientations(orientations);
152 }
153
154 int32_t GetNativeId(Window window)
155 {
156   return GetImplementation(window).GetNativeId();
157 }
158
159 void AddFrameRenderedCallback(Window window, std::unique_ptr<CallbackBase> callback, int32_t frameId)
160 {
161   GetImplementation(window).AddFrameRenderedCallback(std::move(callback), frameId);
162 }
163
164 void AddFramePresentedCallback(Window window, std::unique_ptr<CallbackBase> callback, int32_t frameId)
165 {
166   GetImplementation(window).AddFramePresentedCallback(std::move(callback), frameId);
167 }
168
169 void SetPositionSizeWithOrientation(Window window, PositionSize positionSize, WindowOrientation orientation)
170 {
171   GetImplementation(window).SetPositionSizeWithOrientation(positionSize, orientation);
172 }
173
174 void RequestMoveToServer(Window window)
175 {
176   GetImplementation(window).RequestMoveToServer();
177 }
178
179 void RequestResizeToServer(Window window, WindowResizeDirection direction)
180 {
181   GetImplementation(window).RequestResizeToServer(direction);
182 }
183
184 void EnableFloatingMode(Window window, bool enable)
185 {
186   GetImplementation(window).EnableFloatingMode(enable);
187 }
188
189 void IncludeInputRegion(Window window, const Rect<int>& inputRegion)
190 {
191   GetImplementation(window).IncludeInputRegion(inputRegion);
192 }
193
194 void ExcludeInputRegion(Window window, const Rect<int>& inputRegion)
195 {
196   GetImplementation(window).ExcludeInputRegion(inputRegion);
197 }
198
199 void SetNeedsRotationCompletedAcknowledgement(Window window, bool needAcknowledgement)
200 {
201   GetImplementation(window).SetNeedsRotationCompletedAcknowledgement(needAcknowledgement);
202 }
203
204 void SendRotationCompletedAcknowledgement(Window window)
205 {
206   GetImplementation(window).SendRotationCompletedAcknowledgement();
207 }
208
209 void FeedTouchPoint(Window window, const Dali::TouchPoint& point, int32_t timeStamp)
210 {
211   Integration::Point convertedPoint(point);
212   GetImplementation(window).FeedTouchPoint(convertedPoint, timeStamp);
213 }
214
215 void FeedWheelEvent(Window window, const Dali::WheelEvent& wheelEvent)
216 {
217   Integration::WheelEvent convertedEvent(static_cast<Integration::WheelEvent::Type>(wheelEvent.GetType()), wheelEvent.GetDirection(), wheelEvent.GetModifiers(), wheelEvent.GetPoint(), wheelEvent.GetDelta(), wheelEvent.GetTime());
218   GetImplementation(window).FeedWheelEvent(convertedEvent);
219 }
220
221 void FeedKeyEvent(Window window, const Dali::KeyEvent& keyEvent)
222 {
223   Integration::KeyEvent convertedEvent(keyEvent.GetKeyName(), keyEvent.GetLogicalKey(), keyEvent.GetKeyString(), keyEvent.GetKeyCode(), keyEvent.GetKeyModifier(), keyEvent.GetTime(), static_cast<Integration::KeyEvent::State>(keyEvent.GetState()), keyEvent.GetCompose(), keyEvent.GetDeviceName(), keyEvent.GetDeviceClass(), keyEvent.GetDeviceSubclass());
224   GetImplementation(window).FeedKeyEvent(convertedEvent);
225 }
226
227 void Maximize(Window window, bool maximize)
228 {
229   GetImplementation(window).Maximize(maximize);
230 }
231
232 bool IsMaximized(Window window)
233 {
234   return GetImplementation(window).IsMaximized();
235 }
236
237 void Minimize(Window window, bool miniimize)
238 {
239   GetImplementation(window).Minimize(miniimize);
240 }
241
242 bool IsMinimized(Window window)
243 {
244   return GetImplementation(window).IsMinimized();
245 }
246
247 } // namespace DevelWindow
248
249 } // namespace Dali