]> Pileus Git - ~andy/gtk/blob - gtk/gtktextmark.h
feab32378dc0b6c0bd442d9059f04cda84006532
[~andy/gtk] / gtk / gtktextmark.h
1 #ifndef GTK_TEXT_MARK_H
2 #define GTK_TEXT_MARK_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif /* __cplusplus */
7
8 /* The GtkTextMark data type */
9
10 typedef struct _GtkTextMark GtkTextMark;
11
12 void         gtk_text_mark_set_visible (GtkTextMark *mark,
13                                         gboolean     setting);
14 gboolean     gtk_text_mark_is_visible  (GtkTextMark *mark);
15 /* FIXME gconst */
16 const char * gtk_text_mark_get_name    (GtkTextMark *mark);
17 GtkTextMark *gtk_text_mark_ref         (GtkTextMark *mark);
18 void         gtk_text_mark_unref       (GtkTextMark *mark);
19 gboolean     gtk_text_mark_deleted     (GtkTextMark *mark);
20
21
22 #ifdef __cplusplus
23 }
24 #endif /* __cplusplus */
25
26 #endif
27
28