X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Factors%2Factor.h;h=ecf8372a1d0ac6279c4d900450f41fb11aa92ba5;hb=7ba6426ccecee7660c178296a2ff52e233ae1fd7;hp=21ead2ddef157fe68ab67be6c915f322ab4f3509;hpb=de93b2d9023b5e53eef090ae1235b3d367cd455b;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/actors/actor.h b/dali/public-api/actors/actor.h index 21ead2d..ecf8372 100644 --- a/dali/public-api/actors/actor.h +++ b/dali/public-api/actors/actor.h @@ -49,7 +49,7 @@ class Renderer; struct Degree; class Quaternion; class Layer; -class TouchEvent; +class TouchData; class HoverEvent; struct WheelEvent; struct Vector2; @@ -730,7 +730,7 @@ public: // Typedefs - typedef Signal< bool (Actor, const TouchEvent&) > TouchEventSignalType; ///< Touch signal type @SINCE_1_1.37 + typedef Signal< bool (Actor, const TouchData&) > TouchDataSignalType; ///< Touch signal type @SINCE_1_1.37 typedef Signal< bool (Actor, const HoverEvent&) > HoverSignalType; ///< Hover signal type @SINCE_1_0.0 typedef Signal< bool (Actor, const WheelEvent&) > WheelEventSignalType; ///< Wheel signal type @SINCE_1_0.0 typedef Signal< void (Actor) > OnSceneSignalType; ///< Scene connection signal type @SINCE_1_9.24 @@ -1165,7 +1165,7 @@ public: // Signals * * A callback of the following type may be connected: * @code - * bool YourCallbackName( Actor actor, TouchEvent& touch ); + * bool YourCallbackName( Actor actor, TouchData& touch ); * @endcode * The return value of True, indicates that the touch event has been consumed. * Otherwise the signal will be emitted on the next sensitive parent of the actor. @@ -1174,7 +1174,7 @@ public: // Signals * @return The signal to connect to * @pre The Actor has been initialized. */ - TouchEventSignalType& TouchSignal(); + TouchDataSignalType& TouchSignal(); /** * @brief This signal is emitted when hover input is received.