]> icculus.org git repositories - mikachu/rspanel.git/blob - gui.h
get rid of WINWIDTH/WINHEIGHT. mikasizes should still work
[mikachu/rspanel.git] / gui.h
1 #ifndef rs_gui_h
2 #define rs_gui_h
3
4 struct screen;
5 struct taskbar;
6 struct task;
7
8 #include <X11/Xlib.h>
9 #include <openbox/render.h>
10
11 void gui_init(struct screen *sc);
12
13 void gui_create_taskbar(struct screen *sc, struct taskbar *tb);
14
15 void gui_draw_taskbar(struct screen *sc, struct taskbar *tb);
16 void gui_draw_task(struct screen *sc, struct taskbar *tb, struct task *tk, int redraw);
17
18 #endif