Merge "Remove FrameBufferImage" into devel/master
[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
32 /**
33  * Adds some functionality on top of TestApplication that is required by the Toolkit.
34  *
35  * This includes creation and destruction of the Adaptor and Window classes.
36  */
37 class ToolkitTestApplication : public TestApplication
38 {
39 public:
40
41   ToolkitTestApplication( size_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
42                           size_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
43                           float  horizontalDpi = DEFAULT_HORIZONTAL_DPI,
44                           float  verticalDpi   = DEFAULT_VERTICAL_DPI );
45
46   ~ToolkitTestApplication();
47
48   /**
49    * @brief Executes the idle callbacks.
50    *
51    * Some controls like the text-field and the text-editor connect callbacks to the
52    * idle signal.
53    */
54   void RunIdles();
55
56 private:
57   std::unique_ptr< Adaptor > mAdaptor;
58 };
59
60 } // namespace Dali
61
62 #endif // DALI_TOOLKIT_TEST_APPLICATION_H