X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fevent%2Fevents%2Fgesture-event-processor.cpp;h=2d91ac2dc7383d38e105c7eacfcc2c6d140bde67;hb=f631ce10f0d13580c4ec4520352d3002265ce214;hp=6a5b938244d442e362d093a7c176580533e2f4af;hpb=5273729f378b095959406a31664af3bab60fb385;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/event/events/gesture-event-processor.cpp b/dali/internal/event/events/gesture-event-processor.cpp index 6a5b938..2d91ac2 100644 --- a/dali/internal/event/events/gesture-event-processor.cpp +++ b/dali/internal/event/events/gesture-event-processor.cpp @@ -265,6 +265,47 @@ void GestureEventProcessor::SetPanGestureSmoothingAmount( float amount ) mPanGestureProcessor.SetSmoothingAmount(amount); } +void GestureEventProcessor::SetPanGestureUseActualTimes( bool value ) +{ + mPanGestureProcessor.SetUseActualTimes( value ); +} + +void GestureEventProcessor::SetPanGestureInterpolationTimeRange( int value ) +{ + mPanGestureProcessor.SetInterpolationTimeRange( value ); +} + +void GestureEventProcessor::SetPanGestureScalarOnlyPredictionEnabled( bool value ) +{ + mPanGestureProcessor.SetScalarOnlyPredictionEnabled( value ); +} + +void GestureEventProcessor::SetPanGestureTwoPointPredictionEnabled( bool value ) +{ + mPanGestureProcessor.SetTwoPointPredictionEnabled( value ); +} + +void GestureEventProcessor::SetPanGestureTwoPointInterpolatePastTime( int value ) +{ + mPanGestureProcessor.SetTwoPointInterpolatePastTime( value ); +} + +void GestureEventProcessor::SetPanGestureTwoPointVelocityBias( float value ) +{ + mPanGestureProcessor.SetTwoPointVelocityBias( value ); +} + +void GestureEventProcessor::SetPanGestureTwoPointAccelerationBias( float value ) +{ + mPanGestureProcessor.SetTwoPointAccelerationBias( value ); +} + +void GestureEventProcessor::SetPanGestureMultitapSmoothingRange( int value ) +{ + mPanGestureProcessor.SetMultitapSmoothingRange( value ); +} + + } // namespace Internal } // namespace Dali