X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fevent%2Fevents%2Fgesture-event-processor.h;h=9ae5d6f139487e1982a16eda84b9f894312cfeed;hb=a4eb68faf1e75d213c951a7d4d1b67727247917a;hp=7a812954c0b730b69173bd99dab8689d5c8a7567;hpb=24fcf9819928219dc76bf9c015f8a3c7e248568c;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/event/events/gesture-event-processor.h b/dali/internal/event/events/gesture-event-processor.h index 7a81295..9ae5d6f 100644 --- a/dali/internal/event/events/gesture-event-processor.h +++ b/dali/internal/event/events/gesture-event-processor.h @@ -21,10 +21,11 @@ // INTERNAL INCLUDES #include #include -#include -#include -#include -#include +#include +#include +#include +#include +#include namespace Dali { @@ -251,6 +252,18 @@ public: // Called by Core */ void SetPinchGestureMinimumDistance( float value); + /** + * @brief Sets the minimum holding time required to be recognized as a long press gesture + * + * @param[in] value The time value in milliseconds + */ + void SetLongPressMinimumHoldingTime( uint32_t value ); + + /** + * @return The minimum holding time required to be recognized as a long press gesture in milliseconds + */ + uint32_t GetLongPressMinimumHoldingTime() const; + public: // needed for PanGesture /** @@ -270,6 +283,7 @@ private: PanGestureProcessor mPanGestureProcessor; PinchGestureProcessor mPinchGestureProcessor; TapGestureProcessor mTapGestureProcessor; + RotationGestureProcessor mRotationGestureProcessor; Integration::RenderController& mRenderController; int32_t envOptionMinimumPanDistance;