1 #ifndef STYLE_H 2 #define STYLE_H 3 4 #include <X11/Xlib.h> 5 6 #include "icon.h" 7 8 typedef struct _Style { 9 struct _Style *next; 10 char *style_class, *style_title, *style_icon_title; 11 struct IconPixmaps icon_pms; 12 unsigned int icon_pm_w, icon_pm_h; 13 char *icon_name; 14 } Style; 15 16 #endif 17