Fixed some KeyEvent values
[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::StartRender()
101    */
102   virtual void StartRender();
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, bool replacingSurface );
113
114   /**
115    * @copydoc Dali::Internal::Adaptor::RenderSurface::StopRender()
116    */
117   virtual void StopRender();
118
119 private:
120   enum SyncMode
121   {
122     SYNC_MODE_NONE,
123     SYNC_MODE_WAIT
124   };
125
126   void SetSyncMode( SyncMode syncMode );
127
128   /**
129    * If sync mode is WAIT, then acquire a lock. This prevents render thread from
130    * continuing until the pixmap has been drawn by the compositor.
131    * It must be released for rendering to continue.
132    * @param[in] syncMode The current sync mode
133    */
134   void AcquireLock( SyncMode syncMode );
135
136   /**
137    * Release any locks.
138    */
139   void ReleaseLock();
140
141   /**
142    * Create XPixmap
143    */
144   virtual void CreateWlRenderable();
145
146   /**
147    * @copydoc Dali::Internal::Adaptor::ECore::RenderSurface::UseExistingRenderable
148    */
149   virtual void UseExistingRenderable( unsigned int surfaceId );
150
151 private: // Data
152
153 };
154
155 } // namespace ECore
156
157 } // namespace Adaptor
158
159 } // namespace internal
160
161 } // namespace Dali
162
163 #endif // __DALI_INTERNAL_ECORE_X_PIXMAP_RENDER_SURFACE_H__