[l10n] Updated Catalan (Valencian) translation
[platform/upstream/atk.git] / atk / atktablecell.h
old mode 100755 (executable)
new mode 100644 (file)
index ef4bfda..53d0dd7
  * Boston, MA 02111-1307, USA.
  */
 
+#ifndef __ATK_TABLE_CELL_H__
+#define __ATK_TABLE_CELL_H__
+
 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
 #error "Only <atk/atk.h> can be included directly."
 #endif
 
-#ifndef __ATK_TABLE_CELL_H__
-#define __ATK_TABLE_CELL_H__
-
 #include <atk/atkobject.h>
 
 G_BEGIN_DECLS
@@ -39,6 +39,23 @@ typedef struct _AtkTableCell AtkTableCell;
 #endif
 typedef struct _AtkTableCellIface AtkTableCellIface;
 
+/**
+ * AtkTableCellIface:
+ * @get_column_span: virtual function that returns the number of
+ * columns occupied by this cell accessible. @Since: 2.12
+ * @get_column_header_cells: virtual function that returns the column
+ * headers as an array of cell accessibles. @Since: 2.12
+ * @get_position: virtual function that retrieves the tabular position
+ * of this cell. @Since: 2.12
+ * @get_row_span: virtual function that returns the number of rows
+ * occupied by this cell. @Since: 2.12
+ * @get_row_header_cells: virtual function that returns the row
+ * headers as an array of cell accessibles. @Since: 2.12
+ * @get_row_column_span: virtual function that get the row an column
+ * indexes and span of this cell. @Since: 2.12
+ * @get_table: virtual function that returns a reference to the
+ * accessible of the containing table. @Since: 2.12
+ */
 struct _AtkTableCellIface
 {
   GTypeInterface parent;
@@ -58,20 +75,28 @@ struct _AtkTableCellIface
   AtkObject *   (*get_table)               (AtkTableCell *cell);
 };
 
+ATK_AVAILABLE_IN_2_12
 GType atk_table_cell_get_type (void);
 
+ATK_AVAILABLE_IN_2_12
 gint        atk_table_cell_get_column_span         (AtkTableCell *cell);
+ATK_AVAILABLE_IN_2_12
 GPtrArray * atk_table_cell_get_column_header_cells (AtkTableCell *cell);
+ATK_AVAILABLE_IN_2_12
 gboolean    atk_table_cell_get_position            (AtkTableCell *cell,
                                                     gint         *row,
                                                     gint         *column);
+ATK_AVAILABLE_IN_2_12
 gint        atk_table_cell_get_row_span            (AtkTableCell *cell);
+ATK_AVAILABLE_IN_2_12
 GPtrArray * atk_table_cell_get_row_header_cells    (AtkTableCell *cell);
+ATK_AVAILABLE_IN_2_12
 gboolean    atk_table_cell_get_row_column_span     (AtkTableCell *cell,
                                                     gint         *row,
                                                     gint         *column,
                                                     gint         *row_span,
                                                     gint         *column_span);
+ATK_AVAILABLE_IN_2_12
 AtkObject * atk_table_cell_get_table               (AtkTableCell *cell);
 
 G_END_DECLS