a1ba715aca0979e677ef6e856ae5e2f22f6f3c6e
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / common / window-render-surface.h
1 #ifndef DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H
2 #define DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_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 // INTERNAL INCLUDES
22 #include <dali/integration-api/render-surface.h>
23 #include <dali/integration-api/egl-interface.h>
24 #include <dali/internal/graphics/common/graphics-interface.h>
25
26 // EXTERNAL INCLUDES
27 #include <dali/public-api/signals/connection-tracker.h>
28 #include <dali/public-api/signals/dali-signal.h>
29
30
31 namespace Dali
32 {
33
34 class TriggerEventInterface;
35
36 namespace Internal
37 {
38 namespace Adaptor
39 {
40
41 class WindowBase;
42
43 /**
44  * Window interface of render surface.
45  */
46 class WindowRenderSurface : public Dali::RenderSurface, public ConnectionTracker
47 {
48 public:
49
50   typedef Signal< void ( ) > OutputSignalType;
51
52   /**
53     * Uses an window surface to render to.
54     * @param [in] positionSize the position and size of the surface
55     * @param [in] surface can be a window or pixmap.
56     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
57     */
58   WindowRenderSurface( Dali::PositionSize positionSize, Any surface, bool isTransparent = false );
59
60   /**
61    * @brief Destructor
62    */
63   virtual ~WindowRenderSurface();
64
65 public: // API
66
67   /**
68    * @brief Get the native window handle
69    * @return The native window handle
70    */
71   Any GetNativeWindow();
72
73   /**
74    * @brief Get the native window id
75    * @return The native window id
76    */
77   int GetNativeWindowId();
78
79   /**
80    * @brief Map window
81    */
82   void Map();
83
84   /**
85    * @brief Sets the render notification trigger to call when render thread is completed a frame
86    * @param renderNotification to use
87    */
88   void SetRenderNotification( TriggerEventInterface* renderNotification );
89
90   /**
91    * @brief Sets whether the surface is transparent or not.
92    * @param[in] transparent Whether the surface is transparent
93    */
94   void SetTransparency( bool transparent );
95
96   /**
97    * Request surface rotation
98    * @param[in] angle A new angle of the surface
99    * @param[in] width A new width of the surface
100    * @param[in] height A new height of the surface
101    */
102   void RequestRotation( int angle, int width, int height );
103
104   /**
105    * @brief Gets the window base object
106    * @return The window base object
107    */
108   WindowBase* GetWindowBase();
109
110   /**
111    * @brief This signal is emitted when the output is transformed.
112    */
113   OutputSignalType& OutputTransformedSignal();
114
115 public: // from Dali::RenderSurface
116
117   /**
118    * @copydoc Dali::RenderSurface::GetPositionSize()
119    */
120   virtual PositionSize GetPositionSize() const override;
121
122   /**
123    */
124   virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) override;
125
126   /**
127    * @copydoc Dali::RenderSurface::InitializeGraphics()
128    */
129   virtual void InitializeGraphics( GraphicsInterface& graphics, Dali::DisplayConnection& displayConnection ) override;
130
131   /**
132    * @copydoc Dali::RenderSurface::CreateSurface()
133    */
134   virtual void CreateSurface() override;
135
136   /**
137    * @copydoc Dali::RenderSurface::DestroySurface()
138    */
139   virtual void DestroySurface() override;
140
141   /**
142    * @copydoc Dali::RenderSurface::ReplaceGraphicsSurface()
143    */
144   virtual bool ReplaceGraphicsSurface() override;
145
146   /**
147    * @copydoc Dali::RenderSurface::MoveResize()
148    */
149   virtual void MoveResize( Dali::PositionSize positionSize) override;
150
151   /**
152    * @copydoc Dali::RenderSurface::StartRender()
153    */
154   virtual void StartRender() override;
155
156   /**
157    * @copydoc Dali::RenderSurface::PreRender()
158    */
159   virtual bool PreRender( bool resizingSurface ) override;
160
161   /**
162    * @copydoc Dali::RenderSurface::PostRender()
163    */
164   virtual void PostRender( bool renderToFbo, bool replacingSurface, bool resizingSurface );
165
166   /**
167    * @copydoc Dali::RenderSurface::StopRender()
168    */
169   virtual void StopRender() override;
170
171   /**
172    * @copydoc Dali::RenderSurface::SetThreadSynchronization
173    */
174   virtual void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization ) override;
175
176   /**
177    * @copydoc Dali::RenderSurface::ReleaseLock()
178    */
179   virtual void ReleaseLock() override;
180
181   /**
182    * @copydoc Dali::RenderSurface::GetSurfaceType()
183    */
184   virtual RenderSurface::Type GetSurfaceType() override;
185
186 private:
187
188   /**
189    * @brief Second stage construction
190    */
191   void Initialize( Any surface );
192
193   /**
194    * Notify output is transformed.
195    */
196   void OutputTransformed();
197
198   /**
199    * @brief Used as the callback for the rotation-trigger.
200    */
201   void ProcessRotationRequest();
202
203 protected:
204
205   // Undefined
206   WindowRenderSurface(const WindowRenderSurface&) = delete;
207
208   // Undefined
209   WindowRenderSurface& operator=(const WindowRenderSurface& rhs) = delete;
210
211 private: // Data
212
213   PositionSize                    mPositionSize;       ///< Position
214   std::unique_ptr< WindowBase >   mWindowBase;
215   ThreadSynchronizationInterface* mThreadSynchronization;
216   TriggerEventInterface*          mRenderNotification; ///< Render notification trigger
217   TriggerEventInterface*          mRotationTrigger;
218   GraphicsInterface*              mGraphics;           ///< Graphics interface
219   ColorDepth                      mColorDepth;         ///< Color depth of surface (32 bit or 24 bit)
220   OutputSignalType                mOutputTransformedSignal;
221   int                             mRotationAngle;
222   int                             mScreenRotationAngle;
223   bool                            mOwnSurface;         ///< Whether we own the surface (responsible for deleting it)
224   bool                            mRotationSupported;
225   bool                            mRotationFinished;
226   bool                            mScreenRotationFinished;
227   bool                            mResizeFinished;
228
229 }; // class WindowRenderSurface
230
231 } // namespace Adaptor
232
233 } // namespace internal
234
235 } // namespace Dali
236
237 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H