xref: /plan9/sys/src/libcontrol/group.h (revision 6f314b92956e16637888967d7478acfbd2ac8dab)
1 
2 typedef struct Group Group;
3 
4 struct Group {
5 	Control;
6 	int		lastbut;
7 	int		border;
8 	int		mansize;		/* size was set manually */
9 	int		separation;
10 	int		selected;
11 	int		lastkid;
12 	CImage	*bordercolor;
13 	CImage	*image;
14 	int		nkids;
15 	Control	**kids;		/* mallocated */
16 	Rectangle	*separators;	/* mallocated */
17 	int		nseparators;
18 };
19