summaryrefslogtreecommitdiffstats
path: root/window.c
blob: b7732fa1b04d97e673bbec4bffb3439dd8fd4ab1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* sxiv: window.c
 * Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *  
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *  
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <stdlib.h>
#include <stdio.h>

#include <X11/Xutil.h>

#include "sxiv.h"
#include "window.h"

Display *dpy;
int scr;
int scrw, scrh;
GC gc;
XColor bgcol;

void win_open(win_t *win) {
	XClassHint *classhint;

	if (win == NULL)
		return;

	if (!(dpy = XOpenDisplay(NULL)))
		FATAL("could not open display");
	
	scr = DefaultScreen(dpy);
	scrw = DisplayWidth(dpy, scr);
	scrh = DisplayHeight(dpy, scr);

	bgcol.red = 0x7000;
	bgcol.green = 0x7000;
	bgcol.blue = 0x7000;
	XAllocColor(dpy, DefaultColormap(dpy, scr), &bgcol);

	if (win->w > scrw)
		win->w = scrw;
	if (win->h > scrh)
		win->h = scrh;
	win->x = (scrw - win->w) / 2;
	win->y = (scrh - win->h) / 2;

	win->xwin = XCreateWindow(dpy, RootWindow(dpy, scr),
			win->x, win->y, win->w, win->h, 0, DefaultDepth(dpy, scr), InputOutput,
			DefaultVisual(dpy, scr), 0, NULL);
	if (win->xwin == None)
		FATAL("could not create window");
	
	XSelectInput(dpy, win->xwin,
			StructureNotifyMask | ExposureMask | KeyPressMask);

	gc = XCreateGC(dpy, win->xwin, 0, NULL);

	if ((classhint = XAllocClassHint())) {
		classhint->res_name = "sxvi";
		classhint->res_class = "sxvi";
		XSetClassHint(dpy, win->xwin, classhint);
		XFree(classhint);
	}

	XMapWindow(dpy, win->xwin);
	XFlush(dpy);
}

void win_close(win_t *win) {
	if (win == NULL)
		return;

	XDestroyWindow(dpy, win->xwin);
	XFreeGC(dpy, gc);
	XCloseDisplay(dpy);
}