]> git.cworth.org Git - fips/blob - test/util-x11.c
7ab6ebc894fffa298b532621e1e6e5cfe0c37f0d
[fips] / test / util-x11.c
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 #include "util-x11.h"
26
27 void
28 util_x11_init_display (Display **dpy)
29 {
30         *dpy = XOpenDisplay (NULL);
31
32         if (*dpy == NULL) {
33                 fprintf(stderr, "Failed to open display %s\n",
34                         XDisplayName(NULL));
35                 exit (1);
36         }
37 }
38
39 void
40 util_x11_fini_display (Display *dpy)
41 {
42         XCloseDisplay (dpy);
43 }
44
45 void
46 util_x11_init_window (Display *dpy, Window *window)
47 {
48         int width = 64;
49         int height = 64;
50
51
52
53         *window = XCreateSimpleWindow(dpy, DefaultRootWindow (dpy),
54                                       0, 0, width, height, 0,
55                                       BlackPixel (dpy, DefaultScreen (dpy)),
56                                       BlackPixel (dpy, DefaultScreen (dpy)));
57
58         XSelectInput(dpy, *window,
59                      KeyPressMask | StructureNotifyMask | ExposureMask);
60
61         XMapWindow (dpy, *window);
62
63 }
64
65 void
66 util_x11_fini_window (Display *dpy, Window window)
67 {
68         XDestroyWindow (dpy, window);
69 }