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