sowm: track current client to simplify linked list implementation.

This commit is contained in:
Dylan Araps
2019-10-18 12:43:09 +03:00
parent 8917b6ddb2
commit 02b10e8585
2 changed files with 31 additions and 37 deletions

View File

@@ -15,7 +15,7 @@ const char* colors[] = {"bud", "/home/goldie/Pictures/Wallpapers", 0};
static struct key keys[] = { static struct key keys[] = {
{MOD, XK_q, win_kill, {0}}, {MOD, XK_q, win_kill, {0}},
{MOD, XK_c, win_center, {.w = 0}}, {MOD, XK_c, win_center, {0}},
{MOD, XK_f, win_fs, {0}}, {MOD, XK_f, win_fs, {0}},
{Mod1Mask, XK_Tab, win_next, {0}}, {Mod1Mask, XK_Tab, win_next, {0}},

60
sowm.c
View File

@@ -36,7 +36,7 @@ static void notify_enter(XEvent *e);
static void notify_motion(XEvent *e); static void notify_motion(XEvent *e);
static void run(const Arg arg); static void run(const Arg arg);
static void win_add(Window w); static void win_add(Window w);
static void win_center(const Arg arg); static void win_center();
static void win_del(Window w); static void win_del(Window w);
static void win_fs(); static void win_fs();
static void win_kill(); static void win_kill();
@@ -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 = {0};
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,58 +180,51 @@ void win_del(Window w) {
} }
void win_kill() { void win_kill() {
if (win_current() ^ root) XKillClient(d, cur); if (cur) XKillClient(d, cur->w);
} }
void win_center(const Arg arg) { void win_center() {
Window w = arg.w ? arg.w : win_current(); if (!cur) return;
win_size(w, &(int){0}, &(int){0}, &ww, &wh); win_size(cur->w, &(int){0}, &(int){0}, &ww, &wh);
XMoveWindow(d, cur->w, (sw - ww) / 2, (sh - wh) / 2);
XMoveWindow(d, w, (sw - ww) / 2, (sh - wh) / 2);
} }
void win_fs() { void win_fs() {
win_current(); if (!cur) return;
for win if (c->w == cur) { if ((cur->f = cur->f == 0 ? 1 : 0)) {
if ((c->f = c->f == 0 ? 1 : 0)) { win_size(cur->w, &cur->wx, &cur->wy, &cur->ww, &cur->wh);
win_size(cur, &c->wx, &c->wy, &c->ww, &c->wh); XMoveResizeWindow(d, cur->w, 0, 0, sw, sh);
XMoveResizeWindow(d, cur, 0, 0, sw, sh);
} else } else
XMoveResizeWindow(d, cur, c->wx, c->wy, c->ww, c->wh); XMoveResizeWindow(d, cur->w, cur->wx, cur->wy, cur->ww, cur->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(); if (!list) return;
for win if (c->w == cur) { client *c = cur->next ? cur->next : list;
c = c->next ? c->next : list;
win_focus(c->w); win_focus(c->w);
XRaiseWindow(d, c->w); XRaiseWindow(d, c->w);
return;
}
} }
void ws_go(const Arg arg) { void ws_go(const Arg arg) {
@@ -272,11 +265,12 @@ void map_request(XEvent *e) {
XSelectInput(d, w, StructureNotifyMask|EnterWindowMask); XSelectInput(d, w, StructureNotifyMask|EnterWindowMask);
win_size(w, &wx, &wy, &ww, &wh); win_size(w, &wx, &wy, &ww, &wh);
if (wx == 0 && wy == 0) win_center((Arg){.i = w}); win_add(w);
win_focus(w);
if (wx == 0 && wy == 0) win_center();
XMapWindow(d, w); XMapWindow(d, w);
win_focus(w);
win_add(w);
} }
void run(const Arg arg) { void run(const Arg arg) {