License conversion from Flora to Apache 2.0
[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
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   virtual ~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   // Used to test signal connections
51   void CustomSlot1( Actor actor, const Vector3& value );
52
53 public:
54
55   bool mCustomSlot1Called;
56   Vector3 mCustomSlot1Value;
57
58 public: // Not intended for application developers
59
60   DummyControl( DummyControlImpl& implementation );
61   DummyControl( Dali::Internal::CustomActor* internal );
62 };
63
64 /**
65  * Cannot create an instance of ControlImpl, so use this dummy class for the implementation.
66  * This class does not override any of ControlImpl's behaviour.
67  */
68 class DummyControlImpl : public ControlImpl
69 {
70 public:
71
72   static DummyControl New();
73
74 public:
75   inline void EnableGestureDetection(Gesture::Type type) { ControlImpl::EnableGestureDetection(type); }
76   inline void DisableGestureDetection(Gesture::Type type) { ControlImpl::DisableGestureDetection(type); }
77   inline PinchGestureDetector GetPinchGestureDetector() const { return ControlImpl::GetPinchGestureDetector(); }
78   inline PanGestureDetector GetPanGestureDetector() const { return ControlImpl::GetPanGestureDetector(); }
79   inline TapGestureDetector GetTapGestureDetector() const { return ControlImpl::GetTapGestureDetector(); }
80   inline LongPressGestureDetector GetLongPressGestureDetector() const { return ControlImpl::GetLongPressGestureDetector(); }
81
82 protected:
83
84   DummyControlImpl();
85
86   virtual ~DummyControlImpl();
87 };
88
89 /**
90  * Cannot create an instance of ControlImpl, so use this dummy class for the implementation.
91  * This class DOES override ControlImpl'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 ControlImpl
106
107   virtual void OnInitialize();
108   virtual void OnStyleChange(StyleChange change);
109   virtual void OnPinch(PinchGesture pinch);
110   virtual void OnPan(PanGesture pan);
111   virtual void OnTap(TapGesture tap);
112   virtual void OnLongPress(LongPressGesture longPress);
113
114 private: // From CustomActorImpl
115
116   virtual void OnStageConnection();
117   virtual void OnStageDisconnection();
118   virtual void OnChildAdd(Actor& child);
119   virtual void OnChildRemove(Actor& child);
120   virtual void OnSizeSet(const Vector3& targetSize);
121   virtual void OnSizeAnimation(Animation& animation, const Vector3& targetSize);
122   virtual bool OnTouchEvent(const TouchEvent& event);
123   virtual bool OnMouseWheelEvent(const MouseWheelEvent& event);
124   virtual bool OnKeyEvent(const KeyEvent& event);
125   virtual void OnKeyInputFocusGained();
126   virtual void OnKeyInputFocusLost();
127
128 public:
129
130   bool initializeCalled;
131   bool styleChangeCalled;
132   bool pinchCalled;
133   bool panCalled;
134   bool tapCalled;
135   bool longPressCalled;
136   bool stageConnectionCalled;
137   bool stageDisconnectionCalled;
138   bool childAddCalled;
139   bool childRemoveCalled;
140   bool sizeSetCalled;
141   bool sizeAnimationCalled;
142   bool touchEventCalled;
143   bool mouseWheelEventCalled;
144   bool keyEventCalled;
145   bool keyInputFocusGained;
146   bool keyInputFocusLost;
147 };
148
149 } // namespace Toolkit
150
151 } // namespace Dali
152
153 #endif // __DALI_TOOLKIT_TEST_DUMMY_CONTROL_H__