summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/accessibility/gtk/AtkTableIface.java
blob: f03d9266ea6e0314eedb5db3ee5620231849022e (plain)
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
/*******************************************************************************
 * Copyright (c) 2000, 2012 IBM Corporation and others. All rights reserved.
 * The contents of this file are made available under the terms
 * of the GNU Lesser General Public License (LGPL) Version 2.1 that
 * accompanies this distribution (lgpl-v21.txt).  The LGPL is also
 * available at http://www.gnu.org/licenses/lgpl.html.  If the version
 * of the LGPL at http://www.gnu.org is different to the version of
 * the LGPL accompanying this distribution and there is any conflict
 * between the two license versions, the terms of the LGPL accompanying
 * this distribution shall govern.
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.accessibility.gtk;


public class AtkTableIface {
	/** @field cast=(AtkObject* (*)()) */
	public int /*long*/ ref_at;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_index_at;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_column_at_index;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_row_at_index;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_n_columns;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_n_rows;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_column_extent_at;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_row_extent_at;
	/** @field cast=(AtkObject* (*)()) */
	public int /*long*/ get_caption;
	/** @field cast=(const gchar* (*)()) */
	public int /*long*/ get_column_description;
	/** @field cast=(AtkObject* (*)()) */
	public int /*long*/ get_column_header;
	/** @field cast=(const gchar* (*)()) */
	public int /*long*/ get_row_description;
	/** @field cast=(AtkObject* (*)()) */
	public int /*long*/ get_row_header;
	/** @field cast=(AtkObject* (*)()) */
	public int /*long*/ get_summary;
	/** @field cast=(void (*)()) */
	public int /*long*/ set_caption;
	/** @field cast=(void (*)()) */
	public int /*long*/ set_column_description;
	/** @field cast=(void (*)()) */
	public int /*long*/ set_column_header;
	/** @field cast=(void (*)()) */
	public int /*long*/ set_row_description;
	/** @field cast=(void (*)()) */
	public int /*long*/ set_row_header;
	/** @field cast=(void (*)()) */
	public int /*long*/ set_summary;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_selected_columns;
	/** @field cast=(gint (*)()) */
	public int /*long*/ get_selected_rows;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ is_column_selected;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ is_row_selected;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ is_selected;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ add_row_selection;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ remove_row_selection;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ add_column_selection;
	/** @field cast=(gboolean (*)()) */
	public int /*long*/ remove_column_selection;
	/** @field cast=(void (*)()) */
	public int /*long*/ row_inserted;
	/** @field cast=(void (*)()) */
	public int /*long*/ column_inserted;
	/** @field cast=(void (*)()) */
	public int /*long*/ row_deleted;
	/** @field cast=(void (*)()) */
	public int /*long*/ column_deleted;
	/** @field cast=(void (*)()) */
	public int /*long*/ row_reordered;
	/** @field cast=(void (*)()) */
	public int /*long*/ column_reordered;
	/** @field cast=(void (*)()) */
	public int /*long*/ model_changed;
}