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 AtkTextIface {
17: public int /*long*/get_text;
18: public int /*long*/get_text_after_offset;
19: public int /*long*/get_text_at_offset;
20: public int /*long*/get_character_at_offset;
21: public int /*long*/get_text_before_offset;
22: public int /*long*/get_caret_offset;
23: public int /*long*/get_run_attributes;
24: public int /*long*/get_default_attributes;
25: public int /*long*/get_character_extents;
26: public int /*long*/get_character_count;
27: public int /*long*/get_offset_at_point;
28: public int /*long*/get_n_selections;
29: public int /*long*/get_selection;
30: public int /*long*/add_selection;
31: public int /*long*/remove_selection;
32: public int /*long*/set_selection;
33: public int /*long*/set_caret_offset;
34: public int /*long*/text_changed;
35: public int /*long*/text_caret_moved;
36: public int /*long*/text_selection_changed;
37: }
|