comparison finch/libgnt/gnttree.h @ 31922:5876584828e8

Please correct me if I'm wrong, but I don't think we gain anything from declaring _PurpleBlah versions of enums if we do a typedef at the same time. I don't think it's necessary. Fixes #4475
author Mark Doliner <mark@kingant.net>
date Mon, 22 Aug 2011 07:20:49 +0000
parents 44f53d3fc54f
children
comparison
equal deleted inserted replaced
31921:4f2d99bcb195 31922:5876584828e8
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;