1 #ifndef DALI_INTERNAL_WINDOWSYSTEM_COMMON_DISPLAY_CONNECTION_H
2 #define DALI_INTERNAL_WINDOWSYSTEM_COMMON_DISPLAY_CONNECTION_H
5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/public-api/object/any.h>
25 #include <dali/integration-api/render-surface.h>
26 #include <dali/internal/graphics/common/graphics-interface.h>
35 class DisplayConnection;
39 class DisplayConnection
44 * @brief Create an initialized DisplayConnection.
46 * @param[in] graphics The abstracted graphics interface
47 * @return A handle to a newly allocated DisplayConnection resource.
49 static DisplayConnection* New( Dali::Internal::Adaptor::GraphicsInterface& graphics );
52 * @brief Create an initialized DisplayConnection.
53 * Native surface will need this instead of DisplayConnection::New()
55 * @param[in] graphics The abstracted graphics interface
56 * @param[in] type Render surface type
57 * @return A handle to a newly allocated DisplayConnection resource.
59 static DisplayConnection* New( Dali::Internal::Adaptor::GraphicsInterface& graphics, Integration::RenderSurface::Type type );
62 * @brief Create a DisplayConnection handle; this can be initialised with DisplayConnection::New().
64 * Calling member functions with an uninitialised handle is not allowed.
71 * This is non-virtual since derived Handle types must not contain data or virtual methods.
83 * @brief Consumes any possible events on the queue so that there is no leaking between frames
88 * @brief Initialize the display
95 * @brief This constructor is used by DisplayConnection New() methods.
97 * @param [in] handle A pointer to a newly allocated DisplayConnection resource
99 explicit DALI_INTERNAL DisplayConnection(Internal::Adaptor::DisplayConnection* impl);
103 std::unique_ptr<Internal::Adaptor::DisplayConnection> mImpl;
108 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_DISPLAY_CONNECTION_H