6ce71a325d2e17f5015d80dbb057a9cd92ef6eef
[platform/core/uifw/dali-adaptor.git] / dali / integration-api / adaptor.h
1 #ifndef __DALI_INTEGRATION_ADAPTOR_H__
2 #define __DALI_INTEGRATION_ADAPTOR_H__
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/signals/callback.h>
23 #include <dali/public-api/signals/dali-signal.h>
24 #include <dali/public-api/math/rect.h>
25 #include <dali/public-api/events/touch-event.h>
26 #include <dali/public-api/common/view-mode.h>
27
28 // INTERNAL INCLUDES
29 #include <dali/public-api/adaptor-framework/window.h>
30 #include <dali/public-api/adaptor-framework/application-configuration.h>
31 #include <dali/public-api/dali-adaptor-common.h>
32
33 #ifdef DALI_ADAPTOR_COMPILATION
34 #include <dali/integration-api/log-factory-interface.h>
35 #else
36 #include <dali/integration-api/adaptors/log-factory-interface.h>
37 #endif
38
39
40 namespace Dali
41 {
42
43 class RenderSurface;
44
45 namespace Internal
46 {
47 namespace Adaptor
48 {
49 class Adaptor;
50 }
51 }
52
53 /**
54  * @brief An Adaptor object is used to initialize and control how Dali runs.
55  *
56  * It provides a lifecycle interface that allows the application
57  * writer to provide their own main loop and other platform related
58  * features.
59  *
60  * The Adaptor class provides a means for initialising the resources required by the Dali::Core.
61  *
62  * When dealing with platform events, the application writer MUST ensure that Dali is called in a
63  * thread-safe manner.
64  *
65  * As soon as the Adaptor class is created and started, the application writer can initialise their
66  * Dali::Actor objects straight away or as required by the main loop they intend to use (there is no
67  * need to wait for an initialise signal as per the Dali::Application class).
68  *
69  * The Adaptor does emit a Resize signal which informs the user when the surface is resized.
70  * Tizen and Linux Adaptors should follow the example below:
71  *
72  * @code
73  * void CreateProgram(DaliAdaptor& adaptor)
74  * {
75  *   // Create Dali components...
76  *   // Can instantiate adaptor here instead, if required
77  * }
78  *
79  * int main ()
80  * {
81  *   // Initialise platform
82  *   MyPlatform.Init();
83  *
84  *   // Create an 800 by 1280 window positioned at (0,0).
85  *   Dali::PositionSize positionSize(0, 0, 800, 1280);
86  *   Dali::Window window = Dali::Window::New( positionSize, "My Application" );
87  *
88  *   // Create an adaptor which uses that window for rendering
89  *   Dali::Adaptor adaptor = Dali::Adaptor::New( window );
90  *   adaptor.Start();
91  *
92  *   CreateProgram(adaptor);
93  *   // Or use this as a callback function depending on the platform initialisation sequence.
94  *
95  *   // Start Main Loop of your platform
96  *   MyPlatform.StartMainLoop();
97  *
98  *   return 0;
99  * }
100  * @endcode
101  *
102  * If required, you can also connect class member functions to a signal:
103  *
104  * @code
105  * MyApplication application;
106  * adaptor.ResizedSignal().Connect(&application, &MyApplication::Resize);
107  * @endcode
108  *
109  * @see RenderSurface
110  */
111 class DALI_ADAPTOR_API Adaptor
112 {
113 public:
114
115   typedef Signal< void (Adaptor&) > AdaptorSignalType; ///< Generic Type for adaptor signals
116
117 public:
118   /**
119    * @brief Create a new adaptor using the window.
120    *
121    * @param[in] window The window to draw onto
122    * @return a reference to the adaptor handle
123    */
124   static Adaptor& New( Window window );
125
126   /**
127    * @brief Create a new adaptor using the window.
128    *
129    * @param[in] window The window to draw onto
130    * @param[in] configuration The context loss configuration.
131    * @return a reference to the adaptor handle
132    */
133   static Adaptor& New( Window window, Configuration::ContextLoss configuration );
134
135   /**
136    * @brief Create a new adaptor using render surface.
137    *
138    * @param[in] nativeWindow native window handle
139    * @param[in] surface The surface to draw onto
140    * @return a reference to the adaptor handle
141    */
142   static Adaptor& New( Any nativeWindow, const Dali::RenderSurface& surface );
143
144   /**
145    * @brief Create a new adaptor using render surface.
146    *
147    * @param[in] nativeWindow native window handle
148    * @param[in] surface The surface to draw onto
149    * @param[in] configuration The context loss configuration.
150    * @return a reference to the adaptor handle
151    */
152   static Adaptor& New( Any nativeWindow, const Dali::RenderSurface& surface, Configuration::ContextLoss configuration = Configuration::APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS);
153
154   /**
155    * @brief Virtual Destructor.
156    */
157   virtual ~Adaptor();
158
159 public:
160
161   /**
162    * @brief Starts the Adaptor.
163    */
164   void Start();
165
166   /**
167    * @brief Pauses the Adaptor.
168    */
169   void Pause();
170
171   /**
172    * @brief Resumes the Adaptor, if previously paused.
173    *
174    * @note If the adaptor is not paused, this does not do anything.
175    */
176   void Resume();
177
178   /**
179    * @brief Stops the Adaptor.
180    */
181   void Stop();
182
183   /**
184    * @brief Ensures that the function passed in is called from the main loop when it is idle.
185    * @note Function must be called from the main event thread only.
186    *
187    * Callbacks of the following types may be used:
188    * @code
189    *   void MyFunction();
190    * @endcode
191    * This callback will be deleted once it is called.
192    *
193    * @code
194    *   bool MyFunction();
195    * @endcode
196    * This callback will be called repeatedly as long as it returns true. A return of 0 deletes this callback.
197    *
198    * @param[in] callback The function to call.
199    * @param[in] hasReturnValue Sould be set to true if the callback function has a return value.
200    * @return true if added successfully, false otherwise
201    *
202    * @note Ownership of the callback is passed onto this class.
203    */
204   bool AddIdle( CallbackBase* callback, bool hasReturnValue );
205
206   /**
207    * @brief Removes a previously added @p callback.
208    * @note Function must be called from the main event thread only.
209    *
210    * Does nothing if the @p callback doesn't exist.
211    *
212    * @param[in] callback The callback to be removed.
213    */
214   void RemoveIdle( CallbackBase* callback );
215
216   /**
217    * @brief Replaces the rendering surface
218    *
219    * @param[in] nativeWindow native window handle
220    * @param[in] surface to use
221    */
222   void ReplaceSurface( Any nativeWindow, Dali::RenderSurface& surface );
223
224   /**
225    * @brief Get the render surface the adaptor is using to render to.
226    *
227    * @return reference to current render surface
228    */
229   RenderSurface& GetSurface();
230
231   /**
232    * @brief Gets native window handle
233    *
234    * @return Native window handle
235    */
236   Any GetNativeWindowHandle();
237
238   /**
239    * @brief Release any locks the surface may hold.
240    *
241    * For example, after compositing an offscreen surface, use this method to allow
242    * rendering to continue.
243    */
244   void ReleaseSurfaceLock();
245
246   /**
247    * @brief Set the number of frames per render.
248    *
249    * This enables an application to deliberately render with a reduced FPS.
250    * @param[in] numberOfVSyncsPerRender The number of vsyncs between successive renders.
251    * Suggest this is a power of two:
252    * 1 - render each vsync frame
253    * 2 - render every other vsync frame
254    * 4 - render every fourth vsync frame
255    * 8 - render every eighth vsync frame
256    */
257   void SetRenderRefreshRate( unsigned int numberOfVSyncsPerRender );
258
259   /**
260    * @brief Set whether the frame count per render is managed using the hardware VSync or
261    * manually timed.
262    *
263    * @param[in] useHardware True if the hardware VSync should be used
264    */
265   void SetUseHardwareVSync(bool useHardware);
266
267   /**
268    * @brief Returns a reference to the instance of the adaptor used by the current thread.
269    *
270    * @return A reference to the adaptor.
271    * @pre The adaptor has been initialised.
272    * @note This is only valid in the main thread.
273    */
274   static Adaptor& Get();
275
276   /**
277    * @brief Checks whether the adaptor is available.
278    *
279    * @return true, if it is available, false otherwise.
280    */
281   static bool IsAvailable();
282
283   /**
284    * @brief Call this method to notify Dali when scene is created and initialized.
285    *
286    * Notify Adaptor that the scene has been created.
287    */
288   void NotifySceneCreated();
289
290   /**
291    * @brief Call this method to notify Dali when the system language changes.
292    *
293    * Use this only when NOT using Dali::Application, As Application created using
294    * Dali::Application will automatically receive notification of language change.
295    * When Dali::Application is not used, the application developer should
296    * use app-core to receive language change notifications and should update Dali
297    * by calling this method.
298    */
299   void NotifyLanguageChanged();
300
301   /**
302    * @brief Sets minimum distance in pixels that the fingers must move towards/away from each other in order to
303    * trigger a pinch gesture
304    *
305    * @param[in] distance The minimum pinch distance in pixels
306    */
307   void SetMinimumPinchDistance(float distance);
308
309   /**
310    * @brief Feed a touch point to the adaptor.
311    *
312    * @param[in] point touch point
313    * @param[in] timeStamp time value of event
314    */
315   void FeedTouchPoint( TouchPoint& point, int timeStamp );
316
317   /**
318    * @brief Feed a wheel event to the adaptor.
319    *
320    * @param[in]  wheelEvent wheel event
321    */
322   void FeedWheelEvent( WheelEvent& wheelEvent );
323
324   /**
325    * @brief Feed a key event to the adaptor.
326    *
327    * @param[in] keyEvent The key event holding the key information.
328    */
329   void FeedKeyEvent( KeyEvent& keyEvent );
330
331   /**
332    * @copydoc Dali::Core::SceneCreated();
333    */
334   void SceneCreated();
335
336   /**
337    * @copydoc Dali::Application::SetViewMode();
338    */
339   void SetViewMode( ViewMode viewMode );
340
341   /**
342    * @copydoc Dali::Application::SetStereoBase();
343    */
344   void SetStereoBase( float stereoBase );
345
346   /**
347    * @brief Renders once more even if we're paused
348    * @note Will not work if the window is hidden.
349    */
350   void RenderOnce();
351
352   /**
353    * @brief The log factory allows installation of a logger function in worker threads.
354    * @return An interface to a logging factory
355    */
356   const LogFactoryInterface& GetLogFactory();
357
358 public:  // Signals
359
360   /**
361    * @brief The user should connect to this signal if they need to perform any
362    * special activities when the surface Dali is being rendered on is resized.
363    *
364    * @return The signal to connect to
365    */
366   AdaptorSignalType& ResizedSignal();
367
368   /**
369    * @brief This signal is emitted when the language is changed on the device.
370    *
371    * @return The signal to connect to
372    */
373   AdaptorSignalType& LanguageChangedSignal();
374
375 private:
376
377   // Undefined
378   Adaptor(const Adaptor&);
379   Adaptor& operator=(Adaptor&);
380
381 private:
382
383   /**
384    * @brief Create an uninitialized Adaptor.
385    */
386   Adaptor();
387
388   Internal::Adaptor::Adaptor* mImpl; ///< Implementation object
389   friend class Internal::Adaptor::Adaptor;
390 };
391
392 } // namespace Dali
393
394 #endif // __DALI_INTEGRATION_ADAPTOR_H__