Merge "Fixed an issue where the multi-tap did not work properly. (https://review...
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-scene-holder-impl.h
1 #ifndef DALI_TOOLKIT_SCENE_HOLDER_IMPL_H
2 #define DALI_TOOLKIT_SCENE_HOLDER_IMPL_H
3
4 /*
5  * Copyright (c) 2021 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 #include <dali/integration-api/adaptor-framework/render-surface-interface.h>
22
23 #include <dali/integration-api/scene.h>
24 #include <dali/public-api/actors/layer.h>
25 #include <dali/public-api/object/base-object.h>
26
27 namespace Dali
28 {
29
30 class TestRenderSurface : public Dali::RenderSurfaceInterface
31 {
32 public:
33
34   TestRenderSurface( PositionSize positionSize ) {};
35
36   PositionSize GetPositionSize() const override { PositionSize size; return size; };
37
38   virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) { dpiHorizontal = dpiVertical = 96; }
39
40   void InitializeGraphics() override {};
41
42   void CreateSurface() override {};
43
44   void DestroySurface() override {};
45
46   bool ReplaceGraphicsSurface() override { return false; };
47
48   void MoveResize( Dali::PositionSize positionSize ) override {};
49
50   void StartRender() override {};
51
52   bool PreRender( bool resizingSurface, const std::vector<Rect<int>>& damagedRects, Rect<int>& clippingRect  ) override { return false; };
53
54   void PostRender()
55   {
56   }
57
58   //void PostRender( bool renderToFbo, bool replacingSurface, bool resizingSurface, const std::vector<Rect<int>>& damagedRects ) override {};
59
60   void StopRender() override {};
61
62   void ReleaseLock() override {};
63
64   void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization ) override {};
65
66   RenderSurfaceInterface::Type GetSurfaceType() override { return RenderSurfaceInterface::WINDOW_RENDER_SURFACE; };
67
68   void MakeContextCurrent() override {};
69
70   Integration::DepthBufferAvailable GetDepthBufferRequired() override { return Integration::DepthBufferAvailable::FALSE; };
71
72   Integration::StencilBufferAvailable GetStencilBufferRequired() override { return Integration::StencilBufferAvailable::FALSE; };
73
74   int GetOrientation() const override {return 0;};
75
76   void SetBackgroundColor( Vector4 color ) {};
77
78   Vector4 GetBackgroundColor() { return Color::WHITE; };
79 };
80
81 namespace Internal
82 {
83
84 namespace Adaptor
85 {
86
87 class SceneHolder : public Dali::BaseObject
88 {
89 public:
90
91   SceneHolder( const Dali::Rect<int>& positionSize );
92
93   virtual ~SceneHolder();
94
95   void Add( Dali::Actor actor );
96
97   void Remove( Dali::Actor actor );
98
99   Dali::Layer GetRootLayer() const;
100
101   void SetBackgroundColor( Vector4 color );
102
103   Vector4 GetBackgroundColor() const;
104
105   void FeedTouchPoint( Dali::TouchPoint& point, int timeStamp );
106
107   void FeedWheelEvent( Dali::WheelEvent& wheelEvent );
108
109   void FeedKeyEvent( Dali::KeyEvent& keyEvent );
110
111   Dali::Integration::SceneHolder::KeyEventSignalType& KeyEventSignal();
112
113   Dali::Integration::SceneHolder::KeyEventGeneratedSignalType& KeyEventGeneratedSignal();
114
115   Dali::Integration::SceneHolder::TouchEventSignalType& TouchedSignal();
116
117   Dali::Integration::SceneHolder::WheelEventSignalType& WheelEventSignal();
118
119   Integration::Scene GetScene();
120
121   Dali::RenderSurfaceInterface& GetRenderSurface();
122
123 private:
124
125   TestRenderSurface mRenderSurface;
126   Integration::Scene mScene;
127 };
128
129 } // namespace Adaptor
130
131 } // namespace Internal
132
133 inline Internal::Adaptor::SceneHolder& GetImplementation( Dali::Integration::SceneHolder& sceneHolder )
134 {
135   DALI_ASSERT_ALWAYS( sceneHolder && "SceneHolder handle is empty" );
136   BaseObject& object = sceneHolder.GetBaseObject();
137   return static_cast<Internal::Adaptor::SceneHolder&>( object );
138 }
139
140 inline const Internal::Adaptor::SceneHolder& GetImplementation( const Dali::Integration::SceneHolder& sceneHolder )
141 {
142   DALI_ASSERT_ALWAYS( sceneHolder && "SceneHolder handle is empty" );
143   const BaseObject& object = sceneHolder.GetBaseObject();
144   return static_cast<const Internal::Adaptor::SceneHolder&>( object );
145 }
146
147 } // namespace Dali
148
149 #endif // DALI_TOOLKIT_SCENE_HOLDER_IMPL_H