]> Pileus Git - ~andy/gtk/blob - gtk/gtktexttypes.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtktexttypes.h
1 /* GTK - The GIMP Toolkit
2  * gtktexttypes.h Copyright (C) 2000 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser 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.
8  *
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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 #ifndef __GTK_TEXT_TYPES_H__
26 #define __GTK_TEXT_TYPES_H__
27
28 #include <gtk/gtk.h>
29 #include <gtk/gtktexttagprivate.h>
30
31 G_BEGIN_DECLS
32
33 typedef struct _GtkTextCounter GtkTextCounter;
34 typedef struct _GtkTextLineSegment GtkTextLineSegment;
35 typedef struct _GtkTextLineSegmentClass GtkTextLineSegmentClass;
36 typedef struct _GtkTextToggleBody GtkTextToggleBody;
37 typedef struct _GtkTextMarkBody GtkTextMarkBody;
38
39 /*
40  * Declarations for variables shared among the text-related files:
41  */
42
43 /* In gtktextbtree.c */
44 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_char_type;
45 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_toggle_on_type;
46 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_toggle_off_type;
47
48 /* In gtktextmark.c */
49 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_left_mark_type;
50 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_right_mark_type;
51
52 /* In gtktextchild.c */
53 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_pixbuf_type;
54 extern G_GNUC_INTERNAL const GtkTextLineSegmentClass gtk_text_child_type;
55
56 /*
57  * UTF 8 Stubs
58  */
59
60 #define GTK_TEXT_UNKNOWN_CHAR 0xFFFC
61 #define GTK_TEXT_UNKNOWN_CHAR_UTF8_LEN 3
62 const gchar *gtk_text_unknown_char_utf8_gtk_tests_only (void);
63 extern const gchar _gtk_text_unknown_char_utf8[GTK_TEXT_UNKNOWN_CHAR_UTF8_LEN+1];
64
65 gboolean gtk_text_byte_begins_utf8_char (const gchar *byte);
66
67 G_END_DECLS
68
69 #endif
70