homescreenapp/hsutils/src/hspropertyanimationwrapper.cpp
changeset 71 1db7cc813a4e
parent 69 87476091b3f5
equal deleted inserted replaced
69:87476091b3f5 71:1db7cc813a4e
    14 * Description:
    14 * Description:
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 #include <QPropertyAnimation>
    18 #include <QPropertyAnimation>
       
    19 #include <QEasingCurve>
    19 #include "hspropertyanimationwrapper.h"
    20 #include "hspropertyanimationwrapper.h"
    20 
    21 
    21 /*!
    22 /*!
    22     \class HsMessageBoxWrapper
    23     \class HsMessageBoxWrapper
    23     \ingroup group_hsutils
    24     \ingroup group_hsutils
   105 void HsPropertyAnimationWrapper::stop()
   106 void HsPropertyAnimationWrapper::stop()
   106 {
   107 {
   107     mImpl->mPropertyAnimation->stop();
   108     mImpl->mPropertyAnimation->stop();
   108 }
   109 }
   109 
   110 
       
   111 /*!
       
   112 
       
   113 */
       
   114 void HsPropertyAnimationWrapper::setEasingCurve(const QEasingCurve &curve)
       
   115 {
       
   116     mImpl->mPropertyAnimation->setEasingCurve(curve);
       
   117 }
       
   118