Merge "Implemented the Handle assignment operators properly" into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / wayland / pixmap-render-surface.h
1 #ifndef __DALI_INTERNAL_ECORE_X_PIXMAP_RENDER_SURFACE_H__
2 #define __DALI_INTERNAL_ECORE_X_PIXMAP_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
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 namespace Adaptor
31 {
32 class TriggerEvent;
33
34 namespace ECore
35 {
36
37 /**
38  * Ecore X11 implementation of render surface.
39  */
40 class PixmapRenderSurface : public RenderSurface
41 {
42 public:
43
44   /**
45     * Uses an Wayland surface to render to.
46     * @param [in] positionSize the position and size of the surface
47     * @param [in] surface can be a Wayland-window (type must be unsigned int).
48     * @param [in] display connection to Wayland-server if the surface is a X window or pixmap (type must be void * to X display struct)
49     * @param [in] name optional name of surface passed in
50     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
51     */
52   PixmapRenderSurface( Dali::PositionSize positionSize,
53                        Any surface,
54                        Any display,
55                        const std::string& name,
56                        bool isTransparent = false);
57
58   /**
59    * @copydoc Dali::Internal::Adaptor::ECore::RenderSurface::~RenderSurface
60    */
61   virtual ~PixmapRenderSurface();
62
63 public: // API
64
65 public: // from Dali::RenderSurface
66
67   /**
68    * @copydoc Dali::RenderSurface::GetType()
69    */
70   virtual Dali::RenderSurface::SurfaceType GetType();
71
72   /**
73    * @copydoc Dali::RenderSurface::GetSurface()
74    */
75   virtual Any GetSurface();
76
77 public: // from Internal::Adaptor::RenderSurface
78
79   /**
80    * @copydoc Dali::Internal::Adaptor::RenderSurface::InitializeEgl()
81    */
82   virtual void InitializeEgl( EglInterface& egl );
83
84   /**
85    * @copydoc Dali::Internal::Adaptor::RenderSurface::CreateEglSurface()
86    */
87   virtual void CreateEglSurface( EglInterface& egl );
88
89   /**
90    * @copydoc Dali::Internal::Adaptor::RenderSurface::DestroyEglSurface()
91    */
92   virtual void DestroyEglSurface( EglInterface& egl );
93
94   /**
95    * @copydoc Dali::Internal::Adaptor::RenderSurface::ReplaceEGLSurface()
96    */
97   virtual bool ReplaceEGLSurface( EglInterface& egl );
98
99   /**
100    * @copydoc Dali::Internal::Adaptor::RenderSurface::RenderSync()
101    */
102   virtual void RenderSync();
103
104   /**
105    * @copydoc Dali::Internal::Adaptor::RenderSurface::PreRender()
106    */
107   virtual bool PreRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction );
108
109   /**
110    * @copydoc Dali::Internal::Adaptor::RenderSurface::PostRender()
111    */
112   virtual void PostRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction, unsigned int timeDelta, SyncMode syncMode );
113
114 private:
115
116   /**
117    * Create XPixmap
118    */
119   virtual void CreateWlRenderable();
120
121   /**
122    * @copydoc Dali::Internal::Adaptor::ECore::RenderSurface::UseExistingRenderable
123    */
124   virtual void UseExistingRenderable( unsigned int surfaceId );
125
126 private: // Data
127
128 };
129
130 } // namespace ECore
131
132 } // namespace Adaptor
133
134 } // namespace internal
135
136 } // namespace Dali
137
138 #endif // __DALI_INTERNAL_ECORE_X_PIXMAP_RENDER_SURFACE_H__