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-02-03 13:29:05 -07:00
|
|
|
* $OpenBSD: screen.c,v 1.59 2014/02/03 20:29:05 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>
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
2012-11-28 20:54:46 -07:00
|
|
|
void
|
2013-04-28 18:56:47 -06:00
|
|
|
screen_init(int which)
|
2012-11-28 20:54:46 -07:00
|
|
|
{
|
2013-04-12 08:46:30 -06:00
|
|
|
struct screen_ctx *sc;
|
2012-11-28 20:54:46 -07:00
|
|
|
Window *wins, w0, w1;
|
|
|
|
XSetWindowAttributes rootattr;
|
2014-01-03 08:29:06 -07:00
|
|
|
unsigned int nwins, i;
|
2012-11-28 20:54:46 -07:00
|
|
|
|
2013-04-12 08:46:30 -06:00
|
|
|
sc = xcalloc(1, sizeof(*sc));
|
|
|
|
|
2014-01-27 08:13:09 -07:00
|
|
|
TAILQ_INIT(&sc->mruq);
|
|
|
|
|
2012-11-28 20:54:46 -07:00
|
|
|
sc->which = which;
|
|
|
|
sc->rootwin = RootWindow(X_Dpy, sc->which);
|
2014-01-27 08:13:09 -07:00
|
|
|
conf_screen(sc);
|
2012-11-28 20:54:46 -07:00
|
|
|
|
|
|
|
xu_ewmh_net_supported(sc);
|
|
|
|
xu_ewmh_net_supported_wm_check(sc);
|
|
|
|
|
2013-04-30 15:12:20 -06:00
|
|
|
screen_update_geometry(sc);
|
|
|
|
group_init(sc);
|
2012-11-28 20:54:46 -07:00
|
|
|
|
2013-06-17 11:11:10 -06:00
|
|
|
rootattr.cursor = Conf.cursor[CF_NORMAL];
|
2012-12-18 11:39:55 -07:00
|
|
|
rootattr.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|
|
|
|
|
PropertyChangeMask|EnterWindowMask|LeaveWindowMask|
|
|
|
|
ColormapChangeMask|BUTTONMASK;
|
2012-11-28 20:54:46 -07:00
|
|
|
|
|
|
|
XChangeWindowAttributes(X_Dpy, sc->rootwin,
|
|
|
|
CWEventMask|CWCursor, &rootattr);
|
|
|
|
|
|
|
|
/* Deal with existing clients. */
|
2014-02-03 13:20:39 -07:00
|
|
|
if (XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins)) {
|
|
|
|
for (i = 0; i < nwins; i++)
|
|
|
|
(void)client_init(wins[i], sc);
|
2012-11-28 20:54:46 -07:00
|
|
|
|
2014-02-03 13:20:39 -07:00
|
|
|
XFree(wins);
|
|
|
|
}
|
2012-11-28 20:54:46 -07:00
|
|
|
screen_updatestackingorder(sc);
|
|
|
|
|
|
|
|
if (HasRandr)
|
|
|
|
XRRSelectInput(X_Dpy, sc->rootwin, RRScreenChangeNotifyMask);
|
|
|
|
|
2013-04-12 08:46:30 -06:00
|
|
|
TAILQ_INSERT_TAIL(&Screenq, sc, entry);
|
|
|
|
|
2012-11-28 20:54:46 -07:00
|
|
|
XSync(X_Dpy, False);
|
|
|
|
}
|
|
|
|
|
2007-04-27 11:58:48 -06:00
|
|
|
struct screen_ctx *
|
|
|
|
screen_fromroot(Window rootwin)
|
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
struct screen_ctx *sc;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
TAILQ_FOREACH(sc, &Screenq, entry)
|
2007-04-27 11:58:48 -06:00
|
|
|
if (sc->rootwin == rootwin)
|
|
|
|
return (sc);
|
|
|
|
|
|
|
|
/* XXX FAIL HERE */
|
2007-05-28 12:34:27 -06:00
|
|
|
return (TAILQ_FIRST(&Screenq));
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-10 10:16:51 -07:00
|
|
|
screen_updatestackingorder(struct screen_ctx *sc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-07-11 08:21:28 -06:00
|
|
|
Window *wins, w0, w1;
|
|
|
|
struct client_ctx *cc;
|
2014-01-03 08:29:06 -07:00
|
|
|
unsigned int nwins, i, s;
|
2008-07-11 08:21:28 -06:00
|
|
|
|
2014-02-03 13:29:05 -07:00
|
|
|
if (XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins)) {
|
|
|
|
for (s = 0, i = 0; i < nwins; i++) {
|
|
|
|
/* Skip hidden windows */
|
|
|
|
if ((cc = client_find(wins[i])) == NULL ||
|
|
|
|
cc->flags & CLIENT_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
cc->stackingorder = s++;
|
|
|
|
}
|
|
|
|
XFree(wins);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
}
|
2008-09-29 17:16:46 -06:00
|
|
|
|
2009-01-14 17:32:35 -07:00
|
|
|
/*
|
|
|
|
* Find which xinerama screen the coordinates (x,y) is on.
|
|
|
|
*/
|
2013-01-02 09:26:34 -07:00
|
|
|
struct geom
|
2013-12-13 15:39:13 -07:00
|
|
|
screen_find_xinerama(struct screen_ctx *sc, int x, int y, int flags)
|
2009-01-14 17:32:35 -07:00
|
|
|
{
|
|
|
|
XineramaScreenInfo *info;
|
2013-01-02 09:26:34 -07:00
|
|
|
struct geom geom;
|
2009-01-14 17:32:35 -07:00
|
|
|
int i;
|
|
|
|
|
2013-01-07 21:12:51 -07:00
|
|
|
geom = sc->work;
|
2013-01-02 09:26:34 -07:00
|
|
|
|
2012-07-18 15:53:22 -06:00
|
|
|
if (sc->xinerama == NULL)
|
2013-01-02 09:26:34 -07:00
|
|
|
return (geom);
|
2012-07-15 19:36:30 -06:00
|
|
|
|
2009-01-14 17:32:35 -07:00
|
|
|
for (i = 0; i < sc->xinerama_no; i++) {
|
|
|
|
info = &sc->xinerama[i];
|
2011-03-22 04:54:42 -06:00
|
|
|
if (x >= info->x_org && x < info->x_org + info->width &&
|
2013-01-02 09:26:34 -07:00
|
|
|
y >= info->y_org && y < info->y_org + info->height) {
|
2013-12-13 15:39:13 -07:00
|
|
|
geom.x = info->x_org;
|
|
|
|
geom.y = info->y_org;
|
|
|
|
geom.w = info->width;
|
|
|
|
geom.h = info->height;
|
2013-01-02 09:26:34 -07:00
|
|
|
break;
|
|
|
|
}
|
2009-01-14 17:32:35 -07:00
|
|
|
}
|
2013-12-13 15:39:13 -07:00
|
|
|
if (flags & CWM_GAP) {
|
|
|
|
geom.x += sc->gap.left;
|
|
|
|
geom.y += sc->gap.top;
|
|
|
|
geom.w -= (sc->gap.left + sc->gap.right);
|
|
|
|
geom.h -= (sc->gap.top + sc->gap.bottom);
|
|
|
|
}
|
2013-01-02 09:26:34 -07:00
|
|
|
return (geom);
|
2009-01-14 17:32:35 -07:00
|
|
|
}
|
2009-12-10 16:14:58 -07:00
|
|
|
|
|
|
|
void
|
2012-07-05 11:35:13 -06:00
|
|
|
screen_update_geometry(struct screen_ctx *sc)
|
2009-12-10 16:14:58 -07:00
|
|
|
{
|
2013-01-02 11:11:23 -07:00
|
|
|
XineramaScreenInfo *info = NULL;
|
|
|
|
int info_no = 0;
|
|
|
|
|
2012-07-13 08:18:04 -06:00
|
|
|
sc->view.x = 0;
|
|
|
|
sc->view.y = 0;
|
|
|
|
sc->view.w = DisplayWidth(X_Dpy, sc->which);
|
|
|
|
sc->view.h = DisplayHeight(X_Dpy, sc->which);
|
|
|
|
|
|
|
|
sc->work.x = sc->view.x + sc->gap.left;
|
|
|
|
sc->work.y = sc->view.y + sc->gap.top;
|
|
|
|
sc->work.w = sc->view.w - (sc->gap.left + sc->gap.right);
|
|
|
|
sc->work.h = sc->view.h - (sc->gap.top + sc->gap.bottom);
|
|
|
|
|
2013-01-02 11:11:23 -07:00
|
|
|
/* RandR event may have a CTRC added or removed. */
|
|
|
|
if (XineramaIsActive(X_Dpy))
|
|
|
|
info = XineramaQueryScreens(X_Dpy, &info_no);
|
|
|
|
if (sc->xinerama != NULL)
|
|
|
|
XFree(sc->xinerama);
|
|
|
|
sc->xinerama = info;
|
|
|
|
sc->xinerama_no = info_no;
|
2012-07-06 08:18:00 -06:00
|
|
|
|
2012-07-03 07:49:03 -06:00
|
|
|
xu_ewmh_net_desktop_geometry(sc);
|
|
|
|
xu_ewmh_net_workarea(sc);
|
2009-12-10 16:14:58 -07:00
|
|
|
}
|