]> Pileus Git - ~andy/gtk/blob - gtk/gtktexttypes.h
Create 'composited' label.
[~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 <glib.h>
31
32 #include <gtk/gtktextbuffer.h>
33 #include <gtk/gtktexttagprivate.h>
34
35 G_BEGIN_DECLS
36
37 typedef struct _GtkTextCounter GtkTextCounter;
38 typedef struct _GtkTextLineSegment GtkTextLineSegment;
39 typedef struct _GtkTextLineSegmentClass GtkTextLineSegmentClass;
40 typedef struct _GtkTextToggleBody GtkTextToggleBody;
41 typedef struct _GtkTextMarkBody GtkTextMarkBody;
42
43 /*
44  * Declarations for variables shared among the text-related files:
45  */
46
47 #ifdef G_OS_WIN32
48 #ifdef GTK_COMPILATION
49 #define VARIABLE __declspec(dllexport)
50 #else
51 #define VARIABLE extern __declspec(dllimport)
52 #endif
53 #else
54 #define VARIABLE extern
55 #endif
56
57 /* In gtktextbtree.c */
58 extern const GtkTextLineSegmentClass gtk_text_char_type;
59 extern const GtkTextLineSegmentClass gtk_text_toggle_on_type;
60 extern const GtkTextLineSegmentClass gtk_text_toggle_off_type;
61
62 /* In gtktextmark.c */
63 extern const GtkTextLineSegmentClass gtk_text_left_mark_type;
64 extern const GtkTextLineSegmentClass gtk_text_right_mark_type;
65
66 /* In gtktextchild.c */
67 extern const GtkTextLineSegmentClass gtk_text_pixbuf_type;
68 extern const GtkTextLineSegmentClass gtk_text_child_type;
69
70 /*
71  * UTF 8 Stubs
72  */
73
74 #define GTK_TEXT_UNKNOWN_CHAR 0xFFFC
75 VARIABLE const gchar gtk_text_unknown_char_utf8[];
76
77 gboolean gtk_text_byte_begins_utf8_char (const gchar *byte);
78
79 G_END_DECLS
80
81 #endif
82