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