#ifndef DUNST_DRAW_H #define DUNST_DRAW_H #include #include #include "output.h" extern window win; // Temporary extern const struct output *output; void draw_setup(void); void draw(void); void draw_rounded_rect(cairo_t *c, int x, int y, int width, int height, int corner_radius, bool first, bool last); void draw_deinit(void); #endif /* vim: set ft=c tabstop=8 shiftwidth=8 expandtab textwidth=0: */