/* ghosd -- OSD with fake transparency, cairo, and pango. * Copyright (C) 2006 Evan Martin */ #include #include "ghosd.h" struct _Ghosd { Display *dpy; Window win; int transparent; int x, y, width, height; Pixmap background; Pixmap draw_buffer; GhosdRenderFunc render_func; void *render_data; }; /* vim: set ts=2 sw=2 et cino=(0 : */