blob: 9ce8fd5fc557d69c68a021966f7d740106d83a7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|