X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fitem-view%2Fitem-layout.h;h=51f051afa9244385e8170865f0dbdb094ab13c92;hp=2ed5f1ed78a4162083932e2b1d855b4f0c3d571f;hb=49d580c961f791d759850f3601321884516d5512;hpb=511ab5d892c68a8bbbc3846e85fc5ec8f7323470 diff --git a/dali-toolkit/public-api/controls/scrollable/item-view/item-layout.h b/dali-toolkit/public-api/controls/scrollable/item-view/item-layout.h index 2ed5f1e..51f051a 100644 --- a/dali-toolkit/public-api/controls/scrollable/item-view/item-layout.h +++ b/dali-toolkit/public-api/controls/scrollable/item-view/item-layout.h @@ -30,6 +30,10 @@ namespace Dali namespace Toolkit { +/** + * @addtogroup dali_toolkit_controls_item_view + * @{ + */ class ItemLayout; @@ -244,17 +248,6 @@ public: virtual void GetDefaultItemSize( unsigned int itemId, const Vector3& layoutSize, Vector3& itemSize ) const = 0; /** - * @brief Retrieve the resize animation in the layout. - * - * @note This allows the layout to provide its own resize animation. - * @param[in] animation The resize animation, not owned by the layout - * @param[in] actor The actor to animate - * @param [in] size The target size. - * @param [in] durationSeconds The duration of the resizing. - */ - virtual void GetResizeAnimation(Animation& animation, Actor actor, Vector3 size, float durationSeconds) const = 0; - - /** * @brief Query the scroll direction of the layout. * * When an input gesture follows this direction, the layout-position of items will be increased. @@ -357,12 +350,27 @@ protected: */ DALI_IMPORT_API ItemLayout(); +private: + + /** + * Don't allow copy constructor + */ + ItemLayout( const ItemLayout& handle ); + + /** + * Don't allow copy operator + */ + ItemLayout& operator=( const ItemLayout& handle ); + protected: struct Impl; Impl* mImpl; }; +/** + * @} + */ } // namespace Toolkit } // namespace Dali