17 lines
358 B
C
17 lines
358 B
C
#ifndef DUNST_DRAW_H
|
|
#define DUNST_DRAW_H
|
|
|
|
#include "x11/x.h"
|
|
extern struct window_x11 *win; // Temporary
|
|
|
|
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 tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|