Allow moving fullscreen windows between monitors
[mikachu/openbox.git] / obrender / test.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    test.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6    Copyright (c) 2003        Derek Foreman
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    See the COPYING file for a copy of the GNU General Public License.
19 */
20
21 #include <stdio.h>
22 #include <X11/Xlib.h>
23 #include <X11/Xutil.h>
24 #include <X11/extensions/shape.h>
25 #include <string.h>
26 #include <stdlib.h>
27 #include "render.h"
28 #include <glib.h>
29
30 static gint x_error_handler(Display * disp, XErrorEvent * error)
31 {
32     gchar buf[1024];
33     XGetErrorText(disp, error->error_code, buf, 1024);
34     printf("%s\n", buf);
35     return 0;
36 }
37
38 Display *ob_display;
39 gint ob_screen;
40 Window ob_root;
41
42 gint main()
43 {
44     Window win;
45     RrInstance *inst;
46     RrAppearance *look;
47     int done;
48
49     XEvent report;
50     gint h = 500, w = 500;
51
52     ob_display = XOpenDisplay(NULL);
53     XSetErrorHandler(x_error_handler);
54     ob_screen = DefaultScreen(ob_display);
55     ob_root = RootWindow(ob_display, ob_screen);
56     win =
57         XCreateWindow(ob_display, RootWindow(ob_display, 0),
58                       10, 10, w, h, 10,
59                       CopyFromParent,    /* depth */
60                       CopyFromParent,    /* class */
61                       CopyFromParent,    /* visual */
62                       0,                    /* valuemask */
63                       0);                    /* attributes */
64     XMapWindow(ob_display, win);
65     XSelectInput(ob_display, win, ExposureMask | StructureNotifyMask);
66     inst = RrInstanceNew(ob_display, ob_screen);
67
68     look = RrAppearanceNew(inst, 0);
69     look->surface.grad = RR_SURFACE_MIRROR_HORIZONTAL;
70     look->surface.secondary = RrColorParse(inst, "Yellow");
71     look->surface.split_secondary = RrColorParse(inst, "Red");
72     look->surface.split_primary = RrColorParse(inst, "Green");
73     look->surface.primary = RrColorParse(inst, "Blue");
74     look->surface.interlaced = FALSE;
75     if (ob_display == NULL) {
76         fprintf(stderr, "couldn't connect to X server :0\n");
77         return 0;
78     }
79
80 #if BIGTEST
81     int i;
82     look->surface.pixel_data = g_new(RrPixel32, w*h);
83     for (i = 0; i < 10000; ++i) {
84         printf("\r%d", i);
85         fflush(stdout);
86         RrRender(look, w, h);
87     }
88     exit (0);
89 #endif
90
91     RrPaint(look, win, w, h);
92     done = 0;
93     while (!done) {
94         XNextEvent(ob_display, &report);
95         switch (report.type) {
96         case Expose:
97             break;
98         case ConfigureNotify:
99             RrPaint(look, win,
100                     report.xconfigure.width,
101                     report.xconfigure.height);
102             break;
103         case UnmapNotify:
104             done = 1;
105             break;
106         }
107     }
108
109     RrAppearanceFree (look);
110     RrInstanceFree (inst);
111
112     return 1;
113 }