1 /* ATK - The Accessibility Toolkit for GTK+
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.
21 #ifndef __ATK_TEXT_H__
22 #define __ATK_TEXT_H__
24 #include <glib-object.h>
25 #include <atk/atkobject.h>
26 #include <atk/atkutil.h>
30 #endif /* __cplusplus */
34 *@ATK_TEXT_ATTR_INVALID: Invalid attribute
35 *@ATK_TEXT_ATTR_LEFT_MARGIN: The pixel width of the left margin
36 *@ATK_TEXT_ATTR_RIGHT_MARGIN: The pixel width of the right margin
37 *@ATK_TEXT_ATTR_INDENT: The number of pixels that the text is indented
38 *@ATK_TEXT_ATTR_INVISIBLE: Either "true" or "false" indicating whether text is visible or not
39 *@ATK_TEXT_ATTR_EDITABLE: Either "true" or "false" indicating whether text is editable or not
40 *@ATK_TEXT_ATTR_PIXELS_ABOVE_LINES: Pixels of blank space to leave above each newline-terminated line.
41 *@ATK_TEXT_ATTR_PIXELS_BELOW_LINES: Pixels of blank space to leave below each newline-terminated line.
42 *@ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP: Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph).
43 *@ATK_TEXT_ATTR_BG_FULL_HEIGHT: "true" or "false" whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character.
44 *@ATK_TEXT_ATTR_RISE: Number of pixels that the characters are risen above the baseline
45 *@ATK_TEXT_ATTR_UNDERLINE: "none", "single", "double" or "low"
46 *@ATK_TEXT_ATTR_STRIKETHROUGH: "true" or "false" whether the text is strikethrough
47 *@ATK_TEXT_ATTR_SIZE: The size of the characters.
48 *@ATK_TEXT_ATTR_SCALE: The scale of the characters. The value is a string representation of a double
49 *@ATK_TEXT_ATTR_WEIGHT: The weight of the characters.
50 *@ATK_TEXT_ATTR_LANGUAGE: The language used
51 *@ATK_TEXT_ATTR_FAMILY_NAME: The font family name
52 *@ATK_TEXT_ATTR_BG_COLOR: The background color. The value is an RGB value of the format "%u,%u,%u"
53 *@ATK_TEXT_ATTR_FG_COLOR:The foreground color. The value is an RGB value of the format "%u,%u,%u"
54 *@ATK_TEXT_ATTR_BG_STIPPLE: "true" if a #GdkBitmap is set for stippling the background color.
55 *@ATK_TEXT_ATTR_FG_STIPPLE: "true" if a #GdkBitmap is set for stippling the foreground color.
56 *@ATK_TEXT_ATTR_WRAP_MODE: The wrap mode of the text, if any. Values are "none", "char" or "word"
57 *@ATK_TEXT_ATTR_DIRECTION: The direction of the text, if set. Values are "none", "ltr" or "rtl"
58 *@ATK_TEXT_ATTR_JUSTIFICATION: The justification of the text, if set. Values are "left", "right", "center" or "fill"
59 *@ATK_TEXT_ATTR_STRETCH: The stretch of the text, if set. Values are "ultra_condensed", "extra_condensed", "condensed", "semi_condensed", "normal", "semi_expanded", "expanded", "extra_expanded" or "ultra_expanded"
60 *@ATK_TEXT_ATTR_VARIANT: The capitalization variant of the text, if set. Values are "normal" or "small_caps"
61 *@ATK_TEXT_ATTR_STYLE: The slant style of the text, if set. Values are "normal", "oblique" or "italic"
62 *@ATK_TEXT_ATTR_LAST_DEFINED: not a valid text attribute, used for finding end of enumeration
64 * Describes the text attributes supported
68 ATK_TEXT_ATTR_INVALID = 0,
69 ATK_TEXT_ATTR_LEFT_MARGIN,
70 ATK_TEXT_ATTR_RIGHT_MARGIN,
72 ATK_TEXT_ATTR_INVISIBLE,
73 ATK_TEXT_ATTR_EDITABLE,
74 ATK_TEXT_ATTR_PIXELS_ABOVE_LINES,
75 ATK_TEXT_ATTR_PIXELS_BELOW_LINES,
76 ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP,
77 ATK_TEXT_ATTR_BG_FULL_HEIGHT,
79 ATK_TEXT_ATTR_UNDERLINE,
80 ATK_TEXT_ATTR_STRIKETHROUGH,
84 ATK_TEXT_ATTR_LANGUAGE,
85 ATK_TEXT_ATTR_FAMILY_NAME,
86 ATK_TEXT_ATTR_BG_COLOR,
87 ATK_TEXT_ATTR_FG_COLOR,
88 ATK_TEXT_ATTR_BG_STIPPLE,
89 ATK_TEXT_ATTR_FG_STIPPLE,
90 ATK_TEXT_ATTR_WRAP_MODE,
91 ATK_TEXT_ATTR_DIRECTION,
92 ATK_TEXT_ATTR_JUSTIFICATION,
93 ATK_TEXT_ATTR_STRETCH,
94 ATK_TEXT_ATTR_VARIANT,
96 ATK_TEXT_ATTR_LAST_DEFINED
99 AtkTextAttribute atk_text_attribute_register (const gchar *name);
102 #define ATK_TYPE_TEXT (atk_text_get_type ())
103 #define ATK_IS_TEXT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_TEXT)
104 #define ATK_TEXT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_TEXT, AtkText)
105 #define ATK_TEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_TEXT, AtkTextIface))
107 #ifndef _TYPEDEF_ATK_TEXT_
108 #define _TYPEDEF_ATK_TEXT_
109 typedef struct _AtkText AtkText;
111 typedef struct _AtkTextIface AtkTextIface;
115 *@ATK_TEXT_BOUNDARY_CHAR: Boundary is the boundary between characters
116 * (including non-printing characters)
117 *@ATK_TEXT_BOUNDARY_WORD_START: Boundary is the start (i.e. first character) of a word.
118 *@ATK_TEXT_BOUNDARY_WORD_END: Boundary is the end (i.e. last character) of a word.
119 *@ATK_TEXT_BOUNDARY_SENTENCE_START: Boundary is the first character in a sentence.
120 *@ATK_TEXT_BOUNDARY_SENTENCE_END: Boundary is the last (terminal) character in a sentence;
121 * in languages which use "sentence stop" punctuation such as English, the boundary is thus the
122 * '.', '?', or similar terminal punctuation character.
123 *@ATK_TEXT_BOUNDARY_LINE_START: Boundary is the initial character of the content or a
124 * character immediately following a newline, linefeed, or return character.
125 *@ATK_TEXT_BOUNDARY_LINE_END: Boundary is the linefeed, or return character.
127 *Text boundary types used for specifying boundaries for regions of text
130 ATK_TEXT_BOUNDARY_CHAR,
131 ATK_TEXT_BOUNDARY_WORD_START,
132 ATK_TEXT_BOUNDARY_WORD_END,
133 ATK_TEXT_BOUNDARY_SENTENCE_START,
134 ATK_TEXT_BOUNDARY_SENTENCE_END,
135 ATK_TEXT_BOUNDARY_LINE_START,
136 ATK_TEXT_BOUNDARY_LINE_END
141 * @x: The horizontal coordinate of a rectangle
142 * @y: The vertical coordinate of a rectangle
143 * @width: The width of a rectangle
144 * @height: The height of a rectangle
146 * A structure used to store a rectangle used by AtkText.
149 typedef struct _AtkTextRectangle AtkTextRectangle;
151 struct _AtkTextRectangle {
160 * @bounds: A rectangle giving the bounds of the text range
161 * @start_offset: The start offset of a AtkTextRange
162 * @end_offset: The end offset of a AtkTextRange
163 * @content: The text in the text range
165 * A structure used to describe a text range.
167 typedef struct _AtkTextRange AtkTextRange;
169 struct _AtkTextRange {
170 AtkTextRectangle bounds;
178 *@ATK_TEXT_CLIP_NONE: No clipping to be done
179 *@ATK_TEXT_CLIP_MIN: Text clipped by min coordinate is omitted
180 *@ATK_TEXT_CLIP_MAX: Text clipped by max coordinate is omitted
181 *@ATK_TEXT_CLIP_BOTH: Only text fully within mix/max bound is retained
183 *Describes the type of clipping required.
194 GTypeInterface parent;
196 gchar* (* get_text) (AtkText *text,
199 gchar* (* get_text_after_offset) (AtkText *text,
201 AtkTextBoundary boundary_type,
204 gchar* (* get_text_at_offset) (AtkText *text,
206 AtkTextBoundary boundary_type,
209 gunichar (* get_character_at_offset) (AtkText *text,
211 gchar* (* get_text_before_offset) (AtkText *text,
213 AtkTextBoundary boundary_type,
216 gint (* get_caret_offset) (AtkText *text);
217 AtkAttributeSet* (* get_run_attributes) (AtkText *text,
221 AtkAttributeSet* (* get_default_attributes) (AtkText *text);
222 void (* get_character_extents) (AtkText *text,
228 AtkCoordType coords);
229 gint (* get_character_count) (AtkText *text);
230 gint (* get_offset_at_point) (AtkText *text,
233 AtkCoordType coords);
234 gint (* get_n_selections) (AtkText *text);
235 gchar* (* get_selection) (AtkText *text,
239 gboolean (* add_selection) (AtkText *text,
242 gboolean (* remove_selection) (AtkText *text,
244 gboolean (* set_selection) (AtkText *text,
248 gboolean (* set_caret_offset) (AtkText *text,
254 void (* text_changed) (AtkText *text,
257 void (* text_caret_moved) (AtkText *text,
259 void (* text_selection_changed) (AtkText *text);
261 void (* text_attributes_changed) (AtkText *text);
264 void (* get_range_extents) (AtkText *text,
267 AtkCoordType coord_type,
268 AtkTextRectangle *rect);
270 AtkTextRange** (* get_bounded_ranges) (AtkText *text,
271 AtkTextRectangle *rect,
272 AtkCoordType coord_type,
273 AtkTextClipType x_clip_type,
274 AtkTextClipType y_clip_type);
280 GType atk_text_get_type (void);
284 * Additional AtkObject properties used by AtkText:
285 * "accessible_text" (accessible text has changed)
286 * "accessible_caret" (accessible text cursor position changed:
287 * editable text only)
290 gchar* atk_text_get_text (AtkText *text,
293 gunichar atk_text_get_character_at_offset (AtkText *text,
295 gchar* atk_text_get_text_after_offset (AtkText *text,
297 AtkTextBoundary boundary_type,
300 gchar* atk_text_get_text_at_offset (AtkText *text,
302 AtkTextBoundary boundary_type,
305 gchar* atk_text_get_text_before_offset (AtkText *text,
307 AtkTextBoundary boundary_type,
310 gint atk_text_get_caret_offset (AtkText *text);
311 void atk_text_get_character_extents (AtkText *text,
317 AtkCoordType coords);
318 AtkAttributeSet* atk_text_get_run_attributes (AtkText *text,
322 AtkAttributeSet* atk_text_get_default_attributes (AtkText *text);
323 gint atk_text_get_character_count (AtkText *text);
324 gint atk_text_get_offset_at_point (AtkText *text,
327 AtkCoordType coords);
328 gint atk_text_get_n_selections (AtkText *text);
329 gchar* atk_text_get_selection (AtkText *text,
333 gboolean atk_text_add_selection (AtkText *text,
336 gboolean atk_text_remove_selection (AtkText *text,
338 gboolean atk_text_set_selection (AtkText *text,
342 gboolean atk_text_set_caret_offset (AtkText *text,
344 void atk_text_get_range_extents (AtkText *text,
348 AtkCoordType coord_type,
349 AtkTextRectangle *rect);
350 AtkTextRange** atk_text_get_bounded_ranges (AtkText *text,
351 AtkTextRectangle *rect,
352 AtkCoordType coord_type,
353 AtkTextClipType x_clip_type,
354 AtkTextClipType y_clip_type);
355 void atk_text_free_ranges (AtkTextRange **ranges);
356 void atk_attribute_set_free (AtkAttributeSet *attrib_set);
357 G_CONST_RETURN gchar* atk_text_attribute_get_name (AtkTextAttribute attr);
358 AtkTextAttribute atk_text_attribute_for_name (const gchar *name);
359 G_CONST_RETURN gchar* atk_text_attribute_get_value (AtkTextAttribute attr,
364 #endif /* __cplusplus */
367 #endif /* __ATK_TEXT_H__ */