X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fitem-view%2Fdefault-item-layout.h;h=8a880ac5456f52df335d67ffafda426a9484a735;hb=c1481543c3334342110f9a4635292d0eff1d15b7;hp=6f4eb00d6faa29643c9ca5a3e09eb29bde82a6d2;hpb=9781441fa162e32e5796658d4169387a3ffb5d88;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/scrollable/item-view/default-item-layout.h b/dali-toolkit/public-api/controls/scrollable/item-view/default-item-layout.h index 6f4eb00..8a880ac 100644 --- a/dali-toolkit/public-api/controls/scrollable/item-view/default-item-layout.h +++ b/dali-toolkit/public-api/controls/scrollable/item-view/default-item-layout.h @@ -26,29 +26,44 @@ namespace Dali namespace Toolkit { +/** + * @addtogroup dali_toolkit_controls_item_view + * @{ + */ +/** + * @brief Enumeration for default item layout mode. + * @SINCE_1_0.0 + */ namespace DefaultItemLayout { +/** + * @brief Enumeration for the type of DefaultItemLayout + * @SINCE_1_0.0 + */ enum Type { - DEPTH, ///< Items arranged in a grid, scrolling along the Z-Axis. - GRID, ///< Items arranged in a grid, scrolling along the Y-Axis. - LIST, ///< One item per line, scrolling along the Y-Axis. - SPIRAL ///< Items arranged in a spiral, centered around the Y-Axis. + DEPTH, ///< Items arranged in a grid, scrolling along the Z-Axis. @SINCE_1_0.0 + GRID, ///< Items arranged in a grid, scrolling along the Y-Axis. @SINCE_1_0.0 + LIST, ///< One item per line, scrolling along the Y-Axis. @SINCE_1_0.0 + SPIRAL ///< Items arranged in a spiral, centered around the Y-Axis. @SINCE_1_0.0 }; /** - * @brief Creates a built-in default item-layout - * - * @param[in] type The type of layout required. + * @brief Creates a built-in default item-layout. * - * @return An ItemLayoutPtr to the newly created layout. + * @SINCE_1_0.0 + * @param[in] type The type of layout required + * @return An ItemLayoutPtr to the newly created layout */ DALI_IMPORT_API ItemLayoutPtr New( Type type ); } // namespace DefaultItemLayout +/** + * @} + */ } // namespace Toolkit } // namespace Dali