systray.h 472 B

1234567891011121314151617181920
  1. /*
  2. * wmfs2 by Martin Duquesnoy <xorg62@gmail.com> { for(i = 2011; i < 2111; ++i) ©(i); }
  3. * For license, see COPYING.
  4. */
  5. #ifndef SYSTRAY_H
  6. #define SYSTRAY_H
  7. #include "wmfs.h"
  8. void systray_acquire(void);
  9. void systray_add(Window win);
  10. void systray_del(struct _systray *s);
  11. void systray_state(struct _systray *s);
  12. void systray_freeicons(void);
  13. struct _systray *systray_find(Window win);
  14. int systray_get_width(void);
  15. void systray_update(void);
  16. #endif /* SYSTRAY_H */