This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues/pull-requests.
nsxiv/window.c

140 lines
3.4 KiB
C
Raw Normal View History

2011-01-17 14:57:59 +01:00
/* 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.
*/
2011-01-17 16:42:49 +01:00
#include <stdlib.h>
#include <stdio.h>
#include <X11/Xutil.h>
2011-01-17 14:57:59 +01:00
#include "sxiv.h"
#include "window.h"
2011-01-17 16:42:49 +01:00
void win_open(win_t *win) {
win_env_t *e;
2011-01-17 16:42:49 +01:00
XClassHint *classhint;
XColor bgcol;
2011-01-20 21:44:34 +01:00
XGCValues gcval;
2011-01-17 16:42:49 +01:00
2011-01-17 20:14:15 +01:00
if (!win)
2011-01-17 16:42:49 +01:00
return;
e = &win->env;
2011-01-17 16:42:49 +01:00
if (!(e->dpy = XOpenDisplay(NULL)))
2011-01-18 17:21:59 +01:00
DIE("could not open display");
2011-01-17 16:42:49 +01:00
e->scr = DefaultScreen(e->dpy);
e->scrw = DisplayWidth(e->dpy, e->scr);
e->scrh = DisplayHeight(e->dpy, e->scr);
2011-01-17 16:42:49 +01:00
e->vis = DefaultVisual(e->dpy, e->scr);
e->cmap = DefaultColormap(e->dpy, e->scr);
e->depth = DefaultDepth(e->dpy, e->scr);
2011-01-17 20:14:15 +01:00
if (!XAllocNamedColor(e->dpy, DefaultColormap(e->dpy, e->scr), BG_COLOR,
&bgcol, &bgcol))
2011-01-18 17:21:59 +01:00
DIE("could not allocate color: %s", BG_COLOR);
2011-01-17 16:42:49 +01:00
if (win->w > e->scrw)
win->w = e->scrw;
if (win->h > e->scrh)
win->h = e->scrh;
win->x = (e->scrw - win->w) / 2;
win->y = (e->scrh - win->h) / 2;
2011-01-17 16:42:49 +01:00
win->xwin = XCreateWindow(e->dpy, RootWindow(e->dpy, e->scr),
win->x, win->y, win->w, win->h, 0,
2011-01-20 21:44:34 +01:00
e->depth, InputOutput, e->vis, 0, None);
2011-01-17 16:42:49 +01:00
if (win->xwin == None)
2011-01-18 17:21:59 +01:00
DIE("could not create window");
2011-01-17 16:42:49 +01:00
XSelectInput(e->dpy, win->xwin,
2011-01-20 21:44:34 +01:00
StructureNotifyMask | KeyPressMask);
win->pm = 0;
gcval.foreground = bgcol.pixel;
win->bgc = XCreateGC(e->dpy, win->xwin, GCForeground, &gcval);
2011-01-17 16:42:49 +01:00
win_set_title(win, "sxiv");
2011-01-20 16:32:16 +01:00
2011-01-17 16:42:49 +01:00
if ((classhint = XAllocClassHint())) {
2011-01-20 16:32:16 +01:00
classhint->res_name = "sxiv";
classhint->res_class = "sxiv";
XSetClassHint(e->dpy, win->xwin, classhint);
2011-01-17 16:42:49 +01:00
XFree(classhint);
}
XMapWindow(e->dpy, win->xwin);
XFlush(e->dpy);
2011-01-17 16:42:49 +01:00
}
void win_close(win_t *win) {
2011-01-17 20:14:15 +01:00
if (!win)
2011-01-17 16:42:49 +01:00
return;
XDestroyWindow(win->env.dpy, win->xwin);
XCloseDisplay(win->env.dpy);
2011-01-17 16:42:49 +01:00
}
2011-01-17 19:50:46 +01:00
void win_set_title(win_t *win, const char *title) {
if (!win)
return;
if (!title)
title = "sxiv";
XStoreName(win->env.dpy, win->xwin, title);
XSetIconName(win->env.dpy, win->xwin, title);
}
2011-01-17 19:50:46 +01:00
int win_configure(win_t *win, XConfigureEvent *cev) {
int changed;
2011-01-17 20:14:15 +01:00
if (!win)
2011-01-17 19:50:46 +01:00
return 0;
changed = win->x != cev->x || win->y != cev->y ||
win->w != cev->width || win->h != cev->height;
2011-01-17 19:50:46 +01:00
win->x = cev->x;
win->y = cev->y;
win->w = cev->width;
win->h = cev->height;
win->bw = cev->border_width;
return changed;
}
2011-01-18 20:11:28 +01:00
void win_clear(win_t *win) {
if (!win)
return;
2011-01-20 21:44:34 +01:00
if (win->pm)
XFreePixmap(win->env.dpy, win->pm);
win->pm = XCreatePixmap(win->env.dpy, win->xwin, win->w, win->h,
win->env.depth);
XFillRectangle(win->env.dpy, win->pm, win->bgc, 0, 0, win->w, win->h);
}
void win_draw(win_t *win) {
if (!win)
return;
XSetWindowBackgroundPixmap(win->env.dpy, win->xwin, win->pm);
2011-01-18 20:11:28 +01:00
XClearWindow(win->env.dpy, win->xwin);
}