Skip to main content
summaryrefslogtreecommitdiffstats
blob: 812bc3f60ac5036f3b43c8cc23e158f7f712a0df (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2000, 2003 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.
 *******************************************************************************/
package org.eclipse.swt.internal.accessibility.gtk;


public class AtkObjectClass {
	public int /*long*/ get_name;
	public int /*long*/ get_description;
	public int /*long*/ get_parent;
	public int /*long*/ get_n_children;
	public int /*long*/ ref_child;
	public int /*long*/ get_index_in_parent;
	public int /*long*/ ref_relation_set;
	public int /*long*/ get_role;
	public int /*long*/ get_layer;
	public int /*long*/ get_mdi_zorder;
	public int /*long*/ ref_state_set;
	public int /*long*/ set_name;
	public int /*long*/ set_description;
	public int /*long*/ set_parent;
	public int /*long*/ set_role;
	public int /*long*/ connect_property_change_handler;
	public int /*long*/ remove_property_change_handler;
	public int /*long*/ initialize;
	public int /*long*/ children_changed;
	public int /*long*/ focus_event;
	public int /*long*/ property_change;
	public int /*long*/ state_change;
	public int /*long*/ visible_data_changed;
}

Back to the top