Merge "Add GetBrightness()" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / common / display-connection-impl.h
1 #ifndef DALI_INTERNAL_WINDOWSYSTEM_COMMON_DISPLAY_CONNECTION_IMPL_H
2 #define DALI_INTERNAL_WINDOWSYSTEM_COMMON_DISPLAY_CONNECTION_IMPL_H
3
4 /*
5  * Copyright (c) 2021 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/graphics/gles/egl-implementation.h>
23 #include <dali/internal/window-system/common/display-connection.h>
24 #include <dali/public-api/object/base-object.h>
25
26 namespace Dali
27 {
28 class DisplayConnection;
29
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 /**
35  * DisplayConnection implementation
36  */
37 class DisplayConnection : public Dali::BaseObject
38 {
39 public:
40   /**
41    * @brief Default constructor
42    */
43   DisplayConnection() = default;
44
45   /**
46    * @brief Create an initialized DisplayConnection.
47    *
48    * @return A handle to a newly allocated DisplayConnection resource.
49    */
50   static DisplayConnection* New();
51
52 public:
53   /**
54    * @copydoc Dali::DisplayConnection::GetDisplay
55    */
56   virtual Any GetDisplay() = 0;
57
58   /**
59    * @copydoc Dali::DisplayConnection::ConsumeEvents
60    */
61   virtual void ConsumeEvents() = 0;
62
63   /**
64    * @copydoc Dali::DisplayConnection::InitializeGraphics
65    */
66   virtual bool InitializeGraphics() = 0;
67
68   /**
69    * Sets the render surface type
70    * @param[in] type The render surface type
71    */
72   virtual void SetSurfaceType(Dali::RenderSurfaceInterface::Type type) = 0;
73
74   /**
75    * Sets the graphics interface
76    * @param[in] graphics The graphics interface
77    */
78   virtual void SetGraphicsInterface(GraphicsInterface& graphics) = 0;
79
80 public:
81   /**
82    * Destructor
83    */
84   ~DisplayConnection() override = default;
85
86 protected:
87   // Undefined
88   DisplayConnection(const DisplayConnection&) = delete;
89
90   // Undefined
91   DisplayConnection& operator=(const DisplayConnection& rhs) = delete;
92 };
93
94 } // namespace Adaptor
95
96 } // namespace Internal
97
98 } // namespace Dali
99
100 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_DISPLAY_CONNECTION_IMPL_H