77979c034078f907cf4f088e5aa18a3cff155bbf
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / common / window-impl.h
1 #ifndef DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_IMPL_H
2 #define DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_IMPL_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/object/ref-object.h>
23 #include <dali/public-api/object/base-object.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/internal/adaptor/common/lifecycle-observer.h>
27 #include <dali/internal/adaptor/common/adaptor-impl.h>
28 #include <dali/internal/window-system/common/indicator-interface.h>
29 #include <dali/public-api/adaptor-framework/window.h>
30 #include <dali/public-api/adaptor-framework/key-grab.h>
31 #include <dali/devel-api/adaptor-framework/drag-and-drop-detector.h>
32
33 namespace Dali
34 {
35 class Adaptor;
36
37 namespace Internal
38 {
39 namespace Adaptor
40 {
41 class Orientation;
42 class WindowRenderSurface;
43 class WindowBase;
44
45 class Window;
46 typedef IntrusivePtr<Window> WindowPtr;
47 typedef IntrusivePtr<Orientation> OrientationPtr;
48
49 /**
50  * Window provides a surface to render onto with orientation & indicator properties.
51  */
52 class Window : public Dali::BaseObject, public IndicatorInterface::Observer, public LifeCycleObserver, public ConnectionTracker
53 {
54 public:
55   typedef Dali::Window::IndicatorSignalType IndicatorSignalType;
56   typedef Dali::Window::FocusSignalType FocusSignalType;
57   typedef Dali::Window::ResizedSignalType ResizedSignalType;
58   typedef Signal< void () > SignalType;
59
60   /**
61    * Create a new Window. This should only be called once by the Application class
62    * @param[in] positionSize The position and size of the window
63    * @param[in] name The window title
64    * @param[in] className The window class name
65    * @param[in] isTransparent Whether window is transparent
66    * @return A newly allocated Window
67    */
68   static Window* New(const PositionSize& positionSize, const std::string& name, const std::string& className, bool isTransparent = false);
69
70   /**
71    * Pass the adaptor back to the overlay. This allows the window to access Core's overlay.
72    * @param[in] adaptor An initialized adaptor
73    */
74   void SetAdaptor(Dali::Adaptor& adaptor);
75
76   /**
77    * Get the window surface
78    * @return The render surface
79    */
80   WindowRenderSurface* GetSurface();
81
82   /**
83    * @copydoc Dali::Window::ShowIndicator()
84    */
85   void ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode );
86
87   /**
88    * @copydoc Dali::Window::SetIndicatorBgOpacity()
89    */
90   void SetIndicatorBgOpacity( Dali::Window::IndicatorBgOpacity opacity );
91
92   /**
93    * Set the indicator visible mode
94    */
95   void SetIndicatorVisibleMode( Dali::Window::IndicatorVisibleMode mode );
96
97   /**
98    * @copydoc Dali::Window::RotateIndicator()
99    */
100   void RotateIndicator( Dali::Window::WindowOrientation orientation );
101
102   /**
103    * @copydoc Dali::Window::SetClass()
104    */
105   void SetClass( std::string name, std::string className );
106
107   /**
108    * @copydoc Dali::Window::Raise()
109    */
110   void Raise();
111
112   /**
113    * @copydoc Dali::Window::Lower()
114    */
115   void Lower();
116
117   /**
118    * @copydoc Dali::Window::Activate()
119    */
120   void Activate();
121
122   /**
123    * @copydoc Dali::Window::AddAvailableOrientation()
124    */
125   void AddAvailableOrientation(Dali::Window::WindowOrientation orientation);
126
127   /**
128    * @copydoc Dali::Window::RemoveAvailableOrientation()
129    */
130   void RemoveAvailableOrientation(Dali::Window::WindowOrientation orientation);
131
132   /**
133    * @copydoc Dali::Window::SetAvailableOrientations()
134    */
135   void SetAvailableOrientations(const std::vector<Dali::Window::WindowOrientation>& orientations);
136
137   /**
138    * @copydoc Dali::Window::GetAvailableOrientations()
139    */
140   const std::vector<Dali::Window::WindowOrientation>& GetAvailableOrientations();
141
142   /**
143    * @copydoc Dali::Window::SetPreferredOrientation()
144    */
145   void SetPreferredOrientation(Dali::Window::WindowOrientation orientation);
146
147   /**
148    * @copydoc Dali::Window::GetPreferredOrientation()
149    */
150   Dali::Window::WindowOrientation GetPreferredOrientation();
151
152   /**
153    * @copydoc Dali::Window::GetDragAndDropDetector() const
154    */
155   Dali::DragAndDropDetector GetDragAndDropDetector() const;
156
157   /**
158    * @copydoc Dali::Window::GetNativeHandle() const
159    */
160   Dali::Any GetNativeHandle() const;
161
162   /**
163    * @copydoc Dali::Window::SetAcceptFocus()
164    */
165   void SetAcceptFocus( bool accept );
166
167   /**
168    * @copydoc Dali::Window::IsFocusAcceptable()
169    */
170   bool IsFocusAcceptable() const;
171
172   /**
173    * @copydoc Dali::Window::Show()
174    */
175   void Show();
176
177   /**
178    * @copydoc Dali::Window::Hide()
179    */
180   void Hide();
181
182   /**
183    * @copydoc Dali::Window::IsVisible() const
184    */
185   bool IsVisible() const;
186
187   /**
188    * @copydoc Dali::Window::GetSupportedAuxiliaryHintCount()
189    */
190   unsigned int GetSupportedAuxiliaryHintCount() const;
191
192   /**
193    * @copydoc Dali::Window::GetSupportedAuxiliaryHint()
194    */
195   std::string GetSupportedAuxiliaryHint( unsigned int index ) const;
196
197   /**
198    * @copydoc Dali::Window::AddAuxiliaryHint()
199    */
200   unsigned int AddAuxiliaryHint( const std::string& hint, const std::string& value );
201
202   /**
203    * @copydoc Dali::Window::RemoveAuxiliaryHint()
204    */
205   bool RemoveAuxiliaryHint( unsigned int id );
206
207   /**
208    * @copydoc Dali::Window::SetAuxiliaryHintValue()
209    */
210   bool SetAuxiliaryHintValue( unsigned int id, const std::string& value );
211
212   /**
213    * @copydoc Dali::Window::GetAuxiliaryHintValue()
214    */
215   std::string GetAuxiliaryHintValue( unsigned int id ) const;
216
217   /**
218    * @copydoc Dali::Window::GetAuxiliaryHintId()
219    */
220   unsigned int GetAuxiliaryHintId( const std::string& hint ) const;
221
222   /**
223    * @copydoc Dali::Window::SetInputRegion()
224    */
225   void SetInputRegion( const Rect< int >& inputRegion );
226
227   /**
228    * @copydoc Dali::Window::SetType()
229    */
230   void SetType( Dali::Window::Type type );
231
232   /**
233    * @copydoc Dali::Window::GetType() const
234    */
235   Dali::Window::Type GetType() const;
236
237   /**
238    * @copydoc Dali::Window::SetNotificationLevel()
239    */
240   bool SetNotificationLevel( Dali::Window::NotificationLevel::Type level );
241
242   /**
243    * @copydoc Dali::Window::GetNotificationLevel()
244    */
245   Dali::Window::NotificationLevel::Type GetNotificationLevel() const;
246
247   /**
248    * @copydoc Dali::Window::SetOpaqueState()
249    */
250   void SetOpaqueState( bool opaque );
251
252   /**
253    * @copydoc Dali::Window::IsOpaqueState()
254    */
255   bool IsOpaqueState() const;
256
257   /**
258    * @copydoc Dali::Window::SetScreenOffMode()
259    */
260   bool SetScreenOffMode(Dali::Window::ScreenOffMode::Type screenOffMode);
261
262   /**
263    * @copydoc Dali::Window::GetScreenOffMode()
264    */
265   Dali::Window::ScreenOffMode::Type GetScreenOffMode() const;
266
267   /**
268    * @copydoc Dali::Window::SetBrightness()
269    */
270   bool SetBrightness( int brightness );
271
272   /**
273    * @copydoc Dali::Window::GetBrightness()
274    */
275   int GetBrightness() const;
276
277   /**
278    * @copydoc Dali::Window::SetSize()
279    */
280   void SetSize( Dali::Window::WindowSize size );
281
282   /**
283    * @copydoc Dali::Window::GetSize()
284    */
285   Dali::Window::WindowSize GetSize() const;
286
287   /**
288    * @copydoc Dali::Window::SetPosition()
289    */
290   void SetPosition( Dali::Window::WindowPosition position );
291
292   /**
293    * @copydoc Dali::Window::GetPosition()
294    */
295   Dali::Window::WindowPosition GetPosition() const;
296
297   /**
298    * @copydoc Dali::DevelWindow::SetPositionSize()
299    */
300   void SetPositionSize( PositionSize positionSize );
301
302   /**
303    * @copydoc Dali::Window::SetTransparency()
304    */
305   void SetTransparency( bool transparent );
306
307   /**
308    * @copydoc Dali::KeyGrab::GrabKey()
309    */
310   bool GrabKey( Dali::KEY key, KeyGrab::KeyGrabMode grabMode );
311
312   /**
313    * @copydoc Dali::KeyGrab::UngrabKey()
314    */
315   bool UngrabKey( Dali::KEY key );
316
317   /**
318    * @copydoc Dali::KeyGrab::GrabKeyList()
319    */
320   bool GrabKeyList( const Dali::Vector< Dali::KEY >& key, const Dali::Vector< KeyGrab::KeyGrabMode >& grabMode, Dali::Vector< bool >& result );
321
322   /**
323    * @copydoc Dali::KeyGrab::UngrabKeyList()
324    */
325   bool UngrabKeyList( const Dali::Vector< Dali::KEY >& key, Dali::Vector< bool >& result );
326
327   /**
328    * Called from Orientation after the Change signal has been sent
329    */
330   void RotationDone( int orientation, int width, int height );
331
332 private:
333
334   /**
335    * Private constructor.
336    * @sa Window::New()
337    */
338   Window();
339
340   /**
341    * Destructor
342    */
343   virtual ~Window();
344
345   /**
346    * Second stage initialization
347    */
348   void Initialize(const PositionSize& positionSize, const std::string& name, const std::string& className);
349
350   /**
351    * Shows / hides the indicator bar.
352    * Handles close/open if rotation changes whilst hidden
353    */
354   void DoShowIndicator( Dali::Window::WindowOrientation lastOrientation );
355
356   /**
357    * Close current indicator and open a connection onto the new indicator service.
358    * Effect may not be synchronous if waiting for an indicator update on existing connection.
359    */
360   void DoRotateIndicator( Dali::Window::WindowOrientation orientation );
361
362   /**
363    * Change the indicator actor's rotation to match the current orientation
364    */
365   void SetIndicatorActorRotation();
366
367   /**
368    * Set the indicator properties on the window
369    */
370   void SetIndicatorProperties( bool isShow, Dali::Window::WindowOrientation lastOrientation );
371
372   /**
373    * Called when the window becomes iconified or deiconified.
374    */
375   void OnIconifyChanged( bool iconified );
376
377   /**
378    * Called when the window focus is changed.
379    */
380   void OnFocusChanged( bool focusIn );
381
382   /**
383    * Called when the output is transformed.
384    */
385   void OnOutputTransformed();
386
387   /**
388    * Called when the window receives a delete request.
389    */
390   void OnDeleteRequest();
391
392   /**
393    * Called when the Ecore indicator event is received.
394    */
395   void OnIndicatorFlicked();
396
397 private: // IndicatorInterface::Observer interface
398
399   /**
400    * @copydoc Dali::Internal::Adaptor::IndicatorInterface::Observer::IndicatorTypeChanged()
401    */
402   virtual void IndicatorTypeChanged( IndicatorInterface::Type type );
403
404   /**
405    * @copydoc Dali::Internal::Adaptor::IndicatorInterface::Observer::IndicatorClosed()
406    */
407   virtual void IndicatorClosed( IndicatorInterface* indicator);
408
409   /**
410    * @copydoc Dali::Internal::Adaptor::IndicatorInterface::Observer::IndicatorVisibilityChanged()
411    */
412   virtual void IndicatorVisibilityChanged( bool isVisible );
413
414 private: // Adaptor::Observer interface
415
416   /**
417    * @copydoc Dali::Internal::Adaptor::Adaptor::Observer::OnStart()
418    */
419   virtual void OnStart();
420
421   /**
422    * @copydoc Dali::Internal::Adaptor::Adaptor::Observer::OnPause()
423    */
424   virtual void OnPause();
425
426   /**
427    * @copydoc Dali::Internal::Adaptor::Adaptor::Observer::OnResume()
428    */
429   virtual void OnResume();
430
431   /**
432    * @copydoc Dali::Internal::Adaptor::Adaptor::Observer::OnStop()
433    */
434   virtual void OnStop();
435
436   /**
437    * @copydoc Dali::Internal::Adaptor::Adaptor::Observer::OnDestroy()
438    */
439   virtual void OnDestroy();
440
441 public: // Signals
442
443   /**
444    * The user should connect to this signal to get a timing when indicator was shown / hidden.
445    */
446   IndicatorSignalType& IndicatorVisibilityChangedSignal() { return mIndicatorVisibilityChangedSignal; }
447
448   /**
449    * @copydoc Dali::Window::FocusChangedSignal()
450    */
451   FocusSignalType& FocusChangedSignal() { return mFocusChangedSignal; }
452
453   /**
454    * @copydoc Dali::Window::ResizedSignal()
455    */
456   ResizedSignalType& ResizedSignal() { return mResizedSignal; }
457
458   /**
459    * This signal is emitted when the window is requesting to be deleted
460    */
461   SignalType& DeleteRequestSignal() { return mDeleteRequestSignal; }
462
463 private:
464
465   WindowRenderSurface*                  mSurface;
466   WindowBase*                           mWindowBase;
467   Dali::Window::IndicatorVisibleMode    mIndicatorVisible; ///< public state
468   bool                                  mIndicatorIsShown:1; ///< private state
469   bool                                  mShowRotatedIndicatorOnClose:1;
470   bool                                  mStarted:1;
471   bool                                  mIsTransparent:1;
472   bool                                  mIsFocusAcceptable:1;
473   bool                                  mVisible:1;
474   bool                                  mIconified:1;
475   bool                                  mOpaqueState:1;
476   bool                                  mResizeEnabled:1;
477   std::unique_ptr< IndicatorInterface > mIndicator;
478   Dali::Window::WindowOrientation       mIndicatorOrientation;
479   Dali::Window::WindowOrientation       mNextIndicatorOrientation;
480   Dali::Window::IndicatorBgOpacity      mIndicatorOpacityMode;
481   Adaptor*                              mAdaptor;
482   Dali::DragAndDropDetector             mDragAndDropDetector;
483   Dali::Window::Type                    mType;
484
485   OrientationPtr                               mOrientation;
486   std::vector<Dali::Window::WindowOrientation> mAvailableOrientations;
487   Dali::Window::WindowOrientation              mPreferredOrientation;
488
489   // Signals
490   IndicatorSignalType mIndicatorVisibilityChangedSignal;
491   FocusSignalType     mFocusChangedSignal;
492   ResizedSignalType   mResizedSignal;
493   SignalType          mDeleteRequestSignal;
494 };
495
496 } // namespace Adaptor
497 } // namepsace Internal
498
499 // Helpers for public-api forwarding methods
500
501 inline Internal::Adaptor::Window& GetImplementation(Dali::Window& window)
502 {
503   DALI_ASSERT_ALWAYS( window && "Window handle is empty" );
504   BaseObject& object = window.GetBaseObject();
505   return static_cast<Internal::Adaptor::Window&>(object);
506 }
507
508 inline const Internal::Adaptor::Window& GetImplementation(const Dali::Window& window)
509 {
510   DALI_ASSERT_ALWAYS( window && "Window handle is empty" );
511   const BaseObject& object = window.GetBaseObject();
512   return static_cast<const Internal::Adaptor::Window&>(object);
513 }
514
515 } // namespace Dali
516
517 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_IMPL_H