Merge "[3.0] Modify iconify part for wayland" into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / ecore / wayland / window-render-surface.h
1 #ifndef __DALI_INTERNAL_ECORE_WL_WINDOW_RENDER_SURFACE_H__
2 #define __DALI_INTERNAL_ECORE_WL_WINDOW_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 // INTERNAL INCLUDES
22 #include <ecore-wl-render-surface.h>
23 #include <wayland-egl.h>
24
25 namespace Dali
26 {
27
28 namespace ECore
29 {
30
31 /**
32  * @copydoc Dali::ECore::EcoreWlRenderSurface.
33  * Window specialization.
34  */
35 class WindowRenderSurface : public EcoreWlRenderSurface
36 {
37 public:
38
39   /**
40     * Uses an Wayland surface to render to.
41     * @param [in] positionSize the position and size of the surface
42     * @param [in] surface can be a Wayland-window or Wayland-pixmap (type must be unsigned int).
43     * @param [in] name optional name of surface passed in
44     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
45     */
46   WindowRenderSurface( Dali::PositionSize positionSize,
47                        Any surface,
48                        const std::string& name,
49                        bool isTransparent = false );
50
51   /**
52    * @copydoc Dali::ECore::EcoreWlRenderSurface::~EcoreWlRenderSurface
53    */
54   virtual ~WindowRenderSurface();
55
56 public: // API
57
58   /**
59    * @copydoc Dali::RenderSurface::GetDrawable()
60    */
61   virtual Ecore_Wl_Window* GetDrawable();
62
63   /**
64    * Map window
65    */
66   virtual void Map();
67
68   /**
69    * @copydoc Dali::ECore::EcoreWlRenderSurface::GetSurface()
70    */
71   virtual Any GetSurface();
72
73   /**
74    * @copydoc Dali::ECore::EcoreWlRenderSurface::GetWlWindow()
75    */
76   virtual Ecore_Wl_Window* GetWlWindow();
77
78 public: // from Dali::RenderSurface
79
80   /**
81    * @copydoc Dali::RenderSurface::InitializeEgl()
82    */
83   virtual void InitializeEgl( EglInterface& egl );
84
85   /**
86    * @copydoc Dali::RenderSurface::CreateEglSurface()
87    */
88   virtual void CreateEglSurface( EglInterface& egl );
89
90   /**
91    * @copydoc Dali::RenderSurface::DestroyEglSurface()
92    */
93   virtual void DestroyEglSurface( EglInterface& egl );
94
95   /**
96    * @copydoc Dali::RenderSurface::ReplaceEGLSurface()
97    */
98   virtual bool ReplaceEGLSurface( EglInterface& egl );
99
100   /**
101    * @copydoc Dali::RenderSurface::MoveResize()
102    */
103   virtual void MoveResize( Dali::PositionSize positionSize);
104
105   /**
106    * @copydoc Dali::RenderSurface::SetViewMode()
107    */
108   void SetViewMode( ViewMode viewMode );
109
110   /**
111    * @copydoc Dali::RenderSurface::StartRender()
112    */
113   virtual void StartRender();
114
115   /**
116    * @copydoc Dali::RenderSurface::PreRender()
117    */
118   virtual bool PreRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction );
119
120   /**
121    * @copydoc Dali::RenderSurface::PostRender()
122    */
123   virtual void PostRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction, DisplayConnection* displayConnection, bool replacingSurface );
124
125   /**
126    * @copydoc Dali::RenderSurface::StopRender()
127    */
128   virtual void StopRender();
129
130   /**
131    * @copydoc Dali::RenderSurface::SetThreadSynchronization
132    */
133   virtual void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization );
134
135   /**
136    * @copydoc Dali::RenderSurface::ReleaseLock()
137    */
138   virtual void ReleaseLock();
139
140 protected:
141
142   /**
143    * Create WlWindow
144    */
145   virtual void CreateWlRenderable();
146
147   /**
148    * @copydoc Dali::Internal::Adaptor::ECore::EcoreWlRenderSurface::UseExistingRenderable
149    */
150   virtual void UseExistingRenderable( unsigned int surfaceId );
151
152 private: // Data
153
154   Ecore_Wl_Window*   mWlWindow; ///< Wayland-Window
155   wl_egl_window*     mEglWindow;
156
157 }; // class WindowRenderSurface
158
159 } // namespace ECore
160
161 } // namespace Dali
162
163 #endif // __DALI_INTERNAL_ECORE_WL_WINDOW_RENDER_SURFACE_H__