Remove RenderSurface from Core
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-test-application.h
1 #ifndef DALI_TOOLKIT_TEST_APPLICATION_H
2 #define DALI_TOOLKIT_TEST_APPLICATION_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 // EXTERNAL INCLUDES
22 #include <memory>
23
24 // INTERNAL INCLUDES
25 #include <dali-test-suite-utils.h>
26
27 namespace Dali
28 {
29
30 class Adaptor;
31 class Window;
32
33 /**
34  * Adds some functionality on top of TestApplication that is required by the Toolkit.
35  *
36  * This includes creation and destruction of the Adaptor and Window classes.
37  */
38 class ToolkitTestApplication : public TestApplication
39 {
40 public:
41
42   ToolkitTestApplication( size_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
43                           size_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
44                           float  horizontalDpi = DEFAULT_HORIZONTAL_DPI,
45                           float  verticalDpi   = DEFAULT_VERTICAL_DPI );
46
47   ~ToolkitTestApplication();
48
49   /**
50    * @brief Executes the idle callbacks.
51    *
52    * Some controls like the text-field and the text-editor connect callbacks to the
53    * idle signal.
54    */
55   void RunIdles();
56
57 private:
58
59   std::unique_ptr<Dali::Window> mMainWindow;
60   std::unique_ptr< Adaptor > mAdaptor;
61 };
62
63 } // namespace Dali
64
65 #endif // DALI_TOOLKIT_TEST_APPLICATION_H