#ifndef COMET_WINDOW_H #define COMET_WINDOW_H #include #include "connection.h" typedef struct Window Window; Window *window_create(Connection *con); cairo_t *window_get_context(Window *win); double window_get_scale(Window *win); void window_set_opacity(Window *win, double alpha); void window_get_screen_size(Window *win, int *width, int *height); void window_move(Window *win, int x, int y); void window_resize(Window *win, int width, int height); void window_paint_surface(Window *win, cairo_surface_t *surface, int width, int height); void window_destroy(Window *win); #endif // vim: ts=4 sw=4 et