]> icculus.org git repositories - mikachu/rspanel.git/blob - gui.h
add theme to the rspanel struct. initialize some stuff to 0's
[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,
17                    struct task *tk, int redraw);
18
19 #endif