summaryrefslogtreecommitdiff
path: root/sys/src/libcontrol/group.h
blob: b6a2fe7b83d8cf649133121efcfc00bd1b51c2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef struct Group Group;

struct Group {
	Control;
	int		lastbut;
	int		border;
	int		mansize;		/* size was set manually */
	int		separation;
	int		selected;
	int		lastkid;
	CImage	*bordercolor;
	CImage	*image;
	int		nkids;
	Control	**kids;		/* mallocated */
	Rectangle	*separators;	/* mallocated */
	int		nseparators;
};