Move GetDpi implementation to RenderSurface
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / ubuntu-x11 / display-connection-impl-x.h
1 #ifndef DALI_INTERNAL_WINDOWSYSTEM_ECOREX_DISPLAY_CONNECTION_IMPL_ECORE_X_H
2 #define DALI_INTERNAL_WINDOWSYSTEM_ECOREX_DISPLAY_CONNECTION_IMPL_ECORE_X_H
3
4 /*
5  * Copyright (c) 2015 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 <dali/internal/window-system/common/display-connection-impl.h>
23 #include <dali/internal/window-system/ubuntu-x11/ecore-x-types.h>
24
25 namespace Dali
26 {
27
28 class DisplayConnection;
29
30 namespace Internal
31 {
32
33 namespace Adaptor
34 {
35
36
37 class Impl
38 {
39 public:
40
41   XDisplay*  mDisplay;        ///< X-display for rendering
42 };
43
44
45 /**
46  * DisplayConnection implementation
47  */
48 class DisplayConnectionX11 : public Dali::Internal::Adaptor::DisplayConnection
49 {
50 public:
51
52   /**
53    * @brief Default constructor
54    */
55   DisplayConnectionX11();
56
57   /**
58    * @brief Create an initialized DisplayConnection.
59    *
60    * @return A handle to a newly allocated DisplayConnection resource.
61    */
62   static DisplayConnection* New();
63
64 public:
65
66   /**
67    * @copydoc Dali::DisplayConnection::GetDisplay
68    */
69   Any GetDisplay();
70
71   /**
72    * @copydoc Dali::DisplayConnection::ConsumeEvents
73    */
74   void ConsumeEvents();
75
76   /**
77    * @copydoc Dali::DisplayConnection::InitializeEgl
78    */
79   bool InitializeEgl(EglInterface& egl);
80
81   void SetSurfaceType( RenderSurface::Type type );
82
83 public:
84
85   /**
86    * Destructor
87    */
88   virtual ~DisplayConnectionX11();
89
90 protected:
91
92   // Undefined
93   DisplayConnectionX11(const DisplayConnectionX11&) = delete;
94
95   // Undefined
96   DisplayConnectionX11& operator=(const DisplayConnectionX11& rhs) = delete;
97
98 private:
99
100 public:
101
102   XDisplay*  mDisplay;        ///< X-display for rendering
103
104 };
105
106 } // namespace Adaptor
107
108 } // namespace internal
109
110 } // namespace Dali
111
112 #endif // DALI_INTERNAL_WINDOWSYSTEM_ECOREX_DISPLAY_CONNECTION_IMPL_ECORE_X_H