2007-04-27 11:58:48 -06:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
|
|
*
|
2008-01-11 09:06:44 -07:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
2014-09-08 15:24:27 -06:00
|
|
|
* $OpenBSD: client.c,v 1.181 2014/09/08 21:24:27 okan Exp $
|
2007-04-27 11:58:48 -06:00
|
|
|
*/
|
|
|
|
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
|
2009-12-14 20:34:34 -07:00
|
|
|
#include <assert.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2012-11-08 20:52:02 -07:00
|
|
|
#include <stdio.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2009-12-14 20:34:34 -07:00
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
2014-09-08 14:32:40 -06:00
|
|
|
static struct client_ctx *client_next(struct client_ctx *);
|
|
|
|
static struct client_ctx *client_prev(struct client_ctx *);
|
2012-12-17 07:58:46 -07:00
|
|
|
static void client_mtf(struct client_ctx *);
|
2009-12-07 15:21:59 -07:00
|
|
|
static void client_none(struct screen_ctx *);
|
2009-06-26 06:21:58 -06:00
|
|
|
static void client_placecalc(struct client_ctx *);
|
2013-05-19 11:02:04 -06:00
|
|
|
static void client_wm_protocols(struct client_ctx *);
|
2013-12-11 08:46:47 -07:00
|
|
|
static void client_mwm_hints(struct client_ctx *);
|
2009-06-26 06:21:58 -06:00
|
|
|
static int client_inbound(struct client_ctx *, int, int);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-01-02 14:15:39 -07:00
|
|
|
struct client_ctx *curcc = NULL;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
struct client_ctx *
|
|
|
|
client_find(Window win)
|
|
|
|
{
|
2014-09-08 14:11:22 -06:00
|
|
|
struct screen_ctx *sc;
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *cc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
TAILQ_FOREACH(sc, &Screenq, entry) {
|
|
|
|
TAILQ_FOREACH(cc, &sc->clientq, entry) {
|
|
|
|
if (cc->win == win)
|
|
|
|
return(cc);
|
|
|
|
}
|
2014-09-07 13:27:30 -06:00
|
|
|
}
|
|
|
|
return(NULL);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct client_ctx *
|
2014-02-03 13:20:39 -07:00
|
|
|
client_init(Window win, struct screen_ctx *sc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *cc;
|
|
|
|
XWindowAttributes wattr;
|
2014-01-03 07:23:50 -07:00
|
|
|
long state;
|
2014-02-03 13:20:39 -07:00
|
|
|
int mapped;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
if (win == None)
|
2014-09-07 13:27:30 -06:00
|
|
|
return(NULL);
|
2014-02-02 14:34:05 -07:00
|
|
|
if (!XGetWindowAttributes(X_Dpy, win, &wattr))
|
2014-09-07 13:27:30 -06:00
|
|
|
return(NULL);
|
2014-02-03 13:20:39 -07:00
|
|
|
|
|
|
|
if (sc == NULL) {
|
2014-09-07 11:38:38 -06:00
|
|
|
sc = screen_find(wattr.root);
|
2014-02-03 13:20:39 -07:00
|
|
|
mapped = 1;
|
|
|
|
} else {
|
|
|
|
if (wattr.override_redirect || wattr.map_state != IsViewable)
|
2014-09-07 13:27:30 -06:00
|
|
|
return(NULL);
|
2014-02-03 13:20:39 -07:00
|
|
|
mapped = wattr.map_state != IsUnmapped;
|
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2009-06-19 18:22:39 -06:00
|
|
|
cc = xcalloc(1, sizeof(*cc));
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
XGrabServer(X_Dpy);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
cc->sc = sc;
|
|
|
|
cc->win = win;
|
2009-05-29 18:30:17 -06:00
|
|
|
|
|
|
|
TAILQ_INIT(&cc->nameq);
|
|
|
|
client_setname(cc);
|
|
|
|
|
|
|
|
conf_client(cc);
|
|
|
|
|
2013-12-11 07:09:21 -07:00
|
|
|
XGetClassHint(X_Dpy, cc->win, &cc->ch);
|
2013-12-11 08:41:11 -07:00
|
|
|
client_wm_hints(cc);
|
2013-12-11 07:09:21 -07:00
|
|
|
client_wm_protocols(cc);
|
|
|
|
client_getsizehints(cc);
|
2013-12-11 08:46:47 -07:00
|
|
|
client_mwm_hints(cc);
|
2013-04-03 14:22:55 -06:00
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
/* Saved pointer position */
|
|
|
|
cc->ptr.x = -1;
|
|
|
|
cc->ptr.y = -1;
|
|
|
|
|
|
|
|
cc->geom.x = wattr.x;
|
|
|
|
cc->geom.y = wattr.y;
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w = wattr.width;
|
|
|
|
cc->geom.h = wattr.height;
|
2012-12-17 11:35:26 -07:00
|
|
|
cc->colormap = wattr.colormap;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
if (wattr.map_state != IsViewable) {
|
|
|
|
client_placecalc(cc);
|
2013-04-17 07:52:20 -06:00
|
|
|
client_move(cc);
|
2013-12-11 07:16:09 -07:00
|
|
|
if ((cc->wmh) && (cc->wmh->flags & StateHint))
|
|
|
|
client_set_wm_state(cc, cc->wmh->initial_state);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2008-05-15 15:56:21 -06:00
|
|
|
XSelectInput(X_Dpy, cc->win, ColormapChangeMask | EnterWindowMask |
|
|
|
|
PropertyChangeMask | KeyReleaseMask);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-12-13 08:56:44 -07:00
|
|
|
XAddToSaveSet(X_Dpy, cc->win);
|
|
|
|
|
2011-09-13 02:41:57 -06:00
|
|
|
client_transient(cc);
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
/* Notify client of its configuration. */
|
2013-06-10 15:37:30 -06:00
|
|
|
client_config(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-12-11 07:16:09 -07:00
|
|
|
if ((state = client_get_wm_state(cc)) < 0)
|
|
|
|
state = NormalState;
|
|
|
|
|
2009-06-19 18:55:41 -06:00
|
|
|
(state == IconicState) ? client_hide(cc) : client_unhide(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
TAILQ_INSERT_TAIL(&sc->clientq, cc, entry);
|
2012-07-03 07:49:03 -06:00
|
|
|
|
|
|
|
xu_ewmh_net_client_list(sc);
|
2013-05-20 15:13:58 -06:00
|
|
|
xu_ewmh_restore_net_wm_state(cc);
|
2008-04-15 14:24:41 -06:00
|
|
|
|
2008-05-15 15:56:21 -06:00
|
|
|
if (mapped)
|
2008-03-22 09:09:45 -06:00
|
|
|
group_autogroup(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-04-03 13:20:50 -06:00
|
|
|
XSync(X_Dpy, False);
|
|
|
|
XUngrabServer(X_Dpy);
|
|
|
|
|
2014-09-07 13:27:30 -06:00
|
|
|
return(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2011-06-23 23:40:09 -06:00
|
|
|
void
|
2013-11-12 14:25:00 -07:00
|
|
|
client_delete(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2008-07-11 08:21:28 -06:00
|
|
|
struct winname *wn;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
TAILQ_REMOVE(&sc->clientq, cc, entry);
|
2012-07-03 07:49:03 -06:00
|
|
|
|
|
|
|
xu_ewmh_net_client_list(sc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-05-06 10:03:11 -06:00
|
|
|
if (cc->group != NULL)
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_REMOVE(&cc->group->clientq, cc, group_entry);
|
2013-05-06 10:03:11 -06:00
|
|
|
|
2012-12-17 07:26:29 -07:00
|
|
|
if (cc == client_current())
|
2009-12-07 15:21:59 -07:00
|
|
|
client_none(sc);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
while ((wn = TAILQ_FIRST(&cc->nameq)) != NULL) {
|
|
|
|
TAILQ_REMOVE(&cc->nameq, wn, entry);
|
2013-01-01 07:26:29 -07:00
|
|
|
free(wn->name);
|
2012-11-07 13:34:39 -07:00
|
|
|
free(wn);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2013-12-11 07:09:21 -07:00
|
|
|
if (cc->ch.res_class)
|
|
|
|
XFree(cc->ch.res_class);
|
|
|
|
if (cc->ch.res_name)
|
|
|
|
XFree(cc->ch.res_name);
|
|
|
|
if (cc->wmh)
|
|
|
|
XFree(cc->wmh);
|
|
|
|
|
2012-11-07 13:34:39 -07:00
|
|
|
free(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-11-26 17:01:23 -07:00
|
|
|
client_setactive(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2013-11-26 17:01:23 -07:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
|
|
|
struct client_ctx *oldcc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-12-12 13:15:07 -07:00
|
|
|
if (cc->flags & CLIENT_HIDDEN)
|
|
|
|
return;
|
|
|
|
|
2013-11-26 17:01:23 -07:00
|
|
|
XInstallColormap(X_Dpy, cc->colormap);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-11-26 17:01:23 -07:00
|
|
|
if ((cc->flags & CLIENT_INPUT) ||
|
|
|
|
((cc->flags & CLIENT_WM_TAKE_FOCUS) == 0)) {
|
|
|
|
XSetInputFocus(X_Dpy, cc->win,
|
|
|
|
RevertToPointerRoot, CurrentTime);
|
|
|
|
}
|
|
|
|
if (cc->flags & CLIENT_WM_TAKE_FOCUS)
|
2013-12-12 13:15:07 -07:00
|
|
|
client_msg(cc, cwmh[WM_TAKE_FOCUS], Last_Event_Time);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-11-26 17:01:23 -07:00
|
|
|
if ((oldcc = client_current())) {
|
|
|
|
oldcc->active = 0;
|
|
|
|
client_draw_border(oldcc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2013-11-26 17:01:23 -07:00
|
|
|
/* If we're in the middle of cycing, don't change the order. */
|
|
|
|
if (!sc->cycling)
|
|
|
|
client_mtf(cc);
|
|
|
|
|
2014-01-02 14:15:39 -07:00
|
|
|
curcc = cc;
|
2013-11-26 17:01:23 -07:00
|
|
|
cc->active = 1;
|
2013-12-13 07:40:52 -07:00
|
|
|
cc->flags &= ~CLIENT_URGENCY;
|
2007-04-27 11:58:48 -06:00
|
|
|
client_draw_border(cc);
|
2013-11-26 17:01:23 -07:00
|
|
|
conf_grab_mouse(cc->win);
|
|
|
|
xu_ewmh_net_active_window(sc, cc->win);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2009-12-07 15:21:59 -07:00
|
|
|
/*
|
|
|
|
* set when there is no active client
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
client_none(struct screen_ctx *sc)
|
|
|
|
{
|
|
|
|
Window none = None;
|
|
|
|
|
2012-07-03 07:49:03 -06:00
|
|
|
xu_ewmh_net_active_window(sc, none);
|
|
|
|
|
2014-01-02 14:15:39 -07:00
|
|
|
curcc = NULL;
|
2009-12-07 15:21:59 -07:00
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
struct client_ctx *
|
|
|
|
client_current(void)
|
|
|
|
{
|
2014-09-07 13:27:30 -06:00
|
|
|
return(curcc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2011-05-07 11:15:37 -06:00
|
|
|
void
|
|
|
|
client_freeze(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
if (cc->flags & CLIENT_FREEZE)
|
|
|
|
cc->flags &= ~CLIENT_FREEZE;
|
|
|
|
else
|
|
|
|
cc->flags |= CLIENT_FREEZE;
|
|
|
|
}
|
|
|
|
|
2014-08-25 06:49:19 -06:00
|
|
|
void
|
|
|
|
client_sticky(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
if (cc->flags & CLIENT_STICKY)
|
|
|
|
cc->flags &= ~CLIENT_STICKY;
|
|
|
|
else
|
|
|
|
cc->flags |= CLIENT_STICKY;
|
|
|
|
|
|
|
|
xu_ewmh_set_net_wm_state(cc);
|
|
|
|
}
|
|
|
|
|
2013-12-16 12:02:17 -07:00
|
|
|
void
|
|
|
|
client_fullscreen(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
struct screen_ctx *sc = cc->sc;
|
|
|
|
struct geom xine;
|
|
|
|
|
|
|
|
if ((cc->flags & CLIENT_FREEZE) &&
|
|
|
|
!(cc->flags & CLIENT_FULLSCREEN))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((cc->flags & CLIENT_FULLSCREEN)) {
|
|
|
|
cc->bwidth = Conf.bwidth;
|
|
|
|
cc->geom = cc->fullgeom;
|
|
|
|
cc->flags &= ~(CLIENT_FULLSCREEN | CLIENT_FREEZE);
|
|
|
|
goto resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
cc->fullgeom = cc->geom;
|
|
|
|
|
|
|
|
xine = screen_find_xinerama(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_NOGAP);
|
|
|
|
|
|
|
|
cc->bwidth = 0;
|
|
|
|
cc->geom = xine;
|
|
|
|
cc->flags |= (CLIENT_FULLSCREEN | CLIENT_FREEZE);
|
|
|
|
|
|
|
|
resize:
|
|
|
|
client_resize(cc, 0);
|
|
|
|
xu_ewmh_set_net_wm_state(cc);
|
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
|
|
|
client_maximize(struct client_ctx *cc)
|
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2013-01-02 09:26:34 -07:00
|
|
|
struct geom xine;
|
2008-07-15 16:06:48 -06:00
|
|
|
|
2011-05-07 11:15:37 -06:00
|
|
|
if (cc->flags & CLIENT_FREEZE)
|
|
|
|
return;
|
|
|
|
|
2011-09-04 10:59:31 -06:00
|
|
|
if ((cc->flags & CLIENT_MAXFLAGS) == CLIENT_MAXIMIZED) {
|
2007-04-27 11:58:48 -06:00
|
|
|
cc->geom = cc->savegeom;
|
2013-12-16 12:02:17 -07:00
|
|
|
cc->flags &= ~CLIENT_MAXIMIZED;
|
2011-09-04 10:59:31 -06:00
|
|
|
goto resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((cc->flags & CLIENT_VMAXIMIZED) == 0) {
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->savegeom.h = cc->geom.h;
|
2011-09-04 10:59:31 -06:00
|
|
|
cc->savegeom.y = cc->geom.y;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2011-09-04 10:59:31 -06:00
|
|
|
if ((cc->flags & CLIENT_HMAXIMIZED) == 0) {
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->savegeom.w = cc->geom.w;
|
2011-09-04 10:59:31 -06:00
|
|
|
cc->savegeom.x = cc->geom.x;
|
|
|
|
}
|
|
|
|
|
2012-07-15 19:36:30 -06:00
|
|
|
/*
|
|
|
|
* pick screen that the middle of the window is on.
|
|
|
|
* that's probably more fair than if just the origin of
|
|
|
|
* a window is poking over a boundary
|
|
|
|
*/
|
|
|
|
xine = screen_find_xinerama(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
2013-12-13 15:39:13 -07:00
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_GAP);
|
2012-07-15 19:36:30 -06:00
|
|
|
|
2013-12-16 12:02:17 -07:00
|
|
|
cc->geom.x = xine.x;
|
|
|
|
cc->geom.y = xine.y;
|
|
|
|
cc->geom.w = xine.w - (cc->bwidth * 2);
|
|
|
|
cc->geom.h = xine.h - (cc->bwidth * 2);
|
2011-09-04 10:59:31 -06:00
|
|
|
cc->flags |= CLIENT_MAXIMIZED;
|
|
|
|
|
|
|
|
resize:
|
2012-09-09 13:47:47 -06:00
|
|
|
client_resize(cc, 0);
|
2013-05-20 15:13:58 -06:00
|
|
|
xu_ewmh_set_net_wm_state(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2008-07-15 16:12:09 -06:00
|
|
|
void
|
2013-01-04 09:30:03 -07:00
|
|
|
client_vmaximize(struct client_ctx *cc)
|
2008-07-15 16:12:09 -06:00
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2013-01-02 09:26:34 -07:00
|
|
|
struct geom xine;
|
2008-07-15 16:12:09 -06:00
|
|
|
|
2011-05-07 11:15:37 -06:00
|
|
|
if (cc->flags & CLIENT_FREEZE)
|
|
|
|
return;
|
|
|
|
|
2008-07-15 16:12:09 -06:00
|
|
|
if (cc->flags & CLIENT_VMAXIMIZED) {
|
2011-06-24 00:01:47 -06:00
|
|
|
cc->geom.y = cc->savegeom.y;
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.h = cc->savegeom.h;
|
2011-06-24 00:01:47 -06:00
|
|
|
cc->flags &= ~CLIENT_VMAXIMIZED;
|
2011-09-04 10:59:31 -06:00
|
|
|
goto resize;
|
2008-07-15 16:12:09 -06:00
|
|
|
}
|
|
|
|
|
2011-09-04 10:59:31 -06:00
|
|
|
cc->savegeom.y = cc->geom.y;
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->savegeom.h = cc->geom.h;
|
2011-09-04 10:59:31 -06:00
|
|
|
|
2012-07-15 19:36:30 -06:00
|
|
|
xine = screen_find_xinerama(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
2013-12-13 15:39:13 -07:00
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_GAP);
|
2012-07-15 19:36:30 -06:00
|
|
|
|
2013-01-07 21:12:51 -07:00
|
|
|
cc->geom.y = xine.y;
|
|
|
|
cc->geom.h = xine.h - (cc->bwidth * 2);
|
2011-09-04 10:59:31 -06:00
|
|
|
cc->flags |= CLIENT_VMAXIMIZED;
|
|
|
|
|
|
|
|
resize:
|
2012-09-09 13:47:47 -06:00
|
|
|
client_resize(cc, 0);
|
2013-05-20 15:13:58 -06:00
|
|
|
xu_ewmh_set_net_wm_state(cc);
|
2008-07-15 16:12:09 -06:00
|
|
|
}
|
|
|
|
|
2009-08-24 17:54:41 -06:00
|
|
|
void
|
2013-01-04 09:30:03 -07:00
|
|
|
client_hmaximize(struct client_ctx *cc)
|
2009-08-24 17:54:41 -06:00
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2013-01-02 09:26:34 -07:00
|
|
|
struct geom xine;
|
2009-08-24 17:54:41 -06:00
|
|
|
|
2011-05-07 11:15:37 -06:00
|
|
|
if (cc->flags & CLIENT_FREEZE)
|
|
|
|
return;
|
|
|
|
|
2009-08-24 17:54:41 -06:00
|
|
|
if (cc->flags & CLIENT_HMAXIMIZED) {
|
2011-06-24 00:01:47 -06:00
|
|
|
cc->geom.x = cc->savegeom.x;
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w = cc->savegeom.w;
|
2011-06-24 00:01:47 -06:00
|
|
|
cc->flags &= ~CLIENT_HMAXIMIZED;
|
2011-09-04 10:59:31 -06:00
|
|
|
goto resize;
|
2012-05-13 09:15:54 -06:00
|
|
|
}
|
2011-09-04 10:59:31 -06:00
|
|
|
|
|
|
|
cc->savegeom.x = cc->geom.x;
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->savegeom.w = cc->geom.w;
|
2011-09-04 10:59:31 -06:00
|
|
|
|
2012-07-15 19:36:30 -06:00
|
|
|
xine = screen_find_xinerama(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
2013-12-13 15:39:13 -07:00
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_GAP);
|
2012-07-15 19:36:30 -06:00
|
|
|
|
2013-01-07 21:12:51 -07:00
|
|
|
cc->geom.x = xine.x;
|
|
|
|
cc->geom.w = xine.w - (cc->bwidth * 2);
|
2011-09-04 10:59:31 -06:00
|
|
|
cc->flags |= CLIENT_HMAXIMIZED;
|
|
|
|
|
|
|
|
resize:
|
2012-09-09 13:47:47 -06:00
|
|
|
client_resize(cc, 0);
|
2013-05-20 15:13:58 -06:00
|
|
|
xu_ewmh_set_net_wm_state(cc);
|
2009-08-24 17:54:41 -06:00
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
2012-09-09 13:47:47 -06:00
|
|
|
client_resize(struct client_ctx *cc, int reset)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2012-09-09 13:47:47 -06:00
|
|
|
if (reset) {
|
|
|
|
cc->flags &= ~CLIENT_MAXIMIZED;
|
2013-05-20 15:13:58 -06:00
|
|
|
xu_ewmh_set_net_wm_state(cc);
|
2012-09-09 13:47:47 -06:00
|
|
|
}
|
|
|
|
|
2013-11-11 05:51:15 -07:00
|
|
|
client_draw_border(cc);
|
|
|
|
|
2009-01-22 12:01:56 -07:00
|
|
|
XMoveResizeWindow(X_Dpy, cc->win, cc->geom.x,
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.y, cc->geom.w, cc->geom.h);
|
2013-06-10 15:37:30 -06:00
|
|
|
client_config(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_move(struct client_ctx *cc)
|
|
|
|
{
|
2009-01-22 12:01:56 -07:00
|
|
|
XMoveWindow(X_Dpy, cc->win, cc->geom.x, cc->geom.y);
|
2013-06-10 15:37:30 -06:00
|
|
|
client_config(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_lower(struct client_ctx *cc)
|
|
|
|
{
|
2009-01-16 08:24:14 -07:00
|
|
|
XLowerWindow(X_Dpy, cc->win);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_raise(struct client_ctx *cc)
|
|
|
|
{
|
2009-01-16 08:24:14 -07:00
|
|
|
XRaiseWindow(X_Dpy, cc->win);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2013-06-10 15:37:30 -06:00
|
|
|
void
|
|
|
|
client_config(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
XConfigureEvent cn;
|
|
|
|
|
2013-12-17 09:10:43 -07:00
|
|
|
(void)memset(&cn, 0, sizeof(cn));
|
2013-06-10 15:37:30 -06:00
|
|
|
cn.type = ConfigureNotify;
|
|
|
|
cn.event = cc->win;
|
|
|
|
cn.window = cc->win;
|
|
|
|
cn.x = cc->geom.x;
|
|
|
|
cn.y = cc->geom.y;
|
|
|
|
cn.width = cc->geom.w;
|
|
|
|
cn.height = cc->geom.h;
|
|
|
|
cn.border_width = cc->bwidth;
|
|
|
|
cn.above = None;
|
|
|
|
cn.override_redirect = 0;
|
|
|
|
|
|
|
|
XSendEvent(X_Dpy, cc->win, False, StructureNotifyMask, (XEvent *)&cn);
|
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
|
|
|
client_ptrwarp(struct client_ctx *cc)
|
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
int x = cc->ptr.x, y = cc->ptr.y;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
if (x == -1 || y == -1) {
|
2012-07-13 11:01:04 -06:00
|
|
|
x = cc->geom.w / 2;
|
|
|
|
y = cc->geom.h / 2;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2013-12-11 07:16:09 -07:00
|
|
|
if (cc->flags & CLIENT_HIDDEN)
|
|
|
|
client_unhide(cc);
|
|
|
|
else
|
|
|
|
client_raise(cc);
|
2009-01-16 08:24:14 -07:00
|
|
|
xu_ptr_setpos(cc->win, x, y);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_ptrsave(struct client_ctx *cc)
|
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
int x, y;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2009-01-16 08:24:14 -07:00
|
|
|
xu_ptr_getpos(cc->win, &x, &y);
|
2009-05-17 18:23:35 -06:00
|
|
|
if (client_inbound(cc, x, y)) {
|
2007-04-27 11:58:48 -06:00
|
|
|
cc->ptr.x = x;
|
|
|
|
cc->ptr.y = y;
|
2011-02-13 13:09:57 -07:00
|
|
|
} else {
|
|
|
|
cc->ptr.x = -1;
|
|
|
|
cc->ptr.y = -1;
|
2008-04-15 14:24:41 -06:00
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_hide(struct client_ctx *cc)
|
|
|
|
{
|
2014-08-25 06:49:19 -06:00
|
|
|
if (cc->flags & CLIENT_STICKY)
|
|
|
|
return;
|
|
|
|
|
2009-01-16 08:24:14 -07:00
|
|
|
XUnmapWindow(X_Dpy, cc->win);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
cc->active = 0;
|
|
|
|
cc->flags |= CLIENT_HIDDEN;
|
2013-12-11 07:16:09 -07:00
|
|
|
client_set_wm_state(cc, IconicState);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2012-12-17 07:26:29 -07:00
|
|
|
if (cc == client_current())
|
2009-12-07 15:21:59 -07:00
|
|
|
client_none(cc->sc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_unhide(struct client_ctx *cc)
|
|
|
|
{
|
2014-08-25 06:49:19 -06:00
|
|
|
if (cc->flags & CLIENT_STICKY)
|
|
|
|
return;
|
|
|
|
|
2009-01-16 08:24:14 -07:00
|
|
|
XMapRaised(X_Dpy, cc->win);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
cc->flags &= ~CLIENT_HIDDEN;
|
2013-12-11 07:16:09 -07:00
|
|
|
client_set_wm_state(cc, NormalState);
|
2013-12-10 14:27:37 -07:00
|
|
|
client_draw_border(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2013-12-13 07:40:52 -07:00
|
|
|
void
|
|
|
|
client_urgency(struct client_ctx *cc)
|
|
|
|
{
|
2014-02-06 13:58:46 -07:00
|
|
|
if (!cc->active)
|
|
|
|
cc->flags |= CLIENT_URGENCY;
|
2013-12-13 07:40:52 -07:00
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
|
|
|
client_draw_border(struct client_ctx *cc)
|
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2009-05-17 17:40:57 -06:00
|
|
|
unsigned long pixel;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2009-01-16 08:24:14 -07:00
|
|
|
if (cc->active)
|
2012-12-17 10:48:57 -07:00
|
|
|
switch (cc->flags & CLIENT_HIGHLIGHT) {
|
|
|
|
case CLIENT_GROUP:
|
2013-05-19 17:09:59 -06:00
|
|
|
pixel = sc->xftcolor[CWM_COLOR_BORDER_GROUP].pixel;
|
2009-01-16 08:24:14 -07:00
|
|
|
break;
|
2012-12-17 10:48:57 -07:00
|
|
|
case CLIENT_UNGROUP:
|
2013-05-19 17:09:59 -06:00
|
|
|
pixel = sc->xftcolor[CWM_COLOR_BORDER_UNGROUP].pixel;
|
2009-01-16 08:24:14 -07:00
|
|
|
break;
|
|
|
|
default:
|
2013-05-19 17:09:59 -06:00
|
|
|
pixel = sc->xftcolor[CWM_COLOR_BORDER_ACTIVE].pixel;
|
2009-01-16 08:24:14 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
2013-05-19 17:09:59 -06:00
|
|
|
pixel = sc->xftcolor[CWM_COLOR_BORDER_INACTIVE].pixel;
|
2009-01-22 12:01:56 -07:00
|
|
|
|
2013-12-13 07:40:52 -07:00
|
|
|
if (cc->flags & CLIENT_URGENCY)
|
|
|
|
pixel = sc->xftcolor[CWM_COLOR_BORDER_URGENCY].pixel;
|
|
|
|
|
2009-01-16 08:24:14 -07:00
|
|
|
XSetWindowBorderWidth(X_Dpy, cc->win, cc->bwidth);
|
2009-05-17 17:40:57 -06:00
|
|
|
XSetWindowBorder(X_Dpy, cc->win, pixel);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2009-06-26 06:21:58 -06:00
|
|
|
static void
|
2013-05-19 11:02:04 -06:00
|
|
|
client_wm_protocols(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2009-11-28 10:52:12 -07:00
|
|
|
Atom *p;
|
2013-05-19 11:02:04 -06:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (XGetWMProtocols(X_Dpy, cc->win, &p, &j)) {
|
|
|
|
for (i = 0; i < j; i++) {
|
2013-07-15 08:50:44 -06:00
|
|
|
if (p[i] == cwmh[WM_DELETE_WINDOW])
|
2013-11-08 10:35:12 -07:00
|
|
|
cc->flags |= CLIENT_WM_DELETE_WINDOW;
|
2013-07-15 08:50:44 -06:00
|
|
|
else if (p[i] == cwmh[WM_TAKE_FOCUS])
|
2013-11-08 10:35:12 -07:00
|
|
|
cc->flags |= CLIENT_WM_TAKE_FOCUS;
|
2013-05-19 11:02:04 -06:00
|
|
|
}
|
|
|
|
XFree(p);
|
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2013-12-11 08:41:11 -07:00
|
|
|
void
|
|
|
|
client_wm_hints(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
if ((cc->wmh = XGetWMHints(X_Dpy, cc->win)) == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((cc->wmh->flags & InputHint) && (cc->wmh->input))
|
|
|
|
cc->flags |= CLIENT_INPUT;
|
2013-12-13 07:40:52 -07:00
|
|
|
|
|
|
|
if ((cc->wmh->flags & XUrgencyHint))
|
|
|
|
client_urgency(cc);
|
2013-12-11 08:41:11 -07:00
|
|
|
}
|
|
|
|
|
2013-06-10 15:37:30 -06:00
|
|
|
void
|
2013-12-12 13:15:07 -07:00
|
|
|
client_msg(struct client_ctx *cc, Atom proto, Time ts)
|
2013-06-10 15:37:30 -06:00
|
|
|
{
|
|
|
|
XClientMessageEvent cm;
|
|
|
|
|
2013-12-17 09:10:43 -07:00
|
|
|
(void)memset(&cm, 0, sizeof(cm));
|
2013-06-10 15:37:30 -06:00
|
|
|
cm.type = ClientMessage;
|
|
|
|
cm.window = cc->win;
|
2013-07-15 08:50:44 -06:00
|
|
|
cm.message_type = cwmh[WM_PROTOCOLS];
|
2013-06-10 15:37:30 -06:00
|
|
|
cm.format = 32;
|
|
|
|
cm.data.l[0] = proto;
|
2013-12-12 13:15:07 -07:00
|
|
|
cm.data.l[1] = ts;
|
2013-06-10 15:37:30 -06:00
|
|
|
|
|
|
|
XSendEvent(X_Dpy, cc->win, False, NoEventMask, (XEvent *)&cm);
|
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
void
|
|
|
|
client_send_delete(struct client_ctx *cc)
|
|
|
|
{
|
2013-11-08 10:35:12 -07:00
|
|
|
if (cc->flags & CLIENT_WM_DELETE_WINDOW)
|
2013-12-12 13:15:07 -07:00
|
|
|
client_msg(cc, cwmh[WM_DELETE_WINDOW], CurrentTime);
|
2007-04-27 11:58:48 -06:00
|
|
|
else
|
2007-05-28 12:34:27 -06:00
|
|
|
XKillClient(X_Dpy, cc->win);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_setname(struct client_ctx *cc)
|
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct winname *wn;
|
|
|
|
char *newname;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-07-15 08:50:44 -06:00
|
|
|
if (!xu_getstrprop(cc->win, ewmh[_NET_WM_NAME], &newname))
|
2011-06-23 23:40:09 -06:00
|
|
|
if (!xu_getstrprop(cc->win, XA_WM_NAME, &newname))
|
2013-01-01 07:26:29 -07:00
|
|
|
newname = xstrdup("");
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:37:02 -06:00
|
|
|
TAILQ_FOREACH(wn, &cc->nameq, entry) {
|
2007-04-27 11:58:48 -06:00
|
|
|
if (strcmp(wn->name, newname) == 0) {
|
|
|
|
/* Move to the last since we got a hit. */
|
|
|
|
TAILQ_REMOVE(&cc->nameq, wn, entry);
|
|
|
|
TAILQ_INSERT_TAIL(&cc->nameq, wn, entry);
|
|
|
|
goto match;
|
|
|
|
}
|
2014-09-08 14:37:02 -06:00
|
|
|
}
|
2009-06-19 18:22:39 -06:00
|
|
|
wn = xmalloc(sizeof(*wn));
|
2007-04-27 11:58:48 -06:00
|
|
|
wn->name = newname;
|
|
|
|
TAILQ_INSERT_TAIL(&cc->nameq, wn, entry);
|
|
|
|
cc->nameqlen++;
|
|
|
|
|
|
|
|
match:
|
|
|
|
cc->name = wn->name;
|
|
|
|
|
|
|
|
/* Now, do some garbage collection. */
|
|
|
|
if (cc->nameqlen > CLIENT_MAXNAMEQLEN) {
|
|
|
|
wn = TAILQ_FIRST(&cc->nameq);
|
|
|
|
assert(wn != NULL);
|
|
|
|
TAILQ_REMOVE(&cc->nameq, wn, entry);
|
2013-01-01 07:26:29 -07:00
|
|
|
free(wn->name);
|
2012-11-07 13:34:39 -07:00
|
|
|
free(wn);
|
2007-04-27 11:58:48 -06:00
|
|
|
cc->nameqlen--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-23 23:40:09 -06:00
|
|
|
void
|
2011-09-03 03:20:58 -06:00
|
|
|
client_cycle(struct screen_ctx *sc, int flags)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *oldcc, *newcc;
|
2008-05-01 12:01:13 -06:00
|
|
|
int again = 1;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
if (TAILQ_EMPTY(&sc->clientq))
|
2011-06-23 23:40:09 -06:00
|
|
|
return;
|
2007-06-05 13:03:20 -06:00
|
|
|
|
2014-09-08 15:24:27 -06:00
|
|
|
oldcc = client_current();
|
2008-05-01 12:01:13 -06:00
|
|
|
if (oldcc == NULL)
|
2013-04-05 11:07:25 -06:00
|
|
|
oldcc = (flags & CWM_RCYCLE ?
|
2014-09-08 14:11:22 -06:00
|
|
|
TAILQ_LAST(&sc->clientq, client_ctx_q) :
|
|
|
|
TAILQ_FIRST(&sc->clientq));
|
2007-06-05 13:03:20 -06:00
|
|
|
|
2008-05-01 12:01:13 -06:00
|
|
|
newcc = oldcc;
|
|
|
|
while (again) {
|
|
|
|
again = 0;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:32:40 -06:00
|
|
|
newcc = (flags & CWM_RCYCLE ? client_prev(newcc) :
|
|
|
|
client_next(newcc));
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-06-30 11:52:37 -06:00
|
|
|
/* Only cycle visible and non-ignored windows. */
|
2011-09-03 03:20:58 -06:00
|
|
|
if ((newcc->flags & (CLIENT_HIDDEN|CLIENT_IGNORE))
|
2014-09-08 14:37:02 -06:00
|
|
|
|| ((flags & CWM_INGROUP) &&
|
|
|
|
(newcc->group != oldcc->group)))
|
2008-05-01 12:01:13 -06:00
|
|
|
again = 1;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-05-01 12:01:13 -06:00
|
|
|
/* Is oldcc the only non-hidden window? */
|
|
|
|
if (newcc == oldcc) {
|
|
|
|
if (again)
|
2011-06-23 23:40:09 -06:00
|
|
|
return; /* No windows visible. */
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-05-19 09:17:50 -06:00
|
|
|
break;
|
2008-05-01 12:01:13 -06:00
|
|
|
}
|
|
|
|
}
|
2008-05-19 09:17:50 -06:00
|
|
|
|
2012-05-13 09:17:13 -06:00
|
|
|
/* reset when cycling mod is released. XXX I hate this hack */
|
|
|
|
sc->cycling = 1;
|
2008-05-01 12:01:13 -06:00
|
|
|
client_ptrsave(oldcc);
|
|
|
|
client_ptrwarp(newcc);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2012-05-15 19:09:17 -06:00
|
|
|
void
|
2013-11-26 17:01:23 -07:00
|
|
|
client_cycle_leave(struct screen_ctx *sc)
|
2012-05-15 19:09:17 -06:00
|
|
|
{
|
2013-11-26 17:01:23 -07:00
|
|
|
struct client_ctx *cc;
|
|
|
|
|
2012-05-15 19:09:17 -06:00
|
|
|
sc->cycling = 0;
|
|
|
|
|
2013-11-26 17:01:23 -07:00
|
|
|
if ((cc = client_current())) {
|
|
|
|
client_mtf(cc);
|
2012-05-15 19:09:17 -06:00
|
|
|
group_sticky_toggle_exit(cc);
|
|
|
|
XUngrabKeyboard(X_Dpy, CurrentTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-26 06:21:58 -06:00
|
|
|
static struct client_ctx *
|
2014-09-08 14:32:40 -06:00
|
|
|
client_next(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *ccc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
return((ccc = TAILQ_NEXT(cc, entry)) != NULL ?
|
|
|
|
ccc : TAILQ_FIRST(&sc->clientq));
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2009-06-26 06:21:58 -06:00
|
|
|
static struct client_ctx *
|
2014-09-08 14:32:40 -06:00
|
|
|
client_prev(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2008-07-11 08:21:28 -06:00
|
|
|
struct client_ctx *ccc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
return((ccc = TAILQ_PREV(cc, client_ctx_q, entry)) != NULL ?
|
|
|
|
ccc : TAILQ_LAST(&sc->clientq, client_ctx_q));
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2009-06-26 06:21:58 -06:00
|
|
|
static void
|
2007-04-27 11:58:48 -06:00
|
|
|
client_placecalc(struct client_ctx *cc)
|
|
|
|
{
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2009-01-22 12:01:56 -07:00
|
|
|
int xslack, yslack;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-11-02 13:13:56 -06:00
|
|
|
if (cc->hint.flags & (USPosition|PPosition)) {
|
2008-09-29 17:16:46 -06:00
|
|
|
/*
|
|
|
|
* Ignore XINERAMA screens, just make sure it's somewhere
|
|
|
|
* in the virtual desktop. else it stops people putting xterms
|
|
|
|
* at startup in the screen the mouse doesn't start in *sigh*.
|
|
|
|
* XRandR bits mean that {x,y}max shouldn't be outside what's
|
|
|
|
* currently there.
|
|
|
|
*/
|
2012-07-13 11:01:04 -06:00
|
|
|
xslack = sc->view.w - cc->geom.w - cc->bwidth * 2;
|
|
|
|
yslack = sc->view.h - cc->geom.h - cc->bwidth * 2;
|
2013-11-01 15:54:20 -06:00
|
|
|
cc->geom.x = MIN(cc->geom.x, xslack);
|
|
|
|
cc->geom.y = MIN(cc->geom.y, yslack);
|
2007-04-27 11:58:48 -06:00
|
|
|
} else {
|
2013-01-02 09:26:34 -07:00
|
|
|
struct geom xine;
|
2013-01-01 19:19:20 -07:00
|
|
|
int xmouse, ymouse;
|
2008-09-29 17:16:46 -06:00
|
|
|
|
|
|
|
xu_ptr_getpos(sc->rootwin, &xmouse, &ymouse);
|
2013-12-13 15:39:13 -07:00
|
|
|
xine = screen_find_xinerama(sc, xmouse, ymouse, CWM_GAP);
|
2013-01-07 14:53:23 -07:00
|
|
|
xine.w += xine.x;
|
|
|
|
xine.h += xine.y;
|
2013-01-02 09:26:34 -07:00
|
|
|
xmouse = MAX(xmouse, xine.x) - cc->geom.w / 2;
|
|
|
|
ymouse = MAX(ymouse, xine.y) - cc->geom.h / 2;
|
2009-01-22 12:01:56 -07:00
|
|
|
|
2013-01-02 09:26:34 -07:00
|
|
|
xmouse = MAX(xmouse, xine.x);
|
|
|
|
ymouse = MAX(ymouse, xine.y);
|
2008-09-29 17:16:46 -06:00
|
|
|
|
2013-01-02 09:26:34 -07:00
|
|
|
xslack = xine.w - cc->geom.w - cc->bwidth * 2;
|
|
|
|
yslack = xine.h - cc->geom.h - cc->bwidth * 2;
|
2008-09-29 17:16:46 -06:00
|
|
|
|
2013-01-02 09:26:34 -07:00
|
|
|
if (xslack >= xine.x) {
|
2013-01-07 21:12:51 -07:00
|
|
|
cc->geom.x = MAX(MIN(xmouse, xslack), xine.x);
|
2007-04-27 11:58:48 -06:00
|
|
|
} else {
|
2013-01-07 21:12:51 -07:00
|
|
|
cc->geom.x = xine.x;
|
|
|
|
cc->geom.w = xine.w;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
2013-01-02 09:26:34 -07:00
|
|
|
if (yslack >= xine.y) {
|
2013-01-07 21:12:51 -07:00
|
|
|
cc->geom.y = MAX(MIN(ymouse, yslack), xine.y);
|
2007-04-27 11:58:48 -06:00
|
|
|
} else {
|
2013-01-07 21:12:51 -07:00
|
|
|
cc->geom.y = xine.y;
|
|
|
|
cc->geom.h = xine.h;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-17 07:58:46 -07:00
|
|
|
static void
|
2007-04-27 11:58:48 -06:00
|
|
|
client_mtf(struct client_ctx *cc)
|
|
|
|
{
|
2013-11-26 17:01:23 -07:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2014-09-08 14:11:22 -06:00
|
|
|
TAILQ_REMOVE(&sc->clientq, cc, entry);
|
|
|
|
TAILQ_INSERT_HEAD(&sc->clientq, cc, entry);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2009-08-24 17:49:04 -06:00
|
|
|
void
|
|
|
|
client_getsizehints(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
long tmp;
|
2013-11-27 10:04:35 -07:00
|
|
|
XSizeHints size;
|
2009-08-24 17:49:04 -06:00
|
|
|
|
2013-11-27 10:04:35 -07:00
|
|
|
if (!XGetWMNormalHints(X_Dpy, cc->win, &size, &tmp))
|
|
|
|
size.flags = 0;
|
2009-08-24 17:49:04 -06:00
|
|
|
|
2013-11-27 10:04:35 -07:00
|
|
|
cc->hint.flags = size.flags;
|
2013-11-02 13:13:56 -06:00
|
|
|
|
2013-11-27 10:04:35 -07:00
|
|
|
if (size.flags & PBaseSize) {
|
|
|
|
cc->hint.basew = size.base_width;
|
|
|
|
cc->hint.baseh = size.base_height;
|
|
|
|
} else if (size.flags & PMinSize) {
|
|
|
|
cc->hint.basew = size.min_width;
|
|
|
|
cc->hint.baseh = size.min_height;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
2013-11-27 10:04:35 -07:00
|
|
|
if (size.flags & PMinSize) {
|
|
|
|
cc->hint.minw = size.min_width;
|
|
|
|
cc->hint.minh = size.min_height;
|
|
|
|
} else if (size.flags & PBaseSize) {
|
|
|
|
cc->hint.minw = size.base_width;
|
|
|
|
cc->hint.minh = size.base_height;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
2013-11-27 10:04:35 -07:00
|
|
|
if (size.flags & PMaxSize) {
|
|
|
|
cc->hint.maxw = size.max_width;
|
|
|
|
cc->hint.maxh = size.max_height;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
2013-11-27 10:04:35 -07:00
|
|
|
if (size.flags & PResizeInc) {
|
|
|
|
cc->hint.incw = size.width_inc;
|
|
|
|
cc->hint.inch = size.height_inc;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
2011-09-03 03:42:33 -06:00
|
|
|
cc->hint.incw = MAX(1, cc->hint.incw);
|
|
|
|
cc->hint.inch = MAX(1, cc->hint.inch);
|
2009-08-24 19:32:40 -06:00
|
|
|
|
2013-11-27 10:04:35 -07:00
|
|
|
if (size.flags & PAspect) {
|
|
|
|
if (size.min_aspect.x > 0)
|
|
|
|
cc->hint.mina = (float)size.min_aspect.y /
|
|
|
|
size.min_aspect.x;
|
|
|
|
if (size.max_aspect.y > 0)
|
|
|
|
cc->hint.maxa = (float)size.max_aspect.x /
|
|
|
|
size.max_aspect.y;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
|
|
|
}
|
2012-05-13 09:15:54 -06:00
|
|
|
|
2009-08-24 17:49:04 -06:00
|
|
|
void
|
|
|
|
client_applysizehints(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
Bool baseismin;
|
|
|
|
|
2011-09-03 03:42:33 -06:00
|
|
|
baseismin = (cc->hint.basew == cc->hint.minw) &&
|
|
|
|
(cc->hint.baseh == cc->hint.minh);
|
2009-08-24 17:49:04 -06:00
|
|
|
|
|
|
|
/* temporarily remove base dimensions, ICCCM 4.1.2.3 */
|
|
|
|
if (!baseismin) {
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w -= cc->hint.basew;
|
|
|
|
cc->geom.h -= cc->hint.baseh;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* adjust for aspect limits */
|
2013-11-27 07:20:32 -07:00
|
|
|
if (cc->hint.mina && cc->hint.maxa) {
|
|
|
|
if (cc->hint.maxa < (float)cc->geom.w / cc->geom.h)
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w = cc->geom.h * cc->hint.maxa;
|
2013-11-27 07:20:32 -07:00
|
|
|
else if (cc->hint.mina < (float)cc->geom.h / cc->geom.w)
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.h = cc->geom.w * cc->hint.mina;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* remove base dimensions for increment */
|
|
|
|
if (baseismin) {
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w -= cc->hint.basew;
|
|
|
|
cc->geom.h -= cc->hint.baseh;
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* adjust for increment value */
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w -= cc->geom.w % cc->hint.incw;
|
|
|
|
cc->geom.h -= cc->geom.h % cc->hint.inch;
|
2009-08-24 17:49:04 -06:00
|
|
|
|
|
|
|
/* restore base dimensions */
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w += cc->hint.basew;
|
|
|
|
cc->geom.h += cc->hint.baseh;
|
2009-08-24 17:49:04 -06:00
|
|
|
|
|
|
|
/* adjust for min width/height */
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w = MAX(cc->geom.w, cc->hint.minw);
|
|
|
|
cc->geom.h = MAX(cc->geom.h, cc->hint.minh);
|
2009-08-24 17:49:04 -06:00
|
|
|
|
|
|
|
/* adjust for max width/height */
|
2011-09-03 03:42:33 -06:00
|
|
|
if (cc->hint.maxw)
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.w = MIN(cc->geom.w, cc->hint.maxw);
|
2011-09-03 03:42:33 -06:00
|
|
|
if (cc->hint.maxh)
|
2012-07-13 11:01:04 -06:00
|
|
|
cc->geom.h = MIN(cc->geom.h, cc->hint.maxh);
|
2014-01-02 13:58:20 -07:00
|
|
|
|
|
|
|
cc->geom.w = MAX(cc->geom.w, 1);
|
|
|
|
cc->geom.h = MAX(cc->geom.h, 1);
|
2009-08-24 17:49:04 -06:00
|
|
|
}
|
|
|
|
|
2009-06-26 06:21:58 -06:00
|
|
|
static void
|
2013-12-11 08:46:47 -07:00
|
|
|
client_mwm_hints(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct mwm_hints *mwmh;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2013-07-15 17:51:59 -06:00
|
|
|
if (xu_getprop(cc->win, cwmh[_MOTIF_WM_HINTS], cwmh[_MOTIF_WM_HINTS],
|
2014-09-08 14:37:02 -06:00
|
|
|
PROP_MWM_HINTS_ELEMENTS, (unsigned char **)&mwmh) == MWM_NUMHINTS) {
|
2007-04-27 11:58:48 -06:00
|
|
|
if (mwmh->flags & MWM_HINTS_DECORATIONS &&
|
|
|
|
!(mwmh->decorations & MWM_DECOR_ALL) &&
|
|
|
|
!(mwmh->decorations & MWM_DECOR_BORDER))
|
|
|
|
cc->bwidth = 0;
|
2014-09-08 14:37:02 -06:00
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2011-09-13 02:41:57 -06:00
|
|
|
void
|
|
|
|
client_transient(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
struct client_ctx *tc;
|
|
|
|
Window trans;
|
|
|
|
|
|
|
|
if (XGetTransientForHint(X_Dpy, cc->win, &trans)) {
|
|
|
|
if ((tc = client_find(trans)) && tc->group) {
|
2014-08-20 09:15:29 -06:00
|
|
|
group_movetogroup(cc, tc->group->num);
|
2011-09-13 02:41:57 -06:00
|
|
|
if (tc->flags & CLIENT_IGNORE)
|
|
|
|
cc->flags |= CLIENT_IGNORE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-14 17:32:35 -07:00
|
|
|
static int
|
2009-05-17 18:23:35 -06:00
|
|
|
client_inbound(struct client_ctx *cc, int x, int y)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2014-09-07 13:27:30 -06:00
|
|
|
return(x < cc->geom.w && x >= 0 &&
|
2012-07-13 11:01:04 -06:00
|
|
|
y < cc->geom.h && y >= 0);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
2011-06-24 00:06:24 -06:00
|
|
|
|
|
|
|
int
|
2013-01-02 14:37:21 -07:00
|
|
|
client_snapcalc(int n0, int n1, int e0, int e1, int snapdist)
|
2011-06-24 00:06:24 -06:00
|
|
|
{
|
2013-01-02 14:37:21 -07:00
|
|
|
int s0, s1;
|
2011-06-24 00:06:24 -06:00
|
|
|
|
|
|
|
s0 = s1 = 0;
|
|
|
|
|
2013-01-02 14:37:21 -07:00
|
|
|
if (abs(e0 - n0) <= snapdist)
|
|
|
|
s0 = e0 - n0;
|
2011-06-24 00:06:24 -06:00
|
|
|
|
2013-01-02 14:37:21 -07:00
|
|
|
if (abs(e1 - n1) <= snapdist)
|
|
|
|
s1 = e1 - n1;
|
2011-06-24 00:06:24 -06:00
|
|
|
|
|
|
|
/* possible to snap in both directions */
|
|
|
|
if (s0 != 0 && s1 != 0)
|
|
|
|
if (abs(s0) < abs(s1))
|
2014-09-07 13:27:30 -06:00
|
|
|
return(s0);
|
2011-06-24 00:06:24 -06:00
|
|
|
else
|
2014-09-07 13:27:30 -06:00
|
|
|
return(s1);
|
2011-06-24 00:06:24 -06:00
|
|
|
else if (s0 != 0)
|
2014-09-07 13:27:30 -06:00
|
|
|
return(s0);
|
2011-06-24 00:06:24 -06:00
|
|
|
else if (s1 != 0)
|
2014-09-07 13:27:30 -06:00
|
|
|
return(s1);
|
2011-06-24 00:06:24 -06:00
|
|
|
else
|
2014-09-07 13:27:30 -06:00
|
|
|
return(0);
|
2011-06-24 00:06:24 -06:00
|
|
|
}
|
2013-01-08 08:16:04 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
client_htile(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
struct client_ctx *ci;
|
|
|
|
struct group_ctx *gc = cc->group;
|
|
|
|
struct screen_ctx *sc = cc->sc;
|
|
|
|
struct geom xine;
|
|
|
|
int i, n, mh, x, h, w;
|
|
|
|
|
|
|
|
if (!gc)
|
|
|
|
return;
|
|
|
|
i = n = 0;
|
|
|
|
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(ci, &gc->clientq, group_entry) {
|
2013-01-08 08:16:04 -07:00
|
|
|
if (ci->flags & CLIENT_HIDDEN ||
|
|
|
|
ci->flags & CLIENT_IGNORE || (ci == cc))
|
|
|
|
continue;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
if (n == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xine = screen_find_xinerama(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
2013-12-13 15:39:13 -07:00
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_GAP);
|
2013-01-08 08:16:04 -07:00
|
|
|
|
|
|
|
if (cc->flags & CLIENT_VMAXIMIZED ||
|
|
|
|
cc->geom.h + (cc->bwidth * 2) >= xine.h)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cc->flags &= ~CLIENT_HMAXIMIZED;
|
|
|
|
cc->geom.x = xine.x;
|
|
|
|
cc->geom.y = xine.y;
|
|
|
|
cc->geom.w = xine.w - (cc->bwidth * 2);
|
|
|
|
client_resize(cc, 1);
|
|
|
|
client_ptrwarp(cc);
|
|
|
|
|
|
|
|
mh = cc->geom.h + (cc->bwidth * 2);
|
|
|
|
x = xine.x;
|
|
|
|
w = xine.w / n;
|
|
|
|
h = xine.h - mh;
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(ci, &gc->clientq, group_entry) {
|
2013-01-08 08:16:04 -07:00
|
|
|
if (ci->flags & CLIENT_HIDDEN ||
|
|
|
|
ci->flags & CLIENT_IGNORE || (ci == cc))
|
|
|
|
continue;
|
|
|
|
ci->bwidth = Conf.bwidth;
|
|
|
|
ci->geom.y = xine.y + mh;
|
|
|
|
ci->geom.x = x;
|
|
|
|
ci->geom.h = h - (ci->bwidth * 2);
|
|
|
|
ci->geom.w = w - (ci->bwidth * 2);
|
|
|
|
if (i + 1 == n)
|
|
|
|
ci->geom.w = xine.x + xine.w -
|
|
|
|
ci->geom.x - (ci->bwidth * 2);
|
|
|
|
x += w;
|
|
|
|
client_resize(ci, 1);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_vtile(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
struct client_ctx *ci;
|
|
|
|
struct group_ctx *gc = cc->group;
|
|
|
|
struct screen_ctx *sc = cc->sc;
|
|
|
|
struct geom xine;
|
|
|
|
int i, n, mw, y, h, w;
|
|
|
|
|
|
|
|
if (!gc)
|
|
|
|
return;
|
|
|
|
i = n = 0;
|
|
|
|
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(ci, &gc->clientq, group_entry) {
|
2013-01-08 08:16:04 -07:00
|
|
|
if (ci->flags & CLIENT_HIDDEN ||
|
|
|
|
ci->flags & CLIENT_IGNORE || (ci == cc))
|
|
|
|
continue;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
if (n == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xine = screen_find_xinerama(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
2013-12-13 15:39:13 -07:00
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_GAP);
|
2013-01-08 08:16:04 -07:00
|
|
|
|
|
|
|
if (cc->flags & CLIENT_HMAXIMIZED ||
|
|
|
|
cc->geom.w + (cc->bwidth * 2) >= xine.w)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cc->flags &= ~CLIENT_VMAXIMIZED;
|
|
|
|
cc->geom.x = xine.x;
|
|
|
|
cc->geom.y = xine.y;
|
|
|
|
cc->geom.h = xine.h - (cc->bwidth * 2);
|
|
|
|
client_resize(cc, 1);
|
|
|
|
client_ptrwarp(cc);
|
|
|
|
|
|
|
|
mw = cc->geom.w + (cc->bwidth * 2);
|
|
|
|
y = xine.y;
|
|
|
|
h = xine.h / n;
|
|
|
|
w = xine.w - mw;
|
2014-09-08 15:15:14 -06:00
|
|
|
TAILQ_FOREACH(ci, &gc->clientq, group_entry) {
|
2013-01-08 08:16:04 -07:00
|
|
|
if (ci->flags & CLIENT_HIDDEN ||
|
|
|
|
ci->flags & CLIENT_IGNORE || (ci == cc))
|
|
|
|
continue;
|
|
|
|
ci->bwidth = Conf.bwidth;
|
|
|
|
ci->geom.y = y;
|
|
|
|
ci->geom.x = xine.x + mw;
|
|
|
|
ci->geom.h = h - (ci->bwidth * 2);
|
|
|
|
ci->geom.w = w - (ci->bwidth * 2);
|
|
|
|
if (i + 1 == n)
|
|
|
|
ci->geom.h = xine.y + xine.h -
|
|
|
|
ci->geom.y - (ci->bwidth * 2);
|
|
|
|
y += h;
|
|
|
|
client_resize(ci, 1);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
2013-12-11 07:16:09 -07:00
|
|
|
|
|
|
|
long
|
|
|
|
client_get_wm_state(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
long *p, state = -1;
|
|
|
|
|
|
|
|
if (xu_getprop(cc->win, cwmh[WM_STATE], cwmh[WM_STATE], 2L,
|
|
|
|
(unsigned char **)&p) > 0) {
|
|
|
|
state = *p;
|
|
|
|
XFree(p);
|
|
|
|
}
|
|
|
|
return(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
client_set_wm_state(struct client_ctx *cc, long state)
|
|
|
|
{
|
|
|
|
long data[] = { state, None };
|
|
|
|
|
|
|
|
XChangeProperty(X_Dpy, cc->win, cwmh[WM_STATE], cwmh[WM_STATE], 32,
|
|
|
|
PropModeReplace, (unsigned char *)data, 2);
|
|
|
|
}
|
|
|
|
|