[dali_1.4.24] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-adaptor-impl.h
1 #ifndef DALI_TOOLKIT_ADAPTOR_IMPL_H
2 #define DALI_TOOLKIT_ADAPTOR_IMPL_H
3
4 /*
5  * Copyright (c) 2019 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 #include <dali/integration-api/adaptors/render-surface-interface.h>
22
23 namespace Dali
24 {
25 class EglInterface;
26 class DisplayConnection;
27 class ThreadSynchronizationInterface;
28 class Window;
29
30 using WindowContainer = std::vector<Window>;
31
32 namespace Internal
33 {
34
35 namespace Adaptor
36 {
37
38 class GraphicsInterface;
39
40 } // namespace Adaptor
41
42 } // namespace Internal
43
44 namespace Integration
45 {
46
47 class GlAbstraction;
48
49 } // namespace Integration
50
51 namespace Internal
52 {
53 namespace Adaptor
54 {
55
56 class Adaptor: public BaseObject
57 {
58 public:
59   static Dali::Adaptor& Get();
60   Adaptor();
61   ~Adaptor();
62
63 public:
64   static Dali::RenderSurfaceInterface& GetSurface();
65   static Dali::WindowContainer GetWindows();
66   static Dali::Adaptor::AdaptorSignalType& AdaptorSignal();
67   static Dali::Adaptor::WindowCreatedSignalType& WindowCreatedSignal();
68   static bool mAvailable;
69   static Vector<CallbackBase*> mCallbacks;
70   static Dali::WindowContainer mWindows;
71   static Dali::Adaptor::WindowCreatedSignalType* mWindowCreatedSignal;
72 };
73
74 } // namespace Adaptor
75 } // namespace Internal
76 } // namespace Dali
77
78 #endif // DALI_TOOLKIT_ADAPTOR_IMPL_H