summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h
blob: 262afe686f139fffa0623ab8598b74d4db110406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ghosd -- OSD with fake transparency, cairo, and pango.
 * Copyright (C) 2006 Evan Martin <martine@danga.com>
 */

#include <X11/Xlib.h>

#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 : */