]> Pileus Git - ~andy/gtk/blob - gtk/gtktexttypes.h
Revert name change
[~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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #ifndef __GTK_TEXT_TYPES_H__
28 #define __GTK_TEXT_TYPES_H__
29
30 #include <gtk/gtk.h>
31 #include <gtk/gtktexttagprivate.h>
32
33 G_BEGIN_DECLS
34
35 typedef struct _GtkTextCounter GtkTextCounter;
36 typedef struct _GtkTextLineSegment GtkTextLineSegment;
37 typedef struct _GtkTextLineSegmentClass GtkTextLineSegmentClass;
38 typedef struct _GtkTextToggleBody GtkTextToggleBody;
39 typedef struct _GtkTextMarkBody GtkTextMarkBody;
40
41 /*
42  * Declarations for variables shared among the text-related files:
43  */
44
45 #ifdef G_OS_WIN32
46 #ifdef GTK_COMPILATION
47 #define VARIABLE __declspec(dllexport)
48 #else
49 #define VARIABLE extern __declspec(dllimport)
50 #endif
51 #else
52 #define VARIABLE extern
53 #endif
54
55 /* In gtktextbtree.c */
56 extern const GtkTextLineSegmentClass gtk_text_char_type;
57 extern const GtkTextLineSegmentClass gtk_text_toggle_on_type;
58 extern const GtkTextLineSegmentClass gtk_text_toggle_off_type;
59
60 /* In gtktextmark.c */
61 extern const GtkTextLineSegmentClass gtk_text_left_mark_type;
62 extern const GtkTextLineSegmentClass gtk_text_right_mark_type;
63
64 /* In gtktextchild.c */
65 extern const GtkTextLineSegmentClass gtk_text_pixbuf_type;
66 extern const GtkTextLineSegmentClass gtk_text_child_type;
67
68 /*
69  * UTF 8 Stubs
70  */
71
72 #define GTK_TEXT_UNKNOWN_CHAR 0xFFFC
73 VARIABLE const gchar gtk_text_unknown_char_utf8[];
74
75 gboolean gtk_text_byte_begins_utf8_char (const gchar *byte);
76
77 G_END_DECLS
78
79 #endif
80