]> icculus.org git repositories - dana/openbox.git/blob - openbox/composite.h
Show unmanaged windows in composite. *Stacking will be broken though still!!*
[dana/openbox.git] / openbox / composite.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    composite.h for the Openbox window manager
4    Copyright (c) 2010        Dana Jansens
5    Copyright (c) 2010        Derek Foreman
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #ifndef __composite_h
21 #define __composite_h
22
23 #ifdef USE_COMPOSITING
24 #include <glib.h>
25 #include <GL/gl.h>
26 #include <GL/glx.h>
27
28 #include "geom.h"
29
30 struct _ObWindow;
31
32 #define MAX_DEPTH 32
33
34 typedef GLXPixmap (*CreatePixmapT)(Display *display,
35                                    GLXFBConfig config,
36                                    int attribute,
37                                    int *value);
38
39 typedef void (*BindTexImageT)(Display *display,
40                               GLXDrawable drawable,
41                               int buffer,
42                               int *attriblist);
43
44 typedef void (*ReleaseTexImageT)(Display *display,
45                                  GLXDrawable drawable,
46                                  int buffer);
47
48 typedef GLXFBConfig *(*GetFBConfigsT) (Display *display,
49                                        int screen,
50                                        int *nElements);
51
52 typedef int (*GetFBConfigAttribT) (Display *display,
53                                    GLXFBConfig config,
54                                    int attribute,
55                                    int *value);
56
57 struct ObCompositor {
58     CreatePixmapT CreatePixmap;
59     BindTexImageT BindTexImage;
60     ReleaseTexImageT ReleaseTexImage;
61     GetFBConfigsT GetFBConfigs;
62     GetFBConfigAttribT GetFBConfigAttrib;
63
64     Window overlay;
65
66     GLXContext ctx;
67     struct ObCompositeFBConfig {
68         GLXFBConfig fbc; /* the fbconfig */
69         gint tf;         /* texture format */
70     } PixmapConfig[MAX_DEPTH + 1]; // need a [32]
71
72     gboolean need_redraw;
73     const Rect *screendims;
74 };
75 #endif
76
77 void composite_startup(gboolean reconfig);
78 void composite_shutdown(gboolean reconfig);
79 Window composite_overlay(void);
80 void composite_redir(struct _ObWindow *w, gboolean on);
81
82 #endif