| 45 typedef struct _GntTreeClass GntTreeClass; |
45 typedef struct _GntTreeClass GntTreeClass; |
| 46 |
46 |
| 47 typedef struct _GntTreeRow GntTreeRow; |
47 typedef struct _GntTreeRow GntTreeRow; |
| 48 typedef struct _GntTreeCol GntTreeCol; |
48 typedef struct _GntTreeCol GntTreeCol; |
| 49 |
49 |
| 50 typedef enum _GntTreeColumnFlag { |
50 typedef enum { |
| 51 GNT_TREE_COLUMN_INVISIBLE = 1 << 0, |
51 GNT_TREE_COLUMN_INVISIBLE = 1 << 0, |
| 52 GNT_TREE_COLUMN_FIXED_SIZE = 1 << 1, |
52 GNT_TREE_COLUMN_FIXED_SIZE = 1 << 1, |
| 53 GNT_TREE_COLUMN_BINARY_DATA = 1 << 2, |
53 GNT_TREE_COLUMN_BINARY_DATA = 1 << 2, |
| 54 GNT_TREE_COLUMN_RIGHT_ALIGNED = 1 << 3, |
54 GNT_TREE_COLUMN_RIGHT_ALIGNED = 1 << 3, |
| 55 } GntTreeColumnFlag; |
55 } GntTreeColumnFlag; |