01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others. All rights reserved.
03: * The contents of this file are made available under the terms
04: * of the GNU Lesser General Public License (LGPL) Version 2.1 that
05: * accompanies this distribution (lgpl-v21.txt). The LGPL is also
06: * available at http://www.gnu.org/licenses/lgpl.html. If the version
07: * of the LGPL at http://www.gnu.org is different to the version of
08: * the LGPL accompanying this distribution and there is any conflict
09: * between the two license versions, the terms of the LGPL accompanying
10: * this distribution shall govern.
11: *
12: * Contributors:
13: * IBM Corporation - initial API and implementation
14: *******************************************************************************/package org.eclipse.swt.internal.accessibility.gtk;
15:
16: public class AtkObjectClass {
17: public int /*long*/get_name;
18: public int /*long*/get_description;
19: public int /*long*/get_parent;
20: public int /*long*/get_n_children;
21: public int /*long*/ref_child;
22: public int /*long*/get_index_in_parent;
23: public int /*long*/ref_relation_set;
24: public int /*long*/get_role;
25: public int /*long*/get_layer;
26: public int /*long*/get_mdi_zorder;
27: public int /*long*/ref_state_set;
28: public int /*long*/set_name;
29: public int /*long*/set_description;
30: public int /*long*/set_parent;
31: public int /*long*/set_role;
32: public int /*long*/connect_property_change_handler;
33: public int /*long*/remove_property_change_handler;
34: public int /*long*/initialize;
35: public int /*long*/children_changed;
36: public int /*long*/focus_event;
37: public int /*long*/property_change;
38: public int /*long*/state_change;
39: public int /*long*/visible_data_changed;
40: }
|