You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
485 B

17 years ago
  1. /* See LICENSE file for copyright and license details. */
  2. #include <X11/Xlib.h>
  3. /* typedefs */
  4. typedef struct Client Client;
  5. struct Client {
  6. char name[256];
  7. int x, y, w, h;
  8. int rx, ry, rw, rh; /* revert geometry */
  9. int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  10. int minax, maxax, minay, maxay;
  11. long flags;
  12. unsigned int border, oldborder;
  13. Bool isbanned, isfixed, ismax, isfloating, wasfloating;
  14. Bool *tags;
  15. Client *next;
  16. Client *prev;
  17. Client *snext;
  18. Window win;
  19. };