Remove non-touch related deprecated APIs
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / application-impl.h
1 #ifndef DALI_INTERNAL_APPLICATION_H
2 #define DALI_INTERNAL_APPLICATION_H
3
4 /*
5  * Copyright (c) 2020 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/math/rect.h>
23 #include <dali/public-api/object/base-object.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/public-api/adaptor-framework/application.h>
27 #include <dali/devel-api/common/singleton-service.h>
28
29 #include <dali/internal/adaptor/common/framework.h>
30 #include <dali/internal/system/common/environment-options.h>
31 #include <dali/internal/adaptor/common/adaptor-builder-impl.h>
32
33 namespace Dali
34 {
35 class Adaptor;
36 class Window;
37
38 namespace Internal
39 {
40
41 namespace Adaptor
42 {
43
44 namespace Launchpad
45 {
46
47 /**
48  * @brief Launchpad is used to improve application launch performance.
49  * When an application is pre-initialized, so files are preloaded, some functions are initialized and a window is made in advance.
50  */
51 enum State
52 {
53   NONE,              ///< The default state
54   PRE_INITIALIZED    ///< Application is pre-initialized.
55 };
56
57 } // namespace Launchpad
58
59 class CommandLineOptions;
60 class EventLoop;
61
62 typedef Dali::Rect<int> PositionSize;
63
64 class Application;
65 typedef IntrusivePtr<Application> ApplicationPtr;
66
67 /**
68  * Implementation of the Application class.
69  */
70 class Application : public BaseObject, public Framework::Observer
71 {
72 public:
73
74   typedef Dali::Application::LowBatterySignalType LowBatterySignalType;
75   typedef Dali::Application::LowMemorySignalType LowMemorySignalType;
76   typedef Dali::Application::AppSignalType AppSignalType;
77   typedef Dali::Application::AppControlSignalType AppControlSignalType;
78   typedef Dali::Application::WINDOW_MODE WINDOW_MODE;
79
80   /**
81    * Create a new application
82    * @param[in]  argc         A pointer to the number of arguments
83    * @param[in]  argv         A pointer to the argument list
84    * @param[in]  stylesheet   The path to user defined theme file
85    * @param[in]  windowMode   A member of Dali::Application::WINDOW_MODE
86    * @param[in]  positionSize A position and a size of the window
87    * @param[in]  applicationType  A member of Dali::Framework::Type
88    */
89   static ApplicationPtr New( int* argc, char **argv[], const std::string& stylesheet,
90     WINDOW_MODE windowMode, const PositionSize& positionSize, Framework::Type applicationType );
91
92   /**
93    * @copydoc Dali::DevelApplication::PreInitialize()
94    */
95   static void PreInitialize( int* argc, char** argv[] );
96
97 public:
98
99   /**
100    * @copydoc Dali::Application::MainLoop()
101    */
102   void MainLoop(Dali::Configuration::ContextLoss configuration);
103
104   /**
105    * @copydoc Dali::Application::Lower()
106    */
107   void Lower();
108
109   /**
110    * @copydoc Dali::Application::Quit()
111    */
112   void Quit();
113
114   /**
115    * @copydoc Dali::Application::AddIdle()
116    */
117   bool AddIdle( CallbackBase* callback, bool hasReturnValue );
118
119   /**
120    * @copydoc Dali::Application::GetAdaptor();
121    */
122   Dali::Adaptor& GetAdaptor();
123
124   /**
125    * @copydoc Dali::Application::GetWindow();
126    */
127   Dali::Window GetWindow();
128
129   /**
130    * @copydoc Dali::Application::GetRegion();
131    */
132   std::string GetRegion() const;
133
134   /**
135    * @copydoc Dali::Application::GetLanguage();
136    */
137   std::string GetLanguage() const;
138
139   /**
140    * @copydoc Dali::Application::GetResourcePath();
141    */
142   static std::string GetResourcePath();
143
144   /**
145    * @copydoc Dali::DevelApplication::GetDataPath()
146    */
147   static std::string GetDataPath();
148
149   /**
150    * Retrieves the pre-initialized application.
151    *
152    * @return A pointer to the pre-initialized application
153    */
154   static ApplicationPtr GetPreInitializedApplication();
155
156 public: // From Framework::Observer
157
158   /**
159    * Called when the framework is initialised.
160    */
161   virtual void OnInit();
162
163   /**
164    * Called when the framework is terminated.
165    */
166   virtual void OnTerminate();
167
168   /**
169    * Called when the framework is paused.
170    */
171   virtual void OnPause();
172
173   /**
174    * Called when the framework resumes from a paused state.
175    */
176   virtual void OnResume();
177
178   /**
179   * Called when the framework received AppControlSignal.
180   * @param[in] The bundle data of AppControl event.
181   */
182   virtual void OnAppControl(void *data);
183
184   /**
185    * Called when the framework informs the application that it should reset itself.
186    */
187   virtual void OnReset();
188
189   /**
190    * Called when the framework informs the application that the language of the device has changed.
191    */
192   virtual void OnLanguageChanged();
193
194   /**
195   * Called when the framework informs the application that the region of the device has changed.
196   */
197   virtual void OnRegionChanged();
198
199   /**
200   * Called when the framework informs the application that the battery level of the device is low.
201   */
202   virtual void OnBatteryLow( Dali::DeviceStatus::Battery::Status status );
203
204   /**
205   * Called when the framework informs the application that the memory level of the device is low.
206   */
207   virtual void OnMemoryLow( Dali::DeviceStatus::Memory::Status status );
208
209   /**
210    * Called when the framework informs the application that the platform surface is created.
211    */
212   virtual void OnSurfaceCreated( Any newSurface );
213
214   /**
215    * Called when the framework informs the application that the platform surface is destroyed.
216    */
217   virtual void OnSurfaceDestroyed( Any newSurface );
218
219 public:
220
221   /**
222    * Sets a user defined theme file.
223    * This should be called before initialization.
224    * @param[in] stylesheet The path to user defined theme file
225    */
226   void SetStyleSheet( const std::string& stylesheet );
227
228   /**
229    * Sets a command line options.
230    * This is used in case of the preinitialized application.
231    * @param[in] argc A pointer to the number of arguments
232    * @param[in] argv A pointer to the argument list
233    */
234   void SetCommandLineOptions( int* argc, char **argv[] );
235
236 public:  // Signals
237
238   /**
239    * @copydoc Dali::Application::InitSignal()
240    */
241   Dali::Application::AppSignalType& InitSignal() { return mInitSignal; }
242
243   /**
244    * @copydoc Dali::Application::TerminateSignal()
245    */
246   Dali::Application::AppSignalType& TerminateSignal() { return mTerminateSignal; }
247
248   /**
249    * @copydoc Dali::Application::PauseSignal()
250    */
251   Dali::Application::AppSignalType& PauseSignal() { return mPauseSignal; }
252
253   /**
254    * @copydoc Dali::Application::ResumeSignal()
255    */
256   Dali::Application::AppSignalType& ResumeSignal() { return mResumeSignal; }
257
258   /**
259    * @copydoc Dali::Application::ResetSignal()
260    */
261   Dali::Application::AppSignalType& ResetSignal() { return mResetSignal; }
262
263   /**
264   * @copydoc Dali::Application::AppControlSignal()
265   */
266   Dali::Application::AppControlSignalType& AppControlSignal() { return mAppControlSignal; }
267
268   /**
269    * @copydoc Dali::Application::LanguageChangedSignal()
270    */
271   Dali::Application::AppSignalType& LanguageChangedSignal() { return mLanguageChangedSignal; }
272
273   /**
274   * @copydoc Dali::Application::RegionChangedSignal()
275   */
276   Dali::Application::AppSignalType& RegionChangedSignal() { return mRegionChangedSignal; }
277
278   /**
279   * @copydoc Dali::Application::LowBatterySignal()
280   */
281   Dali::Application::LowBatterySignalType& LowBatterySignal() { return mLowBatterySignal; }
282
283   /**
284   * @copydoc Dali::Application:::LowMemorySignal()
285   */
286   Dali::Application::LowMemorySignalType& LowMemorySignal() { return mLowMemorySignal; }
287
288 protected:
289
290   /**
291    * Private Constructor
292    * @param[in]  argc         A pointer to the number of arguments
293    * @param[in]  argv         A pointer to the argument list
294    * @param[in]  stylesheet   The path to user defined theme file
295    * @param[in]  windowMode   A member of Dali::Application::WINDOW_MODE
296    * @param[in]  positionSize A position and a size of the window
297    * @param[in]  applicationType  A member of Dali::Framework::Type
298    */
299   Application( int* argc, char **argv[], const std::string& stylesheet,
300       WINDOW_MODE windowMode, const PositionSize& positionSize, Framework::Type applicationType );
301
302   /**
303    * Destructor
304    */
305   virtual ~Application();
306
307   // Undefined
308   Application(const Application&);
309   Application& operator=(Application&);
310
311   /**
312    * Creates the window
313    */
314   void CreateWindow();
315
316   /**
317    * Creates the adaptor
318    */
319   void CreateAdaptor();
320
321   /**
322    * Creates the adaptor builder
323    */
324   void CreateAdaptorBuilder();
325
326   /**
327    * Quits from the main loop
328    */
329   void QuitFromMainLoop();
330
331 private:
332
333   AppSignalType                         mInitSignal;
334   AppSignalType                         mTerminateSignal;
335   AppSignalType                         mPauseSignal;
336   AppSignalType                         mResumeSignal;
337   AppSignalType                         mResetSignal;
338   AppControlSignalType                  mAppControlSignal;
339   AppSignalType                         mLanguageChangedSignal;
340   AppSignalType                         mRegionChangedSignal;
341   LowBatterySignalType                  mLowBatterySignal;
342   LowMemorySignalType                   mLowMemorySignal;
343
344   EventLoop*                            mEventLoop;
345   Framework*                            mFramework;
346
347   Dali::Configuration::ContextLoss      mContextLossConfiguration;
348   CommandLineOptions*                   mCommandLineOptions;
349
350   Dali::Internal::Adaptor::AdaptorBuilder* mAdaptorBuilder;   ///< The adaptor builder
351   Dali::Adaptor*                           mAdaptor;
352
353   // The Main Window is that window created by the Application during initial startup
354   // (previously this was the only window)
355   Dali::Window                             mMainWindow;       ///< Main Window instance
356   Dali::Application::WINDOW_MODE           mMainWindowMode;   ///< Window mode of the main window
357   std::string                              mMainWindowName;   ///< Name of the main window as obtained from environment options
358
359   std::string                              mStylesheet;
360   EnvironmentOptions                       mEnvironmentOptions;
361   PositionSize                             mWindowPositionSize;
362   Launchpad::State                         mLaunchpadState;
363   bool                                     mUseRemoteSurface;
364
365   SlotDelegate< Application >              mSlotDelegate;
366
367   static ApplicationPtr                    gPreInitializedApplication;
368 };
369
370 inline Application& GetImplementation(Dali::Application& application)
371 {
372   DALI_ASSERT_ALWAYS(application && "application handle is empty");
373
374   BaseObject& handle = application.GetBaseObject();
375
376   return static_cast<Internal::Adaptor::Application&>(handle);
377 }
378
379 inline const Application& GetImplementation(const Dali::Application& application)
380 {
381   DALI_ASSERT_ALWAYS(application && "application handle is empty");
382
383   const BaseObject& handle = application.GetBaseObject();
384
385   return static_cast<const Internal::Adaptor::Application&>(handle);
386 }
387
388
389 } // namespace Adaptor
390
391 } // namespace Internal
392
393 } // namespace Dali
394
395 #endif // DALI_INTERNAL_APPLICATION_H