summaryrefslogtreecommitdiff
path: root/atk/atktablecell.c
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2014-02-18 18:56:44 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2014-02-18 18:56:44 +0100
commitde1865db60097bda92af09fd8ef43b96636e5cc4 (patch)
tree0c72a7d6ef012ec9c566fe990211a3163dc02b02 /atk/atktablecell.c
parentfdf5f9c1cb5af00fd9a85534bc1460fa3d2869e1 (diff)
downloadatk-de1865db60097bda92af09fd8ef43b96636e5cc4.tar.gz
doc: more AtkTableCell documentation
* Adds when the symbols were added. * Document the interface virtual methods.
Diffstat (limited to 'atk/atktablecell.c')
-rw-r--r--atk/atktablecell.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/atk/atktablecell.c b/atk/atktablecell.c
index 9218b09..7a07c7b 100644
--- a/atk/atktablecell.c
+++ b/atk/atktablecell.c
@@ -56,6 +56,8 @@ atk_table_cell_default_init (AtkTableCellInterface *iface)
*
* Returns: a gint representing the number of columns occupied by this cell,
* or 0 if the cell does not implement this method.
+ *
+ * Since: 2.12
*/
gint
atk_table_cell_get_column_span (AtkTableCell *cell)
@@ -80,6 +82,8 @@ atk_table_cell_get_column_span (AtkTableCell *cell)
*
* Returns: (element-type AtkObject) (transfer full): a GPtrArray of AtkObjects
* representing the column header cells.
+ *
+ * Since: 2.12
*/
GPtrArray *
atk_table_cell_get_column_header_cells (AtkTableCell *cell)
@@ -105,6 +109,8 @@ atk_table_cell_get_column_header_cells (AtkTableCell *cell)
* Retrieves the tabular position of this cell.
*
* Returns: TRUE if successful; FALSE otherwise.
+ *
+ * Since: 2.12
*/
gboolean
atk_table_cell_get_position (AtkTableCell *cell,
@@ -137,6 +143,8 @@ atk_table_cell_get_position (AtkTableCell *cell,
*
* Returns: a gint representing the number of rows occupied by this cell,
* or 0 if the cell does not implement this method.
+ *
+ * Since: 2.12
*/
gint
atk_table_cell_get_row_span (AtkTableCell *cell)
@@ -161,6 +169,8 @@ atk_table_cell_get_row_span (AtkTableCell *cell)
*
* Returns: (element-type AtkObject) (transfer full): a GPtrArray of AtkObjects
* representing the row header cells.
+ *
+ * Since: 2.12
*/
GPtrArray *
atk_table_cell_get_row_header_cells (AtkTableCell *cell)
@@ -192,6 +202,8 @@ atk_table_cell_get_row_header_cells (AtkTableCell *cell)
* on the object.
*
* Returns: TRUE if successful; FALSE otherwise.
+ *
+ * Since: 2.12
*/
gboolean
atk_table_cell_get_row_column_span (AtkTableCell *cell,
@@ -230,6 +242,8 @@ atk_table_cell_get_row_column_span (AtkTableCell *cell,
* Returns a reference to the accessible of the containing table.
*
* Returns: (transfer full): the atk object for the containing table.
+ *
+ * Since: 2.12
*/
AtkObject *
atk_table_cell_get_table (AtkTableCell *cell)