]> Pileus Git - ~andy/gtk/blob - gtk/gtktextchild.h
text_window_* weren't static and should have been. Start work on child
[~andy/gtk] / gtk / gtktextchild.h
1 /* GTK - The GIMP Toolkit
2  * gtktextchild.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_CHILD_H
28 #define GTK_TEXT_CHILD_H
29
30 #include <glib.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif /* __cplusplus */
35
36 /* A GtkTextChildAnchor is a spot in the buffer where child widgets
37  * can be "anchored" (inserted inline, as if they were characters).
38  * The anchor can have multiple widgets anchored, to allow for multiple
39  * views.
40  */
41
42 typedef struct _GtkTextChildAnchor GtkTextChildAnchor;
43
44 void     gtk_text_child_anchor_ref         (GtkTextChildAnchor *anchor);
45 void     gtk_text_child_anchor_unref       (GtkTextChildAnchor *anchor);
46 GList*   gtk_text_child_anchor_get_widgets (GtkTextChildAnchor *anchor);
47 gboolean gtk_text_child_anchor_get_deleted (GtkTextChildAnchor *anchor);
48
49 #ifdef __cplusplus
50 }
51 #endif /* __cplusplus */
52
53 #endif