1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/*
* AT-SPI - Assistive Technology Service Provider Interface
* (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
*
* Copyright 2002 Ximian, Inc.
* 2002 Sun Microsystems Inc.
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef _ATSPI_TABLE_H_
#define _ATSPI_TABLE_H_
#include "glib-object.h"
#include "atspi-constants.h"
#include "atspi-types.h"
#define ATSPI_TYPE_TABLE (atspi_table_get_type ())
#define ATSPI_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_TABLE)
#define ATSPI_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_TABLE, AtspiTable)
#define ATSPI_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_TABLE, AtspiTable))
GType atspi_table_get_type ();
struct _AtspiTable
{
GTypeInterface parent;
};
AtspiAccessible * atspi_table_get_caption (AtspiTable *obj, GError **error);
AtspiAccessible * atspi_table_get_summary (AtspiTable *obj, GError **error);
gint atspi_table_get_n_rows (AtspiTable *obj, GError **error);
gint atspi_table_get_n_columns (AtspiTable *obj, GError **error);
AtspiAccessible * atspi_table_get_accessible_at (AtspiTable *obj, gint row, gint column, GError **error);
gint atspi_table_get_index_at (AtspiTable *obj, gint row, gint column, GError **error);
gint atspi_table_get_row_at_index (AtspiTable *obj, gint index, GError **error);
gint atspi_table_get_column_at_index (AtspiTable *obj, gint index, GError **error);
gchar * atspi_table_get_row_description (AtspiTable *obj, gint row, GError **error);
gchar * atspi_table_get_column_description (AtspiTable *obj, gint column, GError **error);
gint
atspi_table_get_row_extent_at (AtspiTable *obj, gint row, gint column, GError **error);
gint
atspi_table_get_column_extent_at (AtspiTable *obj, gint row, gint column, GError **error);
AtspiAccessible * atspi_table_get_row_header (AtspiTable *obj, gint row, GError **error);
AtspiAccessible * atspi_table_get_column_header (AtspiTable *obj, gint column, GError **error);
gint atspi_table_get_n_selected_rows (AtspiTable *obj, GError **error);
GArray *atspi_table_get_selected_rows (AtspiTable *obj, GError **error);
GArray * atspi_table_get_selected_columns (AtspiTable *obj, GError **error);
gint atspi_table_get_n_selected_columns (AtspiTable *obj, GError **error);
gboolean atspi_table_is_row_selected (AtspiTable *obj, gint row, GError **error);
gboolean atspi_table_is_column_selected (AtspiTable *obj, gint column, GError **error);
gboolean atspi_table_add_row_selection (AtspiTable *obj, gint row, GError **error);
gboolean atspi_table_add_column_selection (AtspiTable *obj, gint column, GError **error);
gboolean atspi_table_remove_row_selection (AtspiTable *obj, gint row, GError **error);
gboolean atspi_table_remove_column_selection (AtspiTable *obj, gint column, GError **error);
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);
gboolean atspi_table_is_selected (AtspiTable *obj, gint row, gint column, GError **error);
#endif /* _ATSPI_TABLE_H_ */
|