File indexing completed on 2025-01-18 09:28:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 #ifndef _ATSPI_TABLE_H_
0027 #define _ATSPI_TABLE_H_
0028
0029 #include "glib-object.h"
0030
0031 #include "atspi-constants.h"
0032
0033 #include "atspi-types.h"
0034
0035 G_BEGIN_DECLS
0036
0037 #define ATSPI_TYPE_TABLE (atspi_table_get_type ())
0038 #define ATSPI_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_TABLE)
0039 #define ATSPI_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_TABLE, AtspiTable)
0040 #define ATSPI_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_TABLE, AtspiTable))
0041
0042 GType atspi_table_get_type ();
0043
0044 struct _AtspiTable
0045 {
0046 GTypeInterface parent;
0047 };
0048
0049 AtspiAccessible *atspi_table_get_caption (AtspiTable *obj, GError **error);
0050
0051 AtspiAccessible *atspi_table_get_summary (AtspiTable *obj, GError **error);
0052
0053 gint atspi_table_get_n_rows (AtspiTable *obj, GError **error);
0054
0055 gint atspi_table_get_n_columns (AtspiTable *obj, GError **error);
0056
0057 AtspiAccessible *atspi_table_get_accessible_at (AtspiTable *obj, gint row, gint column, GError **error);
0058
0059 gint atspi_table_get_index_at (AtspiTable *obj, gint row, gint column, GError **error);
0060
0061 gint atspi_table_get_row_at_index (AtspiTable *obj, gint index, GError **error);
0062
0063 gint atspi_table_get_column_at_index (AtspiTable *obj, gint index, GError **error);
0064
0065 gchar *atspi_table_get_row_description (AtspiTable *obj, gint row, GError **error);
0066
0067 gchar *atspi_table_get_column_description (AtspiTable *obj, gint column, GError **error);
0068
0069 gint
0070 atspi_table_get_row_extent_at (AtspiTable *obj, gint row, gint column, GError **error);
0071
0072 gint
0073 atspi_table_get_column_extent_at (AtspiTable *obj, gint row, gint column, GError **error);
0074
0075 AtspiAccessible *atspi_table_get_row_header (AtspiTable *obj, gint row, GError **error);
0076
0077 AtspiAccessible *atspi_table_get_column_header (AtspiTable *obj, gint column, GError **error);
0078
0079 gint atspi_table_get_n_selected_rows (AtspiTable *obj, GError **error);
0080
0081 GArray *atspi_table_get_selected_rows (AtspiTable *obj, GError **error);
0082
0083 GArray *atspi_table_get_selected_columns (AtspiTable *obj, GError **error);
0084
0085 gint atspi_table_get_n_selected_columns (AtspiTable *obj, GError **error);
0086
0087 gboolean atspi_table_is_row_selected (AtspiTable *obj, gint row, GError **error);
0088
0089 gboolean atspi_table_is_column_selected (AtspiTable *obj, gint column, GError **error);
0090
0091 gboolean atspi_table_add_row_selection (AtspiTable *obj, gint row, GError **error);
0092
0093 gboolean atspi_table_add_column_selection (AtspiTable *obj, gint column, GError **error);
0094
0095 gboolean atspi_table_remove_row_selection (AtspiTable *obj, gint row, GError **error);
0096
0097 gboolean atspi_table_remove_column_selection (AtspiTable *obj, gint column, GError **error);
0098
0099 gboolean atspi_table_get_row_column_extents_at_index (AtspiTable *obj, gint index, gint *row, gint *col, gint *row_extents, gint *col_extents, gboolean *is_selected, GError **error);
0100
0101 gboolean atspi_table_is_selected (AtspiTable *obj, gint row, gint column, GError **error);
0102
0103 G_END_DECLS
0104
0105 #endif