Make FlexContainer as public API
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / flex-container / flex-container.h
@@ -98,6 +98,7 @@ class FlexContainer;
  *     "flexMargin":[10, 10, 10, 10]    // property to specify the space around the item.
  *   }
  * @endcode
+ * @SINCE_1_1.35
  */
 
 class DALI_IMPORT_API FlexContainer : public Control
@@ -107,139 +108,161 @@ public:
   /**
    * @brief The direction of the main axis in the flex container. This determines
    * the direction that flex items are laid out in the flex container.
+   * @SINCE_1_1.35
    */
   enum FlexDirection
   {
-    COLUMN,                  ///< The flexible items are displayed vertically as a column
-    COLUMN_REVERSE,          ///< The flexible items are displayed vertically as a column, but in reverse order
-    ROW,                     ///< The flexible items are displayed horizontally as a row
-    ROW_REVERSE              ///< The flexible items are displayed horizontally as a row, but in reverse order
+    COLUMN,                  ///< The flexible items are displayed vertically as a column @SINCE_1_1.35
+    COLUMN_REVERSE,          ///< The flexible items are displayed vertically as a column, but in reverse order @SINCE_1_1.35
+    ROW,                     ///< The flexible items are displayed horizontally as a row @SINCE_1_1.35
+    ROW_REVERSE              ///< The flexible items are displayed horizontally as a row, but in reverse order @SINCE_1_1.35
   };
 
   /**
    * @brief The primary direction in which content is ordered in the flex container
    * and on which sides the “start” and “end” are.
+   * @SINCE_1_1.35
    */
   enum ContentDirection
   {
-    INHERIT,                 ///< Inherits the same direction from the parent
-    LTR,                     ///< From left to right
-    RTL                      ///< From right to left
+    INHERIT,                 ///< Inherits the same direction from the parent @SINCE_1_1.35
+    LTR,                     ///< From left to right @SINCE_1_1.35
+    RTL                      ///< From right to left @SINCE_1_1.35
   };
 
   /**
    * @brief Alignment of the flex items when the items do not use all available
    * space on the main-axis.
+   * @SINCE_1_1.35
    */
   enum Justification
   {
-    JUSTIFY_FLEX_START,      ///< Items are positioned at the beginning of the container
-    JUSTIFY_CENTER,          ///< Items are positioned at the center of the container
-    JUSTIFY_FLEX_END,        ///< Items are positioned at the end of the container
-    JUSTIFY_SPACE_BETWEEN,   ///< Items are positioned with equal space between the lines
-    JUSTIFY_SPACE_AROUND     ///< Items are positioned with equal space before, between, and after the lines
+    JUSTIFY_FLEX_START,      ///< Items are positioned at the beginning of the container @SINCE_1_1.35
+    JUSTIFY_CENTER,          ///< Items are positioned at the center of the container @SINCE_1_1.35
+    JUSTIFY_FLEX_END,        ///< Items are positioned at the end of the container @SINCE_1_1.35
+    JUSTIFY_SPACE_BETWEEN,   ///< Items are positioned with equal space between the lines @SINCE_1_1.35
+    JUSTIFY_SPACE_AROUND     ///< Items are positioned with equal space before, between, and after the lines @SINCE_1_1.35
   };
 
   /**
    * @brief Alignment of the flex items or lines when the items or lines do not
    * use all available space on the cross-axis.
+   * @SINCE_1_1.35
    */
   enum Alignment
   {
-    ALIGN_AUTO,              ///< Inherits the same alignment from the parent (only valid for "alignSelf" property)
-    ALIGN_FLEX_START,        ///< At the beginning of the container
-    ALIGN_CENTER,            ///< At the center of the container
-    ALIGN_FLEX_END,          ///< At the end of the container
-    ALIGN_STRETCH            ///< Stretch to fit the container
+    ALIGN_AUTO,              ///< Inherits the same alignment from the parent (only valid for "alignSelf" property) @SINCE_1_1.35
+    ALIGN_FLEX_START,        ///< At the beginning of the container @SINCE_1_1.35
+    ALIGN_CENTER,            ///< At the center of the container @SINCE_1_1.35
+    ALIGN_FLEX_END,          ///< At the end of the container @SINCE_1_1.35
+    ALIGN_STRETCH            ///< Stretch to fit the container @SINCE_1_1.35
   };
 
   /**
    * @brief The wrap type of the flex container when there is no enough room for
    * all the items on one flex line.
+   * @SINCE_1_1.35
    */
   enum WrapType
   {
-    NO_WRAP,                 ///< Flex items laid out in single line (shrunk to fit the flex container along the main axis)
-    WRAP                     ///< Flex items laid out in multiple lines if needed
+    NO_WRAP,                 ///< Flex items laid out in single line (shrunk to fit the flex container along the main axis) @SINCE_1_1.35
+    WRAP                     ///< Flex items laid out in multiple lines if needed @SINCE_1_1.35
   };
 
 public:
 
   /**
    * @brief The start and end property ranges for this control.
+   * @SINCE_1_1.35
    */
   enum PropertyRange
   {
-    PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1,
-    PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000,                           ///< Reserve property indices
+    PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1,               ///< @SINCE_1_1.35
+    PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000,                           ///< Reserve property indices @SINCE_1_1.35
 
-    CHILD_PROPERTY_START_INDEX = CHILD_PROPERTY_REGISTRATION_START_INDEX,
-    CHILD_PROPERTY_END_INDEX =   CHILD_PROPERTY_REGISTRATION_START_INDEX + 1000   ///< Reserve child property indices
+    CHILD_PROPERTY_START_INDEX = CHILD_PROPERTY_REGISTRATION_START_INDEX,         ///< @SINCE_1_1.35
+    CHILD_PROPERTY_END_INDEX =   CHILD_PROPERTY_REGISTRATION_START_INDEX + 1000   ///< Reserve child property indices @SINCE_1_1.35
   };
 
   /**
    * @brief An enumeration of properties belonging to the FlexContainer class.
+   * @SINCE_1_1.35
    */
   struct Property
   {
     enum
     {
-      CONTENT_DIRECTION = PROPERTY_START_INDEX, ///< name "contentDirection",   The primary direction in which content is ordered,                                                 @see FlexContainer::ContentDirection,  type INTEGER
-      FLEX_DIRECTION,                           ///< name "flexDirection",      The direction of the main-axis which determines the direction that flex items are laid out,        @see FlexContainer::FlexDirection,     type INTEGER
-      FLEX_WRAP,                                ///< name "flexWrap",           Whether the flex items should wrap or not if there is no enough room for them on one flex line,    @see FlexContainer::WrapType,          type INTEGER
-      JUSTIFY_CONTENT,                          ///< name "justifyContent",     The alignment of flex items when the items do not use all available space on the main-axis,        @see FlexContainer::Justification,     type INTEGER
-      ALIGN_ITEMS,                              ///< name "alignItems",         The alignment of flex items when the items do not use all available space on the cross-axis,       @see FlexContainer::Alignment,         type INTEGER
-      ALIGN_CONTENT                             ///< name "alignContent",       Similar to "alignItems", but it aligns flex lines, so only works when there are multiple lines,    @see FlexContainer::Alignment,         type INTEGER
+      // Event side properties
+      CONTENT_DIRECTION = PROPERTY_START_INDEX, ///< name "contentDirection",   The primary direction in which content is ordered,                                                 @see FlexContainer::ContentDirection,  type INTEGER @SINCE_1_1.35
+      FLEX_DIRECTION,                           ///< name "flexDirection",      The direction of the main-axis which determines the direction that flex items are laid out,        @see FlexContainer::FlexDirection,     type INTEGER @SINCE_1_1.35
+      FLEX_WRAP,                                ///< name "flexWrap",           Whether the flex items should wrap or not if there is no enough room for them on one flex line,    @see FlexContainer::WrapType,          type INTEGER @SINCE_1_1.35
+      JUSTIFY_CONTENT,                          ///< name "justifyContent",     The alignment of flex items when the items do not use all available space on the main-axis,        @see FlexContainer::Justification,     type INTEGER @SINCE_1_1.35
+      ALIGN_ITEMS,                              ///< name "alignItems",         The alignment of flex items when the items do not use all available space on the cross-axis,       @see FlexContainer::Alignment,         type INTEGER @SINCE_1_1.35
+      ALIGN_CONTENT                             ///< name "alignContent",       Similar to "alignItems", but it aligns flex lines, so only works when there are multiple lines,    @see FlexContainer::Alignment,         type INTEGER @SINCE_1_1.35
     };
   };
 
   /**
    * @brief An enumeration of child properties belonging to the FlexContainer class.
+   * @SINCE_1_1.35
    */
   struct ChildProperty
   {
     enum
     {
       // Event side child properties
-      FLEX = CHILD_PROPERTY_START_INDEX,        ///< name "flex",               The proportion of the free space in the container the flex item will receive. If all items in the container set this property, their sizes will be proportional to the specified flex factor,  type FLOAT
-      ALIGN_SELF,                               ///< name "alignSelf",          The alignment of the flex item along the cross axis, which, if set, overides the default alignment for all items in the container,                          @see FlexContainer::Alignment,     type INTEGER
-      FLEX_MARGIN                               ///< name "flexMargin",         The space around the flex item,                                                                                                                                                                type VECTOR4
+      FLEX = CHILD_PROPERTY_START_INDEX,        ///< name "flex",               The proportion of the free space in the container the flex item will receive. If all items in the container set this property, their sizes will be proportional to the specified flex factor,  type FLOAT @SINCE_1_1.35
+      ALIGN_SELF,                               ///< name "alignSelf",          The alignment of the flex item along the cross axis, which, if set, overides the default alignment for all items in the container,                          @see FlexContainer::Alignment,     type INTEGER @SINCE_1_1.35
+      FLEX_MARGIN                               ///< name "flexMargin",         The space around the flex item,                                                                                                                                                                type VECTOR4 @SINCE_1_1.35
     };
   };
 
   /**
    * @brief Create a FlexContainer handle; this can be initialised with FlexContainer::New()
    * Calling member functions with an uninitialised handle is not allowed.
+   * @SINCE_1_1.35
    */
   FlexContainer();
 
   /**
-   * Copy constructor. Creates another handle that points to the same real object
-   * @param handle to copy from
+   * @brief Copy constructor. Creates another handle that points to the same real object
+   * @SINCE_1_1.35
+   *
+   * @param[in] handle The handle to copy from
    */
   FlexContainer( const FlexContainer& handle );
 
   /**
-   * Assignment operator. Changes this handle to point to another real object
+   * @brief Assignment operator. Changes this handle to point to another real object
+   * @SINCE_1_1.35
    */
   FlexContainer& operator=( const FlexContainer& handle );
 
   /**
    * @brief Destructor
    *
-   * This is non-virtual since derived Handle types must not contain data or virtual methods.
+   * @details This is non-virtual since derived Handle types must not contain data or virtual methods.
+   *
+   * @SINCE_1_1.35
    */
   ~FlexContainer();
 
   /**
-   * Create the FlexContainer control.
+   * @brief Create the FlexContainer control.
+   * @SINCE_1_1.35
+   *
    * @return A handle to the FlexContainer control.
    */
   static FlexContainer New();
 
   /**
-   * Downcast an Object handle to FlexContainer. If handle points to a FlexContainer the
-   * downcast produces valid handle. If not the returned handle is left uninitialized.
+   * @brief Downcast an Object handle to FlexContainer.
+   *
+   * @details If handle points to a FlexContainer the downcast produces
+   * valid handle. If not the returned handle is left uninitialized.
+   *
+   * @SINCE_1_1.35
+   *
    * @param[in] handle Handle to an object
    * @return handle to a FlexContainer or an uninitialized handle
    */
@@ -250,6 +273,7 @@ public: // Not intended for application developers
 
   /**
    * @brief Creates a handle using the Toolkit::Internal implementation.
+   * @SINCE_1_1.35
    *
    * @param[in] implementation The Control implementation.
    */
@@ -257,6 +281,7 @@ public: // Not intended for application developers
 
   /**
    * @brief Allows the creation of this Control from an Internal::CustomActor pointer.
+   * @SINCE_1_1.35
    *
    * @param[in] internal A pointer to the internal CustomActor.
    */