mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
85d88f3304
* refs/heads/master: (23 commits) Check the atom type on propertynotify before iterating. use screen_find() for xrandr crtc changes Find the managed screen from the parent window for client_current(). Print window id in hex; while here, remove unnecessary newline. Similar to keypress event, fetch the screen from the event root window in the buttonpress handler; bail if we don't manage the screen. Allows us to find the current client based on the screen/event root. extend verbose logging for key/button events [keypress event] turns out we've been checking the wrong window for a matching client thus always falling back to client_current(); while the current client is problaby right in most cases, use event's subwindow (not window) to find the client. Bail early if this event came to us from a screen we don't manage. This is result of us grabing all keybindings off the root window instead of selectively. add parans for readibility Teach client_current() to use a screen to find the current client instead of iterating over all (fallback if no screen provided for now). Initially convert trivial uses of client_current(). check cc->gc directly zip extra lines gc clientq inside groups, instead use the better maintained one per-screen shuffle deck chairs: rename group actions to match intent for clarity same thing as screen_find() Separate out the menu window from the client resize/move geom window; in each case, create and destroy on-demand. Isolate more menu specific code. fix a few misplaced (and misnamed) ewmh root window functions _NET_WORKAREA needs ngroups, so screen_update_geometry() needs to come after conf_group(). simplify xftcolor config Tie group number and name together during config. Move the group index (desktop number) check to the only 2 callers that require checking due to ewmh. ...
298 lines
7.1 KiB
C
298 lines
7.1 KiB
C
/*
|
|
* calmwm - the calm window manager
|
|
*
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
*
|
|
* 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.
|
|
*
|
|
* $OpenBSD$
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include "queue.h"
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "calmwm.h"
|
|
|
|
static struct geom screen_apply_gap(struct screen_ctx *, struct geom);
|
|
|
|
void
|
|
screen_init(int which)
|
|
{
|
|
struct screen_ctx *sc;
|
|
Window *wins, w0, w1, active = None;
|
|
XSetWindowAttributes rootattr;
|
|
unsigned int nwins, w;
|
|
|
|
sc = xmalloc(sizeof(*sc));
|
|
|
|
TAILQ_INIT(&sc->clientq);
|
|
TAILQ_INIT(&sc->regionq);
|
|
TAILQ_INIT(&sc->groupq);
|
|
|
|
sc->which = which;
|
|
sc->rootwin = RootWindow(X_Dpy, sc->which);
|
|
sc->colormap = DefaultColormap(X_Dpy, sc->which);
|
|
sc->visual = DefaultVisual(X_Dpy, sc->which);
|
|
sc->cycling = 0;
|
|
sc->hideall = 0;
|
|
|
|
conf_screen(sc);
|
|
|
|
xu_ewmh_net_supported(sc);
|
|
xu_ewmh_net_supported_wm_check(sc);
|
|
|
|
conf_group(sc);
|
|
screen_update_geometry(sc);
|
|
|
|
xu_ewmh_net_desktop_names(sc);
|
|
xu_ewmh_net_number_of_desktops(sc);
|
|
xu_ewmh_net_showing_desktop(sc);
|
|
xu_ewmh_net_virtual_roots(sc);
|
|
active = xu_ewmh_get_net_active_window(sc);
|
|
|
|
rootattr.cursor = Conf.cursor[CF_NORMAL];
|
|
rootattr.event_mask = SubstructureRedirectMask |
|
|
SubstructureNotifyMask | PropertyChangeMask | EnterWindowMask |
|
|
LeaveWindowMask | ColormapChangeMask | BUTTONMASK;
|
|
|
|
XChangeWindowAttributes(X_Dpy, sc->rootwin,
|
|
(CWEventMask | CWCursor), &rootattr);
|
|
|
|
/* Deal with existing clients. */
|
|
if (XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins)) {
|
|
for (w = 0; w < nwins; w++)
|
|
(void)client_init(wins[w], sc, (active == wins[w]));
|
|
|
|
XFree(wins);
|
|
}
|
|
screen_updatestackingorder(sc);
|
|
|
|
if (Conf.xrandr)
|
|
XRRSelectInput(X_Dpy, sc->rootwin, RRScreenChangeNotifyMask);
|
|
|
|
TAILQ_INSERT_TAIL(&Screenq, sc, entry);
|
|
|
|
XSync(X_Dpy, False);
|
|
}
|
|
|
|
struct screen_ctx *
|
|
screen_find(Window win)
|
|
{
|
|
struct screen_ctx *sc;
|
|
|
|
TAILQ_FOREACH(sc, &Screenq, entry) {
|
|
if (sc->rootwin == win)
|
|
return(sc);
|
|
}
|
|
warnx("%s: failure win 0x%lx", __func__, win);
|
|
return(NULL);
|
|
}
|
|
|
|
void
|
|
screen_updatestackingorder(struct screen_ctx *sc)
|
|
{
|
|
Window *wins, w0, w1;
|
|
struct client_ctx *cc;
|
|
unsigned int nwins, i, s;
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
struct region_ctx *
|
|
region_find(struct screen_ctx *sc, int x, int y)
|
|
{
|
|
struct region_ctx *rc;
|
|
|
|
TAILQ_FOREACH(rc, &sc->regionq, entry) {
|
|
if ((x >= rc->view.x) && (x < (rc->view.x + rc->view.w)) &&
|
|
(y >= rc->view.y) && (y < (rc->view.y + rc->view.h))) {
|
|
break;
|
|
}
|
|
}
|
|
return(rc);
|
|
}
|
|
|
|
struct geom
|
|
screen_area(struct screen_ctx *sc, int x, int y, enum apply_gap apply_gap)
|
|
{
|
|
struct region_ctx *rc;
|
|
struct geom area = sc->view;
|
|
|
|
TAILQ_FOREACH(rc, &sc->regionq, entry) {
|
|
if ((x >= rc->view.x) && (x < (rc->view.x + rc->view.w)) &&
|
|
(y >= rc->view.y) && (y < (rc->view.y + rc->view.h))) {
|
|
area = rc->view;
|
|
break;
|
|
}
|
|
}
|
|
if (apply_gap)
|
|
area = screen_apply_gap(sc, area);
|
|
return(area);
|
|
}
|
|
|
|
void
|
|
screen_update_geometry(struct screen_ctx *sc)
|
|
{
|
|
struct region_ctx *rc;
|
|
|
|
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 = screen_apply_gap(sc, sc->view);
|
|
|
|
while ((rc = TAILQ_FIRST(&sc->regionq)) != NULL) {
|
|
TAILQ_REMOVE(&sc->regionq, rc, entry);
|
|
free(rc);
|
|
}
|
|
|
|
if (Conf.xrandr) {
|
|
XRRScreenResources *sr;
|
|
XRRCrtcInfo *ci;
|
|
int i;
|
|
|
|
sr = XRRGetScreenResources(X_Dpy, sc->rootwin);
|
|
for (i = 0, ci = NULL; i < sr->ncrtc; i++) {
|
|
ci = XRRGetCrtcInfo(X_Dpy, sr, sr->crtcs[i]);
|
|
if (ci == NULL)
|
|
continue;
|
|
if (ci->noutput == 0) {
|
|
XRRFreeCrtcInfo(ci);
|
|
continue;
|
|
}
|
|
|
|
rc = xmalloc(sizeof(*rc));
|
|
rc->num = i;
|
|
rc->view.x = ci->x;
|
|
rc->view.y = ci->y;
|
|
rc->view.w = ci->width;
|
|
rc->view.h = ci->height;
|
|
rc->work = screen_apply_gap(sc, rc->view);
|
|
TAILQ_INSERT_TAIL(&sc->regionq, rc, entry);
|
|
|
|
XRRFreeCrtcInfo(ci);
|
|
}
|
|
XRRFreeScreenResources(sr);
|
|
} else {
|
|
rc = xmalloc(sizeof(*rc));
|
|
rc->num = 0;
|
|
rc->view.x = 0;
|
|
rc->view.y = 0;
|
|
rc->view.w = DisplayWidth(X_Dpy, sc->which);
|
|
rc->view.h = DisplayHeight(X_Dpy, sc->which);
|
|
rc->work = screen_apply_gap(sc, rc->view);
|
|
TAILQ_INSERT_TAIL(&sc->regionq, rc, entry);
|
|
}
|
|
|
|
xu_ewmh_net_desktop_geometry(sc);
|
|
xu_ewmh_net_desktop_viewport(sc);
|
|
xu_ewmh_net_workarea(sc);
|
|
}
|
|
|
|
static struct geom
|
|
screen_apply_gap(struct screen_ctx *sc, struct geom geom)
|
|
{
|
|
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);
|
|
|
|
return(geom);
|
|
}
|
|
|
|
/* Bring back clients which are beyond the screen. */
|
|
void
|
|
screen_assert_clients_within(struct screen_ctx *sc)
|
|
{
|
|
struct client_ctx *cc;
|
|
int top, left, right, bottom;
|
|
|
|
TAILQ_FOREACH(cc, &sc->clientq, entry) {
|
|
if (cc->sc != sc)
|
|
continue;
|
|
top = cc->geom.y;
|
|
left = cc->geom.x;
|
|
right = cc->geom.x + cc->geom.w + (cc->bwidth * 2) - 1;
|
|
bottom = cc->geom.y + cc->geom.h + (cc->bwidth * 2) - 1;
|
|
if ((top > sc->view.h || left > sc->view.w) ||
|
|
(bottom < 0 || right < 0)) {
|
|
cc->geom.x = sc->gap.left;
|
|
cc->geom.y = sc->gap.top;
|
|
client_move(cc);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
screen_prop_win_create(struct screen_ctx *sc, Window win)
|
|
{
|
|
sc->prop.win = XCreateSimpleWindow(X_Dpy, win, 0, 0, 1, 1, 0,
|
|
sc->xftcolor[CWM_COLOR_MENU_BG].pixel,
|
|
sc->xftcolor[CWM_COLOR_MENU_BG].pixel);
|
|
sc->prop.xftdraw = XftDrawCreate(X_Dpy, sc->prop.win,
|
|
sc->visual, sc->colormap);
|
|
|
|
XMapWindow(X_Dpy, sc->prop.win);
|
|
}
|
|
|
|
void
|
|
screen_prop_win_destroy(struct screen_ctx *sc)
|
|
{
|
|
XftDrawDestroy(sc->prop.xftdraw);
|
|
XDestroyWindow(X_Dpy, sc->prop.win);
|
|
}
|
|
|
|
void
|
|
screen_prop_win_draw(struct screen_ctx *sc, const char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
int i;
|
|
char *text;
|
|
XGlyphInfo extents;
|
|
|
|
va_start(ap, fmt);
|
|
i = vasprintf(&text, fmt, ap);
|
|
va_end(ap);
|
|
if (i < 0 || text == NULL)
|
|
err(1, "vasprintf");
|
|
|
|
XftTextExtentsUtf8(X_Dpy, sc->xftfont, (const FcChar8*)text,
|
|
strlen(text), &extents);
|
|
XResizeWindow(X_Dpy, sc->prop.win, extents.xOff, sc->xftfont->height);
|
|
XClearWindow(X_Dpy, sc->prop.win);
|
|
XftDrawStringUtf8(sc->prop.xftdraw, &sc->xftcolor[CWM_COLOR_MENU_FONT],
|
|
sc->xftfont, 0, sc->xftfont->ascent + 1,
|
|
(const FcChar8*)text, strlen(text));
|
|
|
|
free(text);
|
|
}
|