1 #ifndef __DALI_INTERNAL_TOUCH_DATA_H__
2 #define __DALI_INTERNAL_TOUCH_DATA_H__
5 * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/events/point-state.h>
24 #include <dali/public-api/events/touch-data.h>
25 #include <dali/public-api/object/base-object.h>
26 #include <dali/integration-api/events/point.h>
38 typedef IntrusivePtr< TouchData > TouchDataPtr;
41 * @copydoc Dali::TouchData
43 class TouchData : public BaseObject
47 // Construction & Destruction
50 * @brief Default constructor
56 * @param[in] time The time the event occurred
58 TouchData( unsigned long time );
61 * @brief Clones the TouchData object.
63 * Required because base class copy constructor is not implemented.
64 * @param[in] other The TouchData to clone from.
65 * @return A new TouchData object which is has the same touch point data.
67 static TouchDataPtr Clone( const TouchData& other );
77 * @copydoc Dali::TouchData::GetTime()
79 unsigned long GetTime() const;
82 * @copydoc Dali::TouchData::GetPointCount()
84 std::size_t GetPointCount() const;
87 * @copydoc Dali::TouchData::GetDeviceId()
89 int32_t GetDeviceId( std::size_t point ) const;
92 * @copydoc Dali::TouchData::GetGetState()
94 PointState::Type GetState( std::size_t point ) const;
97 * @copydoc Dali::TouchData::GetHitActor()
99 Dali::Actor GetHitActor( std::size_t point ) const;
102 * @copydoc Dali::TouchData::GetLocalPosition()
104 const Vector2& GetLocalPosition( std::size_t point ) const;
107 * @copydoc Dali::TouchData::GetScreenPosition()
109 const Vector2& GetScreenPosition( std::size_t point ) const;
112 * @copydoc Dali::TouchData::GetRadius()
114 float GetRadius( std::size_t point ) const;
117 * @copydoc Dali::TouchData::GetEllipseRadius()
119 const Vector2& GetEllipseRadius( std::size_t point ) const;
122 * @copydoc Dali::TouchData::GetPressure()
124 float GetPressure( std::size_t point ) const;
127 * @copydoc Dali::TouchData::GetAngle()
129 Degree GetAngle( std::size_t point ) const;
132 * @brief Returns a const reference to a point at the index requested.
134 * The first point in the set is always the primary point (i.e. the first point touched in a multi-touch event).
136 * @param[in] point The index of the required Point.
137 * @return A const reference to the Point at the position requested
138 * @note point should be less than the value returned by GetPointCount(). Will assert if out of range.
140 const Integration::Point& GetPoint( std::size_t point ) const;
143 * @brief Returns a reference to a point at the index requested.
145 * The first point in the set is always the primary point (i.e. the first point touched in a multi-touch event).
147 * @param[in] point The index of the required Point.
148 * @return A reference to the Point at the position requested
149 * @note point should be less than the value returned by GetPointCount(). Will assert if out of range.
151 Integration::Point& GetPoint( std::size_t point );
156 * @brief Adds a point to this touch event handler.
157 * @param[in] point The point to add to the touch event handler.
159 void AddPoint( const Integration::Point& point );
162 * @brief Get the device class the mouse/touch event originated from
164 * @return The device class
166 DevelDevice::Class::Type GetDeviceClass( std::size_t point ) const;
169 * @brief Get the device subclass the mouse/touch event originated from
171 * @return The device subclass
173 DevelDevice::Subclass::Type GetDeviceSubclass( std::size_t point ) const;
177 /// Undefined Copy constructor
178 TouchData( const TouchData& other );
181 TouchData& operator=( const TouchData& other );
185 std::vector< Integration::Point > mPoints; ///< Container of the points for this touch event.
186 unsigned long mTime; ///< The time (in ms) that the touch event occurred.
189 } // namespace Internal
191 // Helpers for public-api forwarding methods
193 inline Internal::TouchData& GetImplementation( Dali::TouchData& touchData )
195 DALI_ASSERT_ALWAYS( touchData && "Touch Data handle is empty" );
197 BaseObject& object = touchData.GetBaseObject();
199 return static_cast< Internal::TouchData& >( object );
202 inline const Internal::TouchData& GetImplementation( const Dali::TouchData& touchData )
204 DALI_ASSERT_ALWAYS( touchData && "Touch Data handle is empty" );
206 const BaseObject& object = touchData.GetBaseObject();
208 return static_cast< const Internal::TouchData& >( object );
213 #endif // __DALI_INTERNAL_TOUCH_DATA_H__