window: Move theme rendering code to cairo-util
diff --git a/clients/cairo-util.h b/clients/cairo-util.h
index a973e3c..70800a4 100644
--- a/clients/cairo-util.h
+++ b/clients/cairo-util.h
@@ -43,4 +43,19 @@
cairo_surface_t *
load_cairo_surface(const char *filename);
+struct theme {
+ cairo_surface_t *active_frame;
+ cairo_surface_t *inactive_frame;
+ cairo_surface_t *shadow;
+ int frame_radius;
+ int margin;
+ int width;
+ int titlebar_height;
+};
+
+void
+display_render_theme(struct theme *t);
+void
+fini_theme(struct theme *t);
+
#endif