X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fvideo-view%2Fvideo-view-impl.h;h=1f58785b3521ed7877969cac64607899dbe4ac31;hp=d5a498a833af174a40ef609737e61b58b5fbde1c;hb=ee0a1565d8a52fafc20e2c5beab39db93dcd427b;hpb=bc5e9a0b52e07309fd557deb212333d1798109f3 diff --git a/dali-toolkit/internal/controls/video-view/video-view-impl.h b/dali-toolkit/internal/controls/video-view/video-view-impl.h index d5a498a..1f58785 100644 --- a/dali-toolkit/internal/controls/video-view/video-view-impl.h +++ b/dali-toolkit/internal/controls/video-view/video-view-impl.h @@ -23,6 +23,8 @@ #include #include #include +#include +#include // INTERNAL INCLUDES #include @@ -210,7 +212,7 @@ public: /** * @brief Updates video display area for window rendering target */ - void UpdateDisplayArea(); + void UpdateDisplayArea( Dali::PropertyNotification& source ); /** * @brief Sets underlay flag and initializes new rendering target by flag. @@ -222,6 +224,21 @@ public: */ bool IsUnderlay(); + /** + * @brief Sets sw codec type. + */ + void SetSWCodec( bool on ); + + /** + * @brief Gets play position. + */ + int GetPlayPosition(); + + /** + * @brief Sets play position. + */ + void SetPlayPosition( int pos ); + private: // From Control /** @@ -276,13 +293,12 @@ private: std::string mUrl; Dali::DisplayArea mDisplayArea; Dali::Renderer mRenderer; - - Property::Index mUpdateTriggerPropertyIndex; - TriggerEventInterface* mNotification; + Dali::PropertyNotification mPositionUpdateNotification; + Dali::PropertyNotification mSizeUpdateNotification; + Dali::PropertyNotification mScaleUpdateNotification; int mCurrentVideoPlayPosition; bool mIsPlay; - bool mIsPause; bool mIsUnderlay; };