3c83f7e9961afe6494de7a6a68d86a262a44cd68
[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) 2014 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 // INTERNAL INCLUDES
22 #include <dali-test-suite-utils.h>
23 #include <dali/devel-api/text-abstraction/font-client.h>
24
25 #include "toolkit-orientation.h"
26
27 namespace Dali
28 {
29
30 /**
31  * Adds some functionality on top of TestApplication that is required by the Toolkit.
32  */
33 class ToolkitTestApplication : public TestApplication
34 {
35 public:
36
37   ToolkitTestApplication( size_t surfaceWidth  = DEFAULT_SURFACE_WIDTH,
38                           size_t surfaceHeight = DEFAULT_SURFACE_HEIGHT,
39                           float  horizontalDpi = DEFAULT_HORIZONTAL_DPI,
40                           float  verticalDpi   = DEFAULT_VERTICAL_DPI )
41   : TestApplication( false, surfaceWidth, surfaceHeight, horizontalDpi, verticalDpi )
42   {
43     Initialize();
44
45     // set the DPI value for font rendering
46     Dali::TextAbstraction::FontClient fontClient = Dali::TextAbstraction::FontClient::Get();
47     if( fontClient )
48     {
49       fontClient.SetDpi( mDpi.x, mDpi.y );
50     }
51   }
52
53   ~ToolkitTestApplication()
54   {
55     // Need to delete core before we delete the adaptor.
56     delete mCore;
57     mCore = NULL;
58   }
59
60   //ToolkitOrientation& GetOrientation()
61   //{
62   //return mOrientation;
63   //}
64
65 private:
66   //ToolkitOrientation mOrientation;
67 };
68
69 } // namespace Dali
70
71 inline ImageActor CreateSolidColorImageActor(ToolkitTestApplication& application, const Vector4& color, int width, int height)
72 {
73   ImageActor actor = ImageActor::New(CreateBufferImage(width, height, color));
74   application.SendNotification();
75   application.Render();
76   return actor;
77 }
78
79
80 #endif // __DALI_TOOLKIT_TEST_APPLICATION_H__