diff options
Diffstat (limited to 'gtk/gtktextchild.h')
-rw-r--r-- | gtk/gtktextchild.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gtk/gtktextchild.h b/gtk/gtktextchild.h new file mode 100644 index 0000000000..9ce8fd5fc5 --- /dev/null +++ b/gtk/gtktextchild.h @@ -0,0 +1,24 @@ +#ifndef GTK_TEXT_CHILD_H +#define GTK_TEXT_CHILD_H + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#include <gtk/gtktexttypes.h> + +typedef struct _GtkTextPixmap GtkTextPixmap; + +struct _GtkTextPixmap { + GdkPixmap *pixmap; + GdkBitmap *mask; +}; + +GtkTextLineSegment *gtk_text_pixmap_segment_new(GdkPixmap *pixmap, GdkBitmap *mask); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif |