Merge "Cache font description when a font is created from the file path." into devel...
[platform/core/uifw/dali-adaptor.git] / adaptors / base / display-connection.h
1 #ifndef __DALI_DISPLAY_CONNECTION_H__
2 #define __DALI_DISPLAY_CONNECTION_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 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/any.h>
23
24 // INTERNAL INCLUDES
25
26
27 namespace Dali
28 {
29
30 class EglInterface;
31
32 namespace Internal
33 {
34   namespace Adaptor
35   {
36     class DisplayConnection;
37   }
38 }
39
40 class DisplayConnection
41 {
42 public:
43
44   /**
45    * @brief Create an initialized DisplayConnection.
46    *
47    * @return A handle to a newly allocated DisplayConnection resource.
48    */
49   static DisplayConnection* New();
50
51   /**
52    * @brief Create a DisplayConnection handle; this can be initialised with DisplayConnection::New().
53    *
54    * Calling member functions with an uninitialised handle is not allowed.
55    */
56   DisplayConnection();
57
58   /**
59    * @brief Destructor
60    *
61    * This is non-virtual since derived Handle types must not contain data or virtual methods.
62    */
63   ~DisplayConnection();
64
65   /**
66    * @brief Get display
67    *
68    * @return display
69    */
70   Any GetDisplay();
71
72   /**
73    * @brief Get DPI
74    * @param[out] dpiHorizontal set to the horizontal dpi
75    * @param[out] dpiVertical set to the vertical dpi
76    */
77   static void GetDpi(unsigned int& dpiHorizontal, unsigned int& dpiVertical);
78
79   /**
80    * @brief Consumes any possible events on the queue so that there is no leaking between frames
81    */
82   void ConsumeEvents();
83
84   /**
85    * @brief Initialize EGL display
86    *
87    * @param egl implementation to use for the creation
88    */
89   bool InitializeEgl(EglInterface& egl);
90
91 public:
92
93   /**
94    * @brief This constructor is used by DisplayConnection New() methods.
95    *
96    * @param [in] handle A pointer to a newly allocated DisplayConnection resource
97    */
98   explicit DALI_INTERNAL DisplayConnection(Internal::Adaptor::DisplayConnection* impl);
99
100 private:
101
102   Internal::Adaptor::DisplayConnection* mImpl;
103 };
104
105 }
106
107 #endif // __DALI_DISPLAY_CONNECTION_H__