| 45 |
45 |
| 46 typedef struct _GntTextView GntTextView; |
46 typedef struct _GntTextView GntTextView; |
| 47 typedef struct _GntTextViewPriv GntTextViewPriv; |
47 typedef struct _GntTextViewPriv GntTextViewPriv; |
| 48 typedef struct _GntTextViewClass GntTextViewClass; |
48 typedef struct _GntTextViewClass GntTextViewClass; |
| 49 |
49 |
| 50 typedef enum { |
50 typedef enum _GntTextViewFlag { |
| 51 GNT_TEXT_VIEW_NO_SCROLL = 1 << 0, |
51 GNT_TEXT_VIEW_NO_SCROLL = 1 << 0, |
| 52 GNT_TEXT_VIEW_WRAP_CHAR = 1 << 1, |
52 GNT_TEXT_VIEW_WRAP_CHAR = 1 << 1, |
| 53 } GntTextViewFlag; |
53 } GntTextViewFlag; |
| 54 |
54 |
| 55 struct _GntTextView |
55 struct _GntTextView |