sowm: track current window

This commit is contained in:
Dylan Araps
2019-10-18 11:31:28 +03:00
parent 009f1cd017
commit 68257b329d

50
sowm.c
View File

@@ -45,12 +45,12 @@ static void win_to_ws(const Arg arg);
static void ws_go(const Arg arg); static void ws_go(const Arg arg);
static int xerror() { return 0;} static int xerror() { return 0;}
static client *list = {0}, *ws_list[10] = {0}; static client *list = {0}, *ws_list[10] = {0}, *cur;
static int ws = 1, sw, sh, wx, wy; static int ws = 1, sw, sh, wx, wy;
static unsigned int ww, wh; static unsigned int ww, wh;
static Display *d; static Display *d;
static Window root, cur; static Window root;
static XButtonEvent mouse; static XButtonEvent mouse;
static void (*events[LASTEvent])(XEvent *e) = { static void (*events[LASTEvent])(XEvent *e) = {
@@ -67,7 +67,6 @@ static void (*events[LASTEvent])(XEvent *e) = {
#include "config.h" #include "config.h"
#define win (client *c=list;c;c=c->next) #define win (client *c=list;c;c=c->next)
#define win_focus(W) XSetInputFocus(d, W, RevertToParent, CurrentTime)
#define ws_save(W) ws_list[W] = list #define ws_save(W) ws_list[W] = list
#define ws_sel(W) list = ws_list[ws = W] #define ws_sel(W) list = ws_list[ws = W]
@@ -75,15 +74,16 @@ static void (*events[LASTEvent])(XEvent *e) = {
XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \ XGetGeometry(d, W, &(Window){0}, gx, gy, gw, gh, \
&(unsigned int){0}, &(unsigned int){0}) &(unsigned int){0}, &(unsigned int){0})
Window win_current() { void win_focus(Window w) {
XGetInputFocus(d, &cur, &(int){1}); XSetInputFocus(d, w, RevertToParent, CurrentTime);
return cur;
for win if (c->w == w) cur = c;
} }
void notify_destroy(XEvent *e) { void notify_destroy(XEvent *e) {
win_del(e->xdestroywindow.window); win_del(e->xdestroywindow.window);
if (list) win_focus(win_current() == root ? list->w : cur); if (list) win_focus(list->w);
} }
void notify_enter(XEvent *e) { void notify_enter(XEvent *e) {
@@ -180,11 +180,11 @@ void win_del(Window w) {
} }
void win_kill() { void win_kill() {
if (win_current() ^ root) XKillClient(d, cur); if (cur->w ^ root) XKillClient(d, cur->w);
} }
void win_center(const Arg arg) { void win_center(const Arg arg) {
Window w = arg.w ? arg.w : win_current(); Window w = arg.w ? arg.w : cur->w;
win_size(w, &(int){0}, &(int){0}, &ww, &wh); win_size(w, &(int){0}, &(int){0}, &ww, &wh);
@@ -192,46 +192,36 @@ void win_center(const Arg arg) {
} }
void win_fs() { void win_fs() {
win_current(); if ((cur->f = cur->f == 0 ? 1 : 0)) {
win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
for win if (c->w == cur) { } else
if ((c->f = c->f == 0 ? 1 : 0)) { XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->wh);
win_size(cur, &c->wx, &c->wy, &c->ww, &c->wh);
XMoveResizeWindow(d, cur, 0, 0, sw, sh);
} else
XMoveResizeWindow(d, cur, c->wx, c->wy, c->ww, c->wh);
}
} }
void win_to_ws(const Arg arg) { void win_to_ws(const Arg arg) {
int tmp = ws; int tmp = ws;
win_current();
if (arg.i == tmp) return; if (arg.i == tmp) return;
ws_sel(arg.i); ws_sel(arg.i);
win_add(cur); win_add(cur->w);
ws_save(arg.i); ws_save(arg.i);
ws_sel(tmp); ws_sel(tmp);
win_del(cur); win_del(cur->w);
XUnmapWindow(d, cur); XUnmapWindow(d, cur->w);
ws_save(tmp); ws_save(tmp);
if (list) win_focus(list->w); if (list) win_focus(list->w);
} }
void win_next() { void win_next() {
win_current(); client *c = cur->next ? cur->next : list;
for win if (c->w == cur) { win_focus(c->w);
c = c->next ? c->next : list; XRaiseWindow(d, c->w);
win_focus(c->w);
XRaiseWindow(d, c->w);
return;
}
} }
void ws_go(const Arg arg) { void ws_go(const Arg arg) {