X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Ftable-view%2Ftable-view.h;h=8af9427d965a8b2e62773dcb4f0b7413ca914782;hp=b043d402873916a2cca3089ef01f1afaad148c6c;hb=f4a28993f3f77f15015e5c9b4e1bedd06e23b926;hpb=2cf32ac170f397aacce527efd34909b3fd62efda diff --git a/dali-toolkit/public-api/controls/table-view/table-view.h b/dali-toolkit/public-api/controls/table-view/table-view.h index b043d40..8af9427 100644 --- a/dali-toolkit/public-api/controls/table-view/table-view.h +++ b/dali-toolkit/public-api/controls/table-view/table-view.h @@ -175,6 +175,10 @@ public: /** * @brief Constructor to initialise values to defaults for convenience * @SINCE_1_0.0 + * @param[in] rowIndex The row index initialized + * @param[in] columnIndex The column index initialized + * @param[in] rowSpan The row span initialized + * @param[in] columnSpan The column span initialized */ CellPosition( unsigned int rowIndex = 0, unsigned int columnIndex = 0, unsigned int rowSpan = 1, unsigned int columnSpan = 1 ) @@ -198,13 +202,15 @@ public: /** * @brief Copy constructor. Creates another handle that points to the same real object * @SINCE_1_0.0 - * @param handle to copy from + * @param[in] handle to copy from */ TableView( const TableView& handle ); /** * @brief Assignment operator. Changes this handle to point to another real object * @SINCE_1_0.0 + * @param[in] handle Handle to an object + * @return A reference to this */ TableView& operator=( const TableView& handle ); @@ -406,6 +412,7 @@ public: /** * @brief Gets a row's fixed height. * @SINCE_1_0.0 + * @param[in] rowIndex The row index with fixed height * @return height in world coordinate units. * @pre The row rowIndex must exist. * @note The returned value is valid if it has been set before. @@ -426,6 +433,7 @@ public: /** * @brief Gets a row's relative height. * @SINCE_1_0.0 + * @param[in] rowIndex The row index with relative height * @return height in percentage units, between 0.0f and 1.0f. * @pre The row rowIndex must exist. * @note The returned value is valid if it has been set before. @@ -445,6 +453,7 @@ public: /** * @brief Gets a column's fixed width. * @SINCE_1_0.0 + * @param[in] columnIndex The column index with fixed width * @return width in world coordinate units. * @pre The column columnIndex must exist. * @note The returned value is valid if it has been set before. @@ -465,6 +474,7 @@ public: /** * @brief Gets a column's relative width. * @SINCE_1_0.0 + * @param[in] columnIndex The column index with relative width * @return width in percentage units, between 0.0f and 1.0f. * @pre The column columnIndex must exist. * @note The returned value is valid if it has been set before.