[Tizen](ATSPI) squashed implementation
[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 #include <dali/devel-api/text-abstraction/font-client.h>
27 #include <dali/integration-api/adaptors/adaptor.h>
28 #include <toolkit-adaptor-impl.h>
29 #include <toolkit-singleton-service.h>
30 #include <dali/public-api/adaptor-framework/accessibility.h>
31 #include "test-application.h"
32
33 #undef assert
34
35 namespace Dali
36 {
37
38 class Adaptor;
39 class Window;
40
41 /**
42  * Adds some functionality on top of TestApplication that is required by the Toolkit.
43  *
44  * This includes creation and destruction of the Adaptor and Window classes.
45  */
46 class ToolkitTestApplication : public TestApplication
47 {
48 public:
49
50   ToolkitTestApplication( size_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
51                           size_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
52                           float  horizontalDpi = DEFAULT_HORIZONTAL_DPI,
53                           float  verticalDpi   = DEFAULT_VERTICAL_DPI );
54
55   ~ToolkitTestApplication();
56
57   /**
58    * @brief Executes the idle callbacks.
59    *
60    * Some controls like the text-field and the text-editor connect callbacks to the
61    * idle signal.
62    */
63   void RunIdles();
64
65 private:
66
67   std::unique_ptr<Dali::Window> mMainWindow;
68   std::unique_ptr< Adaptor > mAdaptor;
69 };
70
71 } // namespace Dali
72
73 #endif // DALI_TOOLKIT_TEST_APPLICATION_H