From f2ceac2f8ab04f91672a9cb168dfdf69dab02b3c Mon Sep 17 00:00:00 2001 From: Bert Date: Tue, 1 Feb 2011 16:40:37 +0100 Subject: New option: -F, fixed/floating window --- window.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index 3904fe8..a7a1121 100644 --- a/window.c +++ b/window.c @@ -33,7 +33,8 @@ static GC bgc; void win_open(win_t *win) { win_env_t *e; - XClassHint *classhint; + XClassHint classhint; + XSizeHints sizehints; XColor bgcol; int gmask; @@ -99,11 +100,17 @@ void win_open(win_t *win) { win_set_title(win, "sxiv"); - if ((classhint = XAllocClassHint())) { - classhint->res_name = "sxiv"; - classhint->res_class = "sxiv"; - XSetClassHint(e->dpy, win->xwin, classhint); - XFree(classhint); + classhint.res_name = "sxiv"; + classhint.res_class = "sxiv"; + XSetClassHint(e->dpy, win->xwin, &classhint); + + if (options->fixed) { + sizehints.flags = PMinSize | PMaxSize; + sizehints.min_width = win->w; + sizehints.max_width = win->w; + sizehints.min_height = win->h; + sizehints.max_height = win->h; + XSetWMNormalHints(e->dpy, win->xwin, &sizehints); } XMapWindow(e->dpy, win->xwin); -- cgit v1.2.3-54-g00ecf