Merge "Add GetSurfaceType() in TestRenderSurface" into devel/master
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / dummy-control.h
1 #ifndef __DALI_TOOLKIT_TEST_DUMMY_CONTROL_H__
2 #define __DALI_TOOLKIT_TEST_DUMMY_CONTROL_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-toolkit/dali-toolkit.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 class DummyControlImpl;
31 class ControlRenderer;
32 /**
33  * Control does not have a New method so use this dummy class for the handle.
34  */
35 class DummyControl : public Control
36 {
37 public:
38
39   DummyControl();
40   DummyControl(const DummyControl& control);
41   ~DummyControl();
42
43   static DummyControl New( bool override = false );
44
45   static DummyControl DownCast( BaseHandle handle );
46
47
48   DummyControl& operator=(const DummyControl& control);
49
50 public: // Not intended for application developers
51
52   DummyControl( DummyControlImpl& implementation );
53   DummyControl( Dali::Internal::CustomActor* internal );
54 };
55
56 /**
57  * Cannot create an instance of Internal::Control, so use this dummy class for the implementation.
58  * This class does not override any of Internal::Control's behaviour.
59  */
60 class DummyControlImpl : public Internal::Control
61 {
62 public:
63
64   static DummyControl New();
65
66 public:
67   inline void EnableGestureDetection(Gesture::Type type) { Internal::Control::EnableGestureDetection(type); }
68   inline void DisableGestureDetection(Gesture::Type type) { Internal::Control::DisableGestureDetection(type); }
69   inline PinchGestureDetector GetPinchGestureDetector() const { return Internal::Control::GetPinchGestureDetector(); }
70   inline PanGestureDetector GetPanGestureDetector() const { return Internal::Control::GetPanGestureDetector(); }
71   inline TapGestureDetector GetTapGestureDetector() const { return Internal::Control::GetTapGestureDetector(); }
72   inline LongPressGestureDetector GetLongPressGestureDetector() const { return Internal::Control::GetLongPressGestureDetector(); }
73
74   void RegisterVisual( Property::Index index, Actor placementActor, Toolkit::Visual::Base visual);
75   void UnregisterVisual( Property::Index index );
76
77   // Used to test signal connections
78   void CustomSlot1( Actor actor );
79
80   bool mCustomSlot1Called;
81
82 protected:
83
84   DummyControlImpl();
85
86   virtual ~DummyControlImpl();
87 };
88
89 /**
90  * Cannot create an instance of Internal::Control, so use this dummy class for the implementation.
91  * This class DOES override Internal::Control's behaviour.
92  */
93 class DummyControlImplOverride : public DummyControlImpl
94 {
95 public:
96
97   static DummyControl New();
98
99 private:
100
101   DummyControlImplOverride();
102
103   virtual ~DummyControlImplOverride();
104
105 private: // From Internal::Control
106
107   virtual void OnInitialize();
108   virtual bool OnAccessibilityActivated();
109   virtual bool OnAccessibilityTouch( const TouchEvent& touchEvent );
110   virtual bool OnAccessibilityValueChange( bool isIncrease );
111
112   virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change );
113   virtual void OnPinch(const PinchGesture& pinch);
114   virtual void OnPan(const PanGesture& pan);
115   virtual void OnTap(const TapGesture& tap);
116   virtual void OnLongPress(const LongPressGesture& longPress);
117
118 private: // From CustomActorImpl
119
120   virtual void OnStageConnection( int depth );
121   virtual void OnStageDisconnection();
122   virtual void OnChildAdd(Actor& child);
123   virtual void OnChildRemove(Actor& child);
124   virtual void OnSizeSet(const Vector3& targetSize);
125   virtual void OnSizeAnimation(Animation& animation, const Vector3& targetSize);
126   virtual bool OnTouchEvent(const TouchEvent& event);
127   virtual bool OnHoverEvent(const HoverEvent& event);
128   virtual bool OnWheelEvent(const WheelEvent& event);
129   virtual bool OnKeyEvent(const KeyEvent& event);
130   virtual void OnKeyInputFocusGained();
131   virtual void OnKeyInputFocusLost();
132
133 public:
134
135   bool initializeCalled;
136   bool activatedCalled;
137   bool onAccTouchedCalled;
138   bool onAccValueChangeCalled;
139   bool themeChangeCalled;
140   bool fontChangeCalled;
141   bool pinchCalled;
142   bool panCalled;
143   bool tapCalled;
144   bool longPressCalled;
145   bool stageConnectionCalled;
146   bool stageDisconnectionCalled;
147   bool childAddCalled;
148   bool childRemoveCalled;
149   bool sizeSetCalled;
150   bool sizeAnimationCalled;
151   bool touchEventCalled;
152   bool hoverEventCalled;
153   bool wheelEventCalled;
154   bool keyEventCalled;
155   bool keyInputFocusGained;
156   bool keyInputFocusLost;
157 };
158
159 } // namespace Toolkit
160
161 } // namespace Dali
162
163 #endif // __DALI_TOOLKIT_TEST_DUMMY_CONTROL_H__