group.h 311 B

1234567891011121314151617
  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. CImage *bordercolor;
  10. CImage *image;
  11. int nkids;
  12. Control **kids; /* mallocated */
  13. Rectangle *separators; /* mallocated */
  14. int nseparators;
  15. };