summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorBert Münnich <be.muennich@gmail.com>2014-02-05 09:58:36 +0100
committerBert Münnich <be.muennich@gmail.com>2014-02-05 09:58:36 +0100
commit72f1b1ca6f7936ecc5e80921d9dfe313f1f84465 (patch)
tree9b2d1a426f1c896b4d2148f39a86baefe31faded /window.c
parent997c8518c5884fecf03fb3d677dbc6d80d11c9df (diff)
downloadnsxiv-72f1b1ca6f7936ecc5e80921d9dfe313f1f84465.tar.zst
Removed command line option -F
Diffstat (limited to 'window.c')
-rw-r--r--window.c53
1 files changed, 17 insertions, 36 deletions
diff --git a/window.c b/window.c
index b8d5cf5..a1fe122 100644
--- a/window.c
+++ b/window.c
@@ -171,12 +171,6 @@ void win_init(win_t *win)
win->bar.fgcol = win_alloc_color(win, BAR_FG_COLOR);
win->bar.h = options->hide_bar ? 0 : barheight;
- win->sizehints.flags = PWinGravity;
- win->sizehints.win_gravity = NorthWestGravity;
- if (options->fixed_win)
- /* actual min/max values set in win_update_sizehints() */
- win->sizehints.flags |= PMinSize | PMaxSize;
-
INIT_ATOM_(WM_DELETE_WINDOW);
INIT_ATOM_(_NET_WM_NAME);
INIT_ATOM_(_NET_WM_ICON_NAME);
@@ -188,26 +182,6 @@ void win_init(win_t *win)
win_check_wm_support(e->dpy, RootWindow(e->dpy, e->scr));
}
-void win_update_sizehints(win_t *win)
-{
- if (win == NULL || win->xwin == None)
- return;
-
- if ((win->sizehints.flags & USSize) != 0) {
- win->sizehints.width = win->w;
- win->sizehints.height = win->h + win->bar.h;
- }
- if ((win->sizehints.flags & USPosition) != 0) {
- win->sizehints.x = win->x;
- win->sizehints.y = win->y;
- }
- if (options->fixed_win) {
- win->sizehints.min_width = win->sizehints.max_width = win->w;
- win->sizehints.min_height = win->sizehints.max_height = win->h + win->bar.h;
- }
- XSetWMNormalHints(win->env.dpy, win->xwin, &win->sizehints);
-}
-
void win_open(win_t *win)
{
int c, i, j, n;
@@ -220,12 +194,16 @@ void win_open(win_t *win)
char none_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
Pixmap none;
int gmask;
+ XSizeHints sizehints;
if (win == NULL)
return;
e = &win->env;
+ sizehints.flags = PWinGravity;
+ sizehints.win_gravity = NorthWestGravity;
+
/* determine window offsets, width & height */
if (options->geometry == NULL)
gmask = 0;
@@ -233,31 +211,29 @@ void win_open(win_t *win)
gmask = XParseGeometry(options->geometry, &win->x, &win->y,
&win->w, &win->h);
if ((gmask & WidthValue) != 0)
- win->sizehints.flags |= USSize;
+ sizehints.flags |= USSize;
else
win->w = WIN_WIDTH;
if ((gmask & HeightValue) != 0)
- win->sizehints.flags |= USSize;
+ sizehints.flags |= USSize;
else
win->h = WIN_HEIGHT;
if ((gmask & XValue) != 0) {
if ((gmask & XNegative) != 0) {
win->x += e->scrw - win->w;
- win->sizehints.win_gravity = NorthEastGravity;
+ sizehints.win_gravity = NorthEastGravity;
}
- win->sizehints.flags |= USPosition;
+ sizehints.flags |= USPosition;
} else {
win->x = (e->scrw - win->w) / 2;
}
if ((gmask & YValue) != 0) {
if ((gmask & YNegative) != 0) {
win->y += e->scrh - win->h;
- if (win->sizehints.win_gravity == NorthEastGravity)
- win->sizehints.win_gravity = SouthEastGravity;
- else
- win->sizehints.win_gravity = SouthWestGravity;
+ sizehints.win_gravity = sizehints.win_gravity == NorthEastGravity
+ ? SouthEastGravity : SouthWestGravity;
}
- win->sizehints.flags |= USPosition;
+ sizehints.flags |= USPosition;
} else {
win->y = (e->scrh - win->h) / 2;
}
@@ -316,8 +292,13 @@ void win_open(win_t *win)
XSetWMProtocols(e->dpy, win->xwin, &atoms[ATOM_WM_DELETE_WINDOW], 1);
+ sizehints.width = win->w;
+ sizehints.height = win->h;
+ sizehints.x = win->x;
+ sizehints.y = win->y;
+ XSetWMNormalHints(win->env.dpy, win->xwin, &sizehints);
+
win->h -= win->bar.h;
- win_update_sizehints(win);
XMapWindow(e->dpy, win->xwin);
XFlush(e->dpy);