X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fscrollable%2Fitem-view%2Fdepth-layout.h;h=a59b7fe546a824d93b83bf692438e257f58dde2f;hb=db152116b8c7de79b206d7d361c9d3875d05d0ac;hp=c1f18f9bdcd76da69e29a412129ebc23ad3da719;hpb=c3f7ea6cb0c0b75c2276193aff88b5c7a679a2d5;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/scrollable/item-view/depth-layout.h b/dali-toolkit/internal/controls/scrollable/item-view/depth-layout.h old mode 100644 new mode 100755 index c1f18f9..a59b7fe --- a/dali-toolkit/internal/controls/scrollable/item-view/depth-layout.h +++ b/dali-toolkit/internal/controls/scrollable/item-view/depth-layout.h @@ -21,6 +21,8 @@ // INTERNAL INCLUDES #include + + namespace Dali { @@ -52,6 +54,12 @@ public: virtual ~DepthLayout(); /** + * Apply depth layout Properties. + * @param[in] properties The properties of the layout. + */ + void SetDepthLayoutProperties(const Property::Map& properties); + + /** * Set the number of columns in the layout. * @param[in] columns The number of columns. */ @@ -191,11 +199,6 @@ private: virtual void GetDefaultItemSize( unsigned int itemId, const Vector3& layoutSize, Vector3& itemSize ) const; /** - * @copydoc ItemLayout::GetResizeAnimation() - */ - virtual void GetResizeAnimation(Animation& animation, Actor actor, Vector3 size, float durationSeconds) const; - - /** * @copydoc ItemLayout::GetScrollDirection() */ virtual Degree GetScrollDirection() const; @@ -219,6 +222,14 @@ protected: private: + // Undefined + DepthLayout( const DepthLayout& depthLayout ); + + // Undefined + DepthLayout& operator=( const DepthLayout& depthLayout ); + +private: + struct Impl; Impl* mImpl; };