Removed unused member
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / video-view / video-view-impl.h
index 130d2c2..5f85a3f 100644 (file)
@@ -23,6 +23,8 @@
 #include <dali/public-api/images/native-image.h>
 #include <dali/devel-api/adaptor-framework/video-player.h>
 #include <dali/integration-api/adaptors/trigger-event-factory.h>
+#include <dali/public-api/object/property-notification.h>
+#include <dali/public-api/object/property-conditions.h>
 
 // INTERNAL INCLUDES
 #include <dali-toolkit/internal/visuals/image/image-visual.h>
@@ -207,10 +209,20 @@ public:
    */
   static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
 
-  /*
+  /**
    * @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.
+   */
+  void SetUnderlay( bool set );
+
+  /**
+   * @brief Checks underlay flag.
+   */
+  bool IsUnderlay();
 
 private: // From Control
 
@@ -265,14 +277,14 @@ private:
   Dali::Toolkit::VideoView::VideoViewSignalType mFinishedSignal;
   std::string mUrl;
   Dali::DisplayArea mDisplayArea;
-
-  Property::Index mUpdateTriggerPropertyIndex;
-  TriggerEventInterface* mNotification;
+  Dali::Renderer mRenderer;
+  Dali::PropertyNotification mPositionUpdateNotification;
+  Dali::PropertyNotification mSizeUpdateNotification;
+  Dali::PropertyNotification mScaleUpdateNotification;
 
   int mCurrentVideoPlayPosition;
-  bool mIsNativeImageTarget;
   bool mIsPlay;
-  bool mIsPause;
+  bool mIsUnderlay;
 };
 
 } // namespace Internal