[dali_1.4.36] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-window.h
1 #ifndef TOOLKIT_WINDOW_H
2 #define TOOLKIT_WINDOW_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 <string>
23 #include <dali/public-api/math/rect.h>
24 #include <dali/public-api/object/base-handle.h>
25 #include <dali/public-api/signals/dali-signal.h>
26 #include <dali/integration-api/scene.h>
27
28 namespace Dali
29 {
30
31 class Actor;
32 class Layer;
33 struct KeyEvent;
34 class TouchData;
35 struct WheelEvent;
36
37 typedef Dali::Rect<int> PositionSize;
38
39 namespace Internal
40 {
41 namespace Adaptor
42 {
43 class Window;
44 }
45 }
46
47 class Window : public BaseHandle
48 {
49 public:
50
51   static Window New(PositionSize windowPosition, const std::string& name, bool isTransparent = false);
52   static Window New(PositionSize windowPosition, const std::string& name, const std::string& className, bool isTransparent = false);
53
54   Window();
55   ~Window();
56   Window(const Window& handle);
57   Window& operator=(const Window& rhs);
58
59   Integration::Scene GetScene();
60   Integration::RenderSurface& GetRenderSurface();
61
62 public:
63   explicit Window( Internal::Adaptor::Window* window );
64 };
65
66 Internal::Adaptor::Window& GetImplementation(Dali::Window& window);
67 const Internal::Adaptor::Window& GetImplementation(const Dali::Window& window);
68
69 namespace DevelWindow
70 {
71 typedef Signal< void () > EventProcessingFinishedSignalType;
72 typedef Signal< void (const KeyEvent&) > KeyEventSignalType;
73 typedef Signal< bool (const KeyEvent&) > KeyEventGeneratedSignalType;
74 typedef Signal< void (const TouchData&) > TouchSignalType;
75 typedef Signal< void (const WheelEvent&) > WheelEventSignalType;
76
77 Dali::Window Get( Actor actor );
78
79 EventProcessingFinishedSignalType& EventProcessingFinishedSignal( Window window );
80 KeyEventSignalType& KeyEventSignal( Dali::Window window );
81 KeyEventGeneratedSignalType& KeyEventGeneratedSignal( Dali::Window window );
82 TouchSignalType& TouchSignal( Dali::Window window );
83 WheelEventSignalType& WheelEventSignal( Window window );
84 }
85
86 } // namespace Dali
87
88 #endif // TOOLKIT_WINDOW_H