group.h 326 B

123456789101112131415161718
  1. typedef struct Group Group;
  2. struct Group {
  3. Control;
  4. int lastbut;
  5. int border;
  6. int mansize; /* size was set manually */
  7. int separation;
  8. int selected;
  9. int lastkid;
  10. CImage *bordercolor;
  11. CImage *image;
  12. int nkids;
  13. Control **kids; /* mallocated */
  14. Rectangle *separators; /* mallocated */
  15. int nseparators;
  16. };