videoplayback/videoplaybackview/tsrc/testvideoplaybackview/stub/inc/hbpangesture.h
changeset 66 adb51f74b890
parent 44 518105d52e45
equal deleted inserted replaced
63:4707a0db12f6 66:adb51f74b890
    13 *
    13 *
    14 * Description:  Implementation of HbPanGesture
    14 * Description:  Implementation of HbPanGesture
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 // Version : %version:   1 %
    18 // Version : %version:   2 %
    19 
    19 
    20 
    20 
    21 
    21 
    22 #ifndef HBPANGESTURE_H_
    22 #ifndef HBPANGESTURE_H_
    23 #define HBPANGESTURE_H_
    23 #define HBPANGESTURE_H_
    31     public:
    31     public:
    32         HbPanGesture();
    32         HbPanGesture();
    33         virtual ~HbPanGesture();
    33         virtual ~HbPanGesture();
    34         Qt::GestureState state(){ return mState; }
    34         Qt::GestureState state(){ return mState; }
    35         QPointF sceneDelta();
    35         QPointF sceneDelta();
       
    36         QPointF sceneVelocity();
       
    37         QPointF sceneOffset();
    36 
    38 
    37     public:
    39     public:
    38         Qt::GestureState mState;
    40         Qt::GestureState mState;
    39         QPointF mSceneDelta;
    41         QPointF mSceneDelta;
       
    42         QPointF mSceneVelocity;
       
    43         QPointF mSceneOffset;
    40 };
    44 };
    41 
    45 
    42 #endif /*HBPANGESTURE_H_*/
    46 #endif /*HBPANGESTURE_H_*/
    43 
    47