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