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