Adaptor: Fix Klocwork issues
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / ecore-x-render-surface.h
1 #ifndef __DALI_INTERNAL_ECORE_X_RENDER_SURFACE_H__
2 #define __DALI_INTERNAL_ECORE_X_RENDER_SURFACE_H__
3
4 /*
5  * Copyright (c) 2014 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 <string>
23 #include <boost/thread.hpp>
24 #include <Ecore_X.h>
25 #include <dali/public-api/common/dali-common.h>
26
27 // INTERNAL INCLUDES
28 #include <render-surface-impl.h>
29 #include <ecore-x-types.h>
30 #include <gl/egl-implementation.h>
31
32 namespace Dali
33 {
34
35 namespace Internal
36 {
37
38 namespace Adaptor
39 {
40 class TriggerEvent;
41
42 namespace ECore
43 {
44
45 /**
46  * Ecore X11 implementation of render surface.
47  * @todo change namespace to ECore_X11 as the class
48  * is no longer pure X11.
49  */
50 class RenderSurface : public Internal::Adaptor::RenderSurface
51 {
52 public:
53   /**
54     * Uses an X11 surface to render to.
55     * @param [in] type the type of surface passed in
56     * @param [in] positionSize the position and size of the surface
57     * @param [in] surface can be a X-window or X-pixmap (type must be unsigned int).
58     * @param [in] display connection to X-server if the surface is a X window or pixmap (type must be void * to X display struct)
59     * @param [in] name optional name of surface passed in
60     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
61     */
62   RenderSurface( SurfaceType type,
63                  Dali::PositionSize positionSize,
64                  Any surface,
65                  Any display,
66                  const std::string& name,
67                  bool isTransparent = false);
68
69   /**
70    * Destructor.
71    * Will delete the display, if it has ownership.
72    * Will delete the window/pixmap if it has owner ship
73    */
74   virtual ~RenderSurface();
75
76 protected:
77   /**
78    * Second stage construction
79    * Creates the surface (window, pixmap or native buffer)
80    */
81   void Init( Any surface );
82
83 public: // API
84
85   /**
86    * @return the Ecore X window handle
87    */
88   Ecore_X_Window GetXWindow();
89
90   /**
91    * @return the Main X display
92    */
93   XDisplay* GetMainDisplay();
94
95   /**
96    * Sets the render notification trigger to call when render thread is completed a frame
97    * @param renderNotification to use
98    */
99   void SetRenderNotification( TriggerEvent* renderNotification );
100
101   /**
102    * Get the surface as an Ecore_X_drawable
103    */
104   virtual Ecore_X_Drawable GetDrawable();
105
106 public: // from Dali::RenderSurface
107
108   /**
109    * @copydoc Dali::RenderSurface::GetType()
110    */
111   virtual Dali::RenderSurface::SurfaceType GetType() = 0;
112
113   /**
114    * @copydoc Dali::RenderSurface::GetSurface()
115    */
116   virtual Any GetSurface() = 0;
117
118   /**
119    * @copydoc Dali::RenderSurface::GetDisplay()
120    */
121   virtual Any GetDisplay();
122
123   /**
124    * @copydoc Dali::RenderSurface::GetPositionSize()
125    */
126   virtual PositionSize GetPositionSize() const;
127
128 public:  // from Internal::Adaptor::RenderSurface
129
130   /**
131    * @copydoc Dali::Internal::Adaptor::RenderSurface::CreateEglSurface()
132    */
133   virtual void CreateEglSurface( EglInterface& egl ) = 0;
134
135   /**
136    * @copydoc Dali::Internal::Adaptor::RenderSurface::DestroyEglSurface()
137    */
138   virtual void DestroyEglSurface( EglInterface& egl ) = 0;
139
140   /**
141    * @copydoc Dali::Internal::Adaptor::RenderSurface::ReplaceEGLSurface()
142    */
143   virtual bool ReplaceEGLSurface( EglInterface& egl ) = 0;
144
145   /**
146    * @copydoc Dali::Internal::Adaptor::RenderSurface::MoveResize()
147    */
148   virtual void MoveResize( Dali::PositionSize positionSize);
149
150   /**
151    * @copydoc Dali::Internal::Adaptor::RenderSurface::GetDpi()
152    */
153   virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) const;
154
155   /**
156    * @copydoc Dali::Internal::Adaptor::RenderSurface::Map()
157    */
158   virtual void Map();
159
160   /**
161    * @copydoc Dali::Internal::Adaptor::RenderSurface::TransferDisplayOwner()
162    */
163   virtual void TransferDisplayOwner( Internal::Adaptor::RenderSurface& newSurface );
164
165   /**
166    * @copydoc Dali::Internal::Adaptor::RenderSurface::ConsumeEvents()
167    */
168   virtual void ConsumeEvents();
169
170   /**
171    * @copydoc Dali::Internal::Adaptor::RenderSurface::SetViewMode()
172    */
173   void SetViewMode( ViewMode );
174
175   /**
176    * @copydoc Dali::Internal::Adaptor::RenderSurface::PreRender()
177    */
178   virtual bool PreRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction ) = 0;
179
180   /**
181    * @copydoc Dali::Internal::Adaptor::RenderSurface::PostRender()
182    */
183   virtual void PostRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction, unsigned int timeDelta, bool replacingSurface ) = 0;
184
185 private:
186
187   /**
188    * Sets the display, if display parameter is empty it opens a new display
189    * @param display
190    */
191   void SetDisplay( Any display );
192
193   /**
194    * Get the surface id if the surface parameter is not empty
195    * @param surface Any containing a surface id, or can be empty
196    * @return surface id, or zero if surface is empty
197    */
198   unsigned int GetSurfaceId( Any surface ) const;
199
200 protected:
201
202   /**
203    * Create XRenderable
204    */
205   virtual void CreateXRenderable() = 0;
206
207   /**
208    * Use an existing render surface
209    * @param surfaceId the id of the surface
210    */
211   virtual void UseExistingRenderable( unsigned int surfaceId ) = 0;
212
213 protected: // Data
214
215   XDisplay*                   mMainDisplay;        ///< X-connection for rendering
216   SurfaceType                 mType;               ///< type of renderable
217   PositionSize                mPosition;           ///< Position
218   std::string                 mTitle;              ///< Title of window which shows from "xinfo -topvwins" command
219   ColorDepth                  mColorDepth;         ///< Color depth of surface (32 bit or 24 bit)
220   TriggerEvent*               mRenderNotification; ///< Render notification trigger
221
222   bool                        mOwnSurface;         ///< Whether we own the surface (responsible for deleting it)
223   bool                        mOwnDisplay;         ///< Whether we own the display (responsible for deleting it)
224 };
225
226 } // namespace ECore
227
228 } // namespace Adaptor
229
230 } // namespace internal
231
232 } // namespace Dali
233
234 #endif // __DALI_INTERNAL_ECORE_X_RENDER_SURFACE_H__