1 /* ATK - Accessibility Toolkit
2 * Copyright 2001 Sun Microsystems Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #ifndef __ATK_TABLE_H__
21 #define __ATK_TABLE_H__
23 #include <atk/atkobject.h>
27 #endif /* __cplusplus */
30 * AtkTable describes a user-interface component that presents data in
31 * two-dimensional table format.
35 #define ATK_TYPE_TABLE (atk_table_get_type ())
36 #define ATK_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_TABLE)
37 #define ATK_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_TABLE, AtkTable)
38 #define ATK_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_TABLE, AtkTableIface))
40 #ifndef _TYPEDEF_ATK_TABLE_
41 #define _TYPEDEF_ATK_TABLE_
42 typedef struct _AtkTable AtkTable;
44 typedef struct _AtkTableIface AtkTableIface;
48 GTypeInterface parent;
50 AtkObject* (* ref_at) (AtkTable *table,
53 gint (* get_index_at) (AtkTable *table,
56 gint (* get_row_at_index) (AtkTable *table,
58 gint (* get_column_at_index) (AtkTable *table,
60 AtkObject* (* get_caption) (AtkTable *table);
61 gint (* get_n_columns) (AtkTable *table);
62 AtkObject* (* get_column_description) (AtkTable *table,
64 gint (* get_column_extent_at) (AtkTable *table,
67 AtkTable* (* get_column_header) (AtkTable *table);
68 gint (* get_n_rows) (AtkTable *table);
69 AtkObject* (* get_row_description) (AtkTable *table,
71 gint (* get_row_extent_at) (AtkTable *table,
74 AtkTable* (* get_row_header) (AtkTable *table);
75 AtkObject* (* get_summary) (AtkTable *table);
76 gint* (* get_selected_columns) (AtkTable *table);
77 gint* (* get_selected_rows) (AtkTable *table);
78 gboolean (* is_column_selected) (AtkTable *table,
80 gboolean (* is_row_selected) (AtkTable *table,
82 gboolean (* is_selected) (AtkTable *table,
85 void (* set_caption) (AtkTable *table,
86 AtkObject *accessible);
87 void (* set_column_description) (AtkTable *table,
89 AtkObject *accessible);
90 void (* set_column_header) (AtkTable *table,
93 void (* set_row_description) (AtkTable *table,
95 AtkObject *accessible);
96 void (* set_row_header) (AtkTable *table,
99 void (* set_summary) (AtkTable *table,
100 AtkObject *accessible);
104 void (* model_changed) (AtkTable *table,
112 GType atk_table_get_type ();
114 AtkObject* atk_table_ref_at (AtkTable *table,
117 gint atk_table_get_index_at (AtkTable *table,
120 gint atk_table_get_row_at_index (AtkTable *table,
122 gint atk_table_get_column_at_index (AtkTable *table,
124 AtkObject* atk_table_get_caption (AtkTable *table);
125 gint atk_table_get_n_columns (AtkTable *table);
126 AtkObject* atk_table_get_column_description (AtkTable *table,
128 gint atk_table_get_column_extent_at (AtkTable *table,
131 AtkTable* atk_table_get_column_header (AtkTable *table);
132 gint atk_table_get_n_rows (AtkTable *table);
133 AtkObject* atk_table_get_row_description (AtkTable *table,
135 gint atk_table_get_row_extent_at (AtkTable *table,
138 AtkTable* atk_table_get_row_header (AtkTable *table);
139 AtkObject* atk_table_get_summary (AtkTable *table);
140 gint* atk_table_get_selected_columns (AtkTable *table);
141 gint* atk_table_get_selected_rows (AtkTable *table);
142 gboolean atk_table_is_column_selected (AtkTable *table,
144 gboolean atk_table_is_row_selected (AtkTable *table,
146 gboolean atk_table_is_selected (AtkTable *table,
149 void atk_table_set_caption (AtkTable *table,
150 AtkObject *accessible);
151 void atk_table_set_column_description (AtkTable *table,
153 AtkObject *accessible);
154 void atk_table_set_column_header (AtkTable *table,
157 void atk_table_set_row_description (AtkTable *table,
159 AtkObject *accessible);
160 void atk_table_set_row_header (AtkTable *table,
163 void atk_table_set_summary (AtkTable *table,
164 AtkObject *accessible);
168 #endif /* __cplusplus */
171 #endif /* __ATK_TABLE_H__ */