]> Pileus Git - wmpus/blob - wm-wmii.c
Add fullscreen support
[wmpus] / wm-wmii.c
1 /*
2  * Copyright (c) 2011-2012, Andy Spencer <andy753421@gmail.com>
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  */
15
16 #include <stdio.h>
17 #include <stdlib.h>
18
19 #include "util.h"
20 #include "conf.h"
21 #include "sys.h"
22 #include "wm.h"
23
24 /* Configuration */
25 #ifndef MODKEY
26 #define MODKEY alt
27 #endif
28 static int margin = 0;
29 static int stack  = 25;
30
31 /* Enums */
32 typedef enum {
33         NONE, MOVE, RESIZE
34 } drag_t;
35
36 typedef enum {
37         SPLIT, STACK, FULL, TAB
38 } mode_t;
39
40 typedef enum {
41         TILING, FLOATING
42 } layer_t;
43
44 /* Window structure types */
45 struct win_wm { };
46
47 typedef struct {
48         win_t  *win;     // the window
49         int     height;  // win height in _this_ tag
50         state_t state;   // state of window
51 } row_t;
52
53 typedef struct {
54         list_t *rows;    // of row_t
55         row_t  *row;     // focused row
56         int     width;   // column width
57         mode_t  mode;    // display mode
58 } col_t;
59
60 typedef struct {
61         win_t *win;      // the window
62         int x, y, w, h;  // position of window (in this tag)
63         state_t state;   // state of window
64 } flt_t;
65
66 typedef struct {
67         list_t *cols;    // of col_t
68         col_t  *col;     // focused col
69         list_t *flts;    // of flt_t
70         flt_t  *flt;     // focused flt
71         layer_t layer;   // focused layer
72         win_t  *geom;    // display size and position
73 } dpy_t;
74
75 typedef struct {
76         list_t *dpys;    // of dpy_t
77         dpy_t  *dpy;     // focused dpy
78         int     name;    // tag name
79 } tag_t;
80
81 typedef struct {
82         list_t *tags;    // of tag_t
83         tag_t  *tag;     // focused tag
84         win_t  *root;    // root/background window
85         list_t *screens; // display geometry
86 } wm_t;
87
88 #define WIN(node) ((win_t*)(node)->data)
89 #define ROW(node) ((row_t*)(node)->data)
90 #define COL(node) ((col_t*)(node)->data)
91 #define FLT(node) ((flt_t*)(node)->data)
92 #define DPY(node) ((dpy_t*)(node)->data)
93 #define TAG(node) ((tag_t*)(node)->data)
94
95 #define tag_foreach_col(tag, dpy, col, row, win) \
96         for (list_t *dpy =     tag ->dpys; dpy; dpy = dpy->next) \
97         for (list_t *col = DPY(dpy)->cols; col; col = col->next) \
98         for (list_t *row = COL(col)->rows; row; row = row->next) \
99         for (win_t  *win = ROW(row)->win;  win; win = NULL)
100
101 #define tag_foreach_flt(tag, dpy, flt, win) \
102         for (list_t *dpy =     tag ->dpys; dpy; dpy = dpy->next) \
103         for (list_t *flt = DPY(dpy)->flts; flt; flt = flt->next) \
104         for (win_t  *win = FLT(flt)->win;  win; win = NULL)      \
105
106 /* Window management data
107  *   wm_* macros represent the currently focused item
108  *   _only_ wm_focus protects against NULL pointers */
109 static wm_t *wm;
110 #define wm_tag   wm->tag
111 #define wm_dpy   wm->tag->dpy
112 #define wm_col   wm->tag->dpy->col
113 #define wm_row   wm->tag->dpy->col->row
114 #define wm_flt   wm->tag->dpy->flt
115 #define wm_focus get_focus()
116
117 /* Mouse drag data */
118 static drag_t  move_mode;
119 static list_t *move_lrow;
120 static list_t *move_lcol;
121 static list_t *move_lflt;
122 static ptr_t   move_prev;
123 static layer_t move_layer;
124 static struct { int v, h; } move_dir;
125
126 /********************
127  * Helper functions *
128  ********************/
129 static int sort_win(void *a, void *b)
130 {
131         return ((win_t*)a)->x > ((win_t*)b)->x ?  1 :
132                ((win_t*)a)->x < ((win_t*)b)->x ? -1 : 0;
133 }
134
135 static win_t *get_focus(void)
136 {
137         if (!wm_tag || !wm_dpy)
138                 return NULL;
139         switch (wm_dpy->layer) {
140         case TILING:
141                 return wm_col && wm_row ? wm_row->win : NULL;
142         case FLOATING:
143                 return wm_flt ? wm_flt->win : NULL;
144         }
145         return NULL;
146 }
147
148 /* Search for the target window in a given tag
149  * win may exist in other tags as well */
150 static int searchl(tag_t *tag, win_t *target,
151                 list_t **_dpy, list_t **_col, list_t **_row, list_t **_flt)
152 {
153         tag_foreach_col(tag, dpy, col, row, win) {
154                 if (win == target) {
155                         if (_dpy) *_dpy = dpy;
156                         if (_col) *_col = col;
157                         if (_row) *_row = row;
158                         return TILING;
159                 }
160         }
161         tag_foreach_flt(tag, dpy, flt, win) {
162                 if (win == target) {
163                         if (_dpy) *_dpy = dpy;
164                         if (_flt) *_flt = flt;
165                         return FLOATING;
166                 }
167         }
168         return -1;
169 }
170
171 static int search(tag_t *tag, win_t *target,
172                 dpy_t **_dpy, col_t **_col, row_t **_row, flt_t **_flt)
173 {
174         list_t *dpy, *col, *row, *flt;
175         switch (searchl(tag, target, &dpy, &col, &row, &flt)) {
176         case TILING:
177                 if (_dpy) *_dpy = DPY(dpy);
178                 if (_col) *_col = COL(col);
179                 if (_row) *_row = ROW(row);
180                 return TILING;
181         case FLOATING:
182                 if (_dpy) *_dpy = DPY(dpy);
183                 if (_flt) *_flt = FLT(flt);
184                 return FLOATING;
185         }
186         return -1;
187 }
188
189 /* Set the mode for the windows column in the current tag */
190 static void set_mode(win_t *win, mode_t mode)
191 {
192         col_t *col;
193         if (TILING != search(wm_tag, win, NULL, &col, NULL, NULL))
194                 return;
195         printf("set_mode: %p, %d -> %d\n",
196                         col, col->mode, mode);
197         col->mode = mode;
198         if (col->mode == SPLIT)
199                 for (list_t *cur = col->rows; cur; cur = cur->next) {
200                         row_t *row = cur->data;
201                         row->height = wm_dpy->geom->h;
202                 }
203         wm_update();
204 }
205
206 /* Focus the window in the current tag and record
207  * it as the currently focused window */
208 static void set_focus(win_t *win)
209 {
210         if (win == NULL || win == wm->root) {
211                 sys_focus(wm->root);
212                 return;
213         }
214
215         dpy_t *dpy; col_t *col; row_t *row; flt_t *flt;
216         switch (search(wm_tag, win, &dpy, &col, &row, &flt)) {
217         case TILING:
218                 wm_dpy = dpy;
219                 wm_col = col;
220                 wm_row = row;
221                 dpy->layer = TILING;
222                 break;
223         case FLOATING:
224                 wm_dpy = dpy;
225                 wm_flt = flt;
226                 dpy->layer = FLOATING;
227                 break;
228         }
229         sys_focus(win);
230 }
231
232 /* Save mouse start location when moving/resizing windows */
233 static void set_move(win_t *win, ptr_t ptr, drag_t drag)
234 {
235         printf("set_move: %d - %p@%d,%d\n",
236                         drag, win, ptr.rx, ptr.ry);
237         move_mode = drag;
238         if (drag == MOVE || drag == RESIZE) {
239                 move_layer = searchl(wm_tag, win, NULL,
240                                 &move_lcol, &move_lrow, &move_lflt);
241                 if (move_layer < 0)
242                         return;
243                 move_prev = ptr;
244                 int midy = win->y + (win->h/2);
245                 int midx = win->x + (win->w/2);
246                 move_dir.v = ptr.ry < midy ? -1 : +1;
247                 move_dir.h = ptr.rx < midx ? -1 : +1;
248         }
249 }
250
251 /* Print a text representation of the window layout
252  * Quite useful for debugging */
253 static void print_txt(void)
254 {
255         for (list_t *ltag = wm->tags; ltag; ltag = ltag->next) {
256                 tag_t *tag = ltag->data;
257                 printf("tag:       <%-9p [%p->%p] >%-9p d=%-9p - %d\n",
258                                 ltag->prev, ltag, ltag->data, ltag->next,
259                                 tag->dpy, tag->name);
260         for (list_t *ldpy = tag->dpys; ldpy; ldpy = ldpy->next) {
261                 dpy_t *dpy  = ldpy->data;
262                 win_t *geom = dpy->geom;
263                 printf("  dpy:     <%-9p [%p->%p] >%-9p %c=%-9p - %d,%d %dx%d\n",
264                                 ldpy->prev, ldpy, ldpy->data, ldpy->next,
265                                 dpy->layer == TILING ? 'c' : 'f',
266                                 dpy->layer == TILING ? (void*)dpy->col : (void*)dpy->flt,
267                                 geom->x, geom->y, geom->h, geom->w);
268         for (list_t *lcol = dpy->cols; lcol; lcol = lcol->next) {
269                 col_t *col = lcol->data;
270                 printf("    col:   <%-9p [%p->%p] >%-9p r=%-9p - %dpx @ %d\n",
271                                 lcol->prev, lcol, lcol->data, lcol->next,
272                                 col->row, col->width, col->mode);
273         for (list_t *lrow = col->rows; lrow; lrow = lrow->next) {
274                 row_t *row = lrow->data;
275                 win_t *win = row->win;
276                 printf("      win: <%-9p [%p>>%p] >%-9p focus=%d%d    - %4dpx \n",
277                                 lrow->prev, lrow, win, lrow->next,
278                                 col->row == row, wm_focus == win, win->h);
279         } }
280         for (list_t *lflt = dpy->flts; lflt; lflt = lflt->next) {
281                 flt_t *flt = lflt->data;
282                 win_t *win = flt->win;
283                 printf("    flt:   <%-9p [%p>>%p] >%-9p focus=%d%d    - %d,%d %dx%d \n",
284                                 lflt->prev, lflt, win, lflt->next,
285                                 dpy->flt == flt, wm_focus == flt->win,
286                                 flt->x, flt->y, flt->h, flt->w);
287         }  } }
288 }
289
290 /* Cleanly remove a window from a tag
291  *   Determines the new focused row/col
292  *   Prunes empty lists */
293 static layer_t cut_win(win_t *win, tag_t *tag)
294 {
295         list_t *ldpy, *lcol, *lrow, *lflt;
296         layer_t layer = searchl(tag, win, &ldpy, &lcol, &lrow, &lflt);
297
298         if (layer == TILING) {
299                 dpy_t *dpy = DPY(ldpy);
300                 col_t *col = COL(lcol);
301                 col->row  = lrow->prev ? lrow->prev->data :
302                             lrow->next ? lrow->next->data : NULL;
303                 col->rows = list_remove(col->rows, lrow, 1);
304                 if (col->rows == NULL && (lcol->next || lcol->prev)) {
305                         dpy->col  = lcol->prev ? lcol->prev->data :
306                                     lcol->next ? lcol->next->data : NULL;
307                         dpy->cols = list_remove(dpy->cols, lcol, 1);
308                 }
309         }
310
311         if (layer == FLOATING) {
312                 dpy_t *dpy = DPY(ldpy);
313                 dpy->flts = list_remove(dpy->flts, lflt, 1);
314                 dpy->flt  = dpy->flts ? list_last(dpy->flts)->data : NULL;
315                 if (!dpy->flt && dpy->col && dpy->col->row)
316                         dpy->layer = TILING;
317         }
318
319         return layer;
320 }
321
322 /* Insert a window into the tiling layer
323  *   The window is added immediately after the
324  *   columns currently focused row */
325 static void put_win_col(win_t *win, tag_t *tag, dpy_t *dpy, col_t *col)
326 {
327         row_t *row = new0(row_t);
328         row->win = win;
329
330         if (col == NULL) {
331                 col = new0(col_t);
332                 dpy->cols = list_insert(dpy->cols, col);
333         }
334
335         int nrows = list_length(col->rows);
336         if (col->row) {
337                 list_t *prev = list_find(col->rows, col->row);
338                 list_insert_after(prev, row);
339         } else {
340                 col->rows = list_insert(col->rows, row);
341         }
342         tag->dpy           = dpy;
343         tag->dpy->col      = col;
344         tag->dpy->col->row = row;
345         tag->dpy->layer    = TILING;
346
347         row->height = dpy->geom->h / MAX(nrows,1);
348         if (nrows == 0) {
349                 int ncols = list_length(dpy->cols);
350                 col->width = dpy->geom->w / MAX(ncols-1,1);
351         }
352 }
353
354 /* Insert a window into the floating layer */
355 static void put_win_flt(win_t *win, tag_t *tag, dpy_t *dpy)
356 {
357         flt_t *flt = new0(flt_t);
358         flt->win = win;
359         flt->w   = dpy->geom->w / 2;
360         flt->h   = dpy->geom->h / 2;
361         flt->x   = dpy->geom->x + flt->w / 2;
362         flt->y   = dpy->geom->y + flt->h / 2;
363         if (dpy->flt) {
364                 flt->x = dpy->flt->x + 20;
365                 flt->y = dpy->flt->y + 20;
366         }
367         dpy->flts = list_append(dpy->flts, flt);
368         tag->dpy        = dpy;
369         tag->dpy->flt   = flt;
370         tag->dpy->layer = FLOATING;
371 }
372
373 /* Insert a window into a tag */
374 static void put_win(win_t *win, tag_t *tag, layer_t layer)
375 {
376         if (layer == TILING)
377                 put_win_col(win, tag, tag->dpy, tag->dpy->col);
378         if (layer == FLOATING)
379                 put_win_flt(win, tag, tag->dpy);
380 }
381
382 /* Move a window up, down, left, or right
383  *   This handles moving with a column, between
384  *   columns, and between multiple monitors. */
385 static void shift_window(win_t *win, int col, int row)
386 {
387         if (!win) return;
388         printf("shift_window: %p - %+d,%+d\n", win, col, row);
389         print_txt();
390         printf("shift_window: >>>\n");
391         list_t *ldpy, *lcol, *lrow, *lflt;
392         if (TILING != searchl(wm_tag, win, &ldpy, &lcol, &lrow, &lflt))
393                 return;
394         dpy_t *dpy = ldpy->data;
395         if (row != 0) {
396                 /* Move with a column, just swap rows */
397                 list_t *src = lrow, *dst = NULL;
398                 if (row < 0) dst = src->prev;
399                 if (row > 0) dst = src->next;
400                 if (src && dst) {
401                         printf("swap: %p <-> %p\n", src->data, dst->data);
402                         row_t *tmp = src->data;
403                         src->data = dst->data;
404                         dst->data = tmp;
405                         goto update;
406                 }
407         } else {
408                 /* Moving between columns */
409                 int onlyrow = !lrow->prev && !lrow->next;
410                 list_t *src = lcol, *dst = NULL;
411                 if (col < 0) {
412                         if (src->prev) {
413                                 /* Normal move between columns */
414                                 dst = src->prev;
415                         } else if (!onlyrow) {
416                                 /* Create new column */
417                                 dpy->cols = list_insert(dpy->cols, new0(col_t));
418                                 dst = src->prev;
419                         } else if (ldpy->prev) {
420                                 /* Move to next monitor */
421                                 dpy = ldpy->prev->data;
422                                 dst = list_last(dpy->cols);
423                         } else {
424                                 /* We, shall, not, be,
425                                  * we shall not be moved */
426                                 return;
427                         }
428                 }
429                 if (col > 0) {
430                         if (src->next) {
431                                 dst = src->next;
432                         } else if (!onlyrow) {
433                                 dpy->cols = list_append(dpy->cols, new0(col_t));
434                                 dst = src->next;
435                         } else if (ldpy->next) {
436                                 dpy = ldpy->next->data;
437                                 dst = dpy->cols;
438                         } else {
439                                 return;
440                         }
441                 }
442                 cut_win(win, wm_tag);
443                 put_win_col(win, wm_tag, dpy, dst ? dst->data : NULL);
444                 goto update;
445         }
446 update:
447         print_txt();
448         wm_update();
449 }
450
451 /* Get next/prev item, with wraparound */
452 static list_t *get_next(list_t *list, int forward)
453 {
454         list_t *next = forward ? list->next : list->prev;
455         if (next == NULL) {
456                 next = list;
457                 while ((list = forward ? next->prev : next->next))
458                         next = list;
459         }
460         return next;
461 }
462
463 /* Move keyboard focus in a given direction */
464 static void shift_focus(int cols, int rows)
465 {
466         printf("shift_focus: %+d,%+d\n", cols, rows);
467         if (rows != 0 && wm_focus) {
468                 /* Move focus up/down */
469                 list_t *dpy, *col, *row;
470                 if (TILING != searchl(wm_tag, wm_focus, &dpy, &col, &row, NULL))
471                         return;
472                 row_t *next = get_next(row, rows > 0)->data;
473                 set_focus(next->win);
474                 if (COL(col)->mode != SPLIT)
475                         wm_update();
476         }
477         if (cols != 0) {
478                 /* Move focus left/right */
479                 list_t *dpy, *col, *row, *ndpy, *ncol = NULL;
480                 if (wm_focus) {
481                         /* Currently focused on a window */
482                         if (TILING != searchl(wm_tag, wm_focus, &dpy, &col, &row, NULL))
483                                 return;
484                         ncol = cols > 0 ? col->next : col->prev;
485                 } else {
486                         /* Currently focused on an empty display */
487                         dpy = list_find(wm_tag->dpys, wm_dpy);
488                 }
489                 if (ncol == NULL) {
490                         /* Moving focus to a different display */
491                         ndpy = get_next(dpy, cols > 0);
492                         ncol = cols > 0 ? DPY(ndpy)->cols :
493                                 list_last(DPY(ndpy)->cols);
494                         wm_dpy = ndpy->data;
495                 }
496                 if (ncol && COL(ncol) && COL(ncol)->row)
497                         set_focus(COL(ncol)->row->win);
498                 else
499                         sys_focus(wm->root);
500         }
501 }
502
503 /* Raise the window in the floating */
504 static void raise_float(win_t *win)
505 {
506         printf("raise_float: %p\n", win);
507         list_t *cur;
508         for (cur = wm_dpy->flts; cur; cur = cur->next)
509                 if (FLT(cur)->win == win)
510                         break;
511         if (cur) {
512                 flt_t *flt = cur->data;
513                 wm_dpy->flts = list_remove(wm_dpy->flts, cur, 0);
514                 wm_dpy->flts = list_append(wm_dpy->flts, flt);
515                 sys_raise(win);
516         }
517 }
518
519 /* Toggle between floating and tiling layers */
520 static void switch_layer(void)
521 {
522         printf("switch_float: %p %d\n",
523                         wm_dpy, wm_dpy->layer);
524         wm_dpy->layer = !wm_dpy->layer;
525         wm_update();
526 }
527
528 /* Move current window between floating and tiling layers */
529 static void set_layer(win_t *win)
530 {
531         if (!win) return;
532         printf("set_float: %p %p\n", wm_dpy, win);
533         wm_dpy->layer = !cut_win(win, wm_tag);
534         put_win(win, wm_tag, wm_dpy->layer);
535         wm_update();
536 }
537
538 /* Allocate a new tag */
539 static tag_t *tag_new(list_t *screens, int name)
540 {
541         tag_t *tag = new0(tag_t);
542         tag->name  = name;
543         for (list_t *cur = screens; cur; cur = cur->next) {
544                 dpy_t *dpy  = new0(dpy_t);
545                 dpy->geom = cur->data;
546                 tag->dpys = list_append(tag->dpys, dpy);
547         }
548         tag->dpy  = tag->dpys->data;
549         for (list_t *dpy = tag->dpys; dpy; dpy = dpy->next)
550                 if (DPY(dpy)->geom->z > tag->dpy->geom->z)
551                         tag->dpy = dpy->data;
552         return tag;
553 }
554
555 /* Search for a tag
556  *   If it does not exist it is based on the
557  *   display geometry in wm->screens */
558 static tag_t *tag_find(int name)
559 {
560         tag_t *tag = NULL;
561         for (list_t *cur = wm->tags; cur; cur = cur->next)
562                 if (name == TAG(cur)->name) {
563                         tag = cur->data;
564                         break;
565                 }
566         if (!tag) {
567                 tag = tag_new(wm->screens, name);
568                 wm->tags = list_append(wm->tags, tag);
569         }
570         return tag;
571 }
572
573 /* Move the window from the current tag to the new tag
574  *   Unlike wmii, only remove the current tag, not all tags */
575 static void tag_set(win_t *win, int name)
576 {
577         printf("tag_set: %p %d\n", win, name);
578         if (wm_tag->name == name)
579                 return;
580         tag_t *tag = tag_find(name);
581         layer_t layer = cut_win(win, wm_tag);
582         put_win(win, tag, layer);
583         set_focus(wm_focus);
584 }
585
586 /* Switch to a different tag */
587 static void tag_switch(int name)
588 {
589         printf("tag_switch: %d\n", name);
590         tag_t *old = wm_tag;
591         if ((wm_col == NULL || wm_row == NULL) && wm_flt == NULL) {
592                 while (old->dpys) {
593                         dpy_t *dpy = old->dpys->data;
594                         while (dpy->cols)
595                                 dpy->cols = list_remove(dpy->cols, dpy->cols, 1);
596                         old->dpys = list_remove(old->dpys, old->dpys, 1);
597                 }
598                 list_t *ltag = list_find(wm->tags, old);
599                 wm->tags = list_remove(wm->tags, ltag, 1);
600         }
601         wm_tag = tag_find(name);
602 }
603
604 /* Tile all windows in the given display
605  *   This performs all the actual window tiling
606  *   Currently supports  split, stack and maximized modes */
607 static void wm_update_cols(dpy_t *dpy)
608 {
609         int  x=0,  y=0; // Current window top-left position
610         int tx=0, ty=0; // Total size (sum of initial col widths and row heights w/o margin)
611         int mx=0, my=0; // Maximum usable size (screen size minus margins)
612         int       sy=0; // Stack size (height of focused stack window)
613
614         /* Scale horizontally */
615         x  = dpy->geom->x;
616         mx = dpy->geom->w - (list_length(dpy->cols)+1)*margin;
617         for (list_t *lcol = dpy->cols; lcol; lcol = lcol->next)
618                 tx += COL(lcol)->width;
619         for (list_t *lcol = dpy->cols; lcol; lcol = lcol->next)
620                 COL(lcol)->width *= (float)mx / tx;
621
622         /* Scale each column vertically */
623         win_t *focus = get_focus();
624         for (list_t *lcol = dpy->cols; lcol; lcol = lcol->next) {
625                 col_t *col = lcol->data;
626                 int nrows = list_length(col->rows);
627                 ty = 0;
628                 for (list_t *lrow = col->rows; lrow; lrow = lrow->next)
629                         ty += ROW(lrow)->height;
630                 y  = dpy->geom->y;
631                 my = dpy->geom->h - (margin + (nrows-1)* margin    + margin);
632                 sy = dpy->geom->h - (margin + (nrows-1)*(margin/2) + margin)
633                                   -           (nrows-1)* stack;
634                 for (list_t *lrow = col->rows; lrow; lrow = lrow->next) {
635                         win_t *win = ROW(lrow)->win;
636                         win->h = ROW(lrow)->height;
637                         state_t state = ST_SHOW;
638                         int height = 0;
639                         switch (col->mode) {
640                         case SPLIT:
641                                 sys_move(win, x+margin, y+margin,
642                                         col->width, win->h * ((float)my / ty));
643                                 height = win->h;
644                                 y += height + margin;
645                                 break;
646                         case STACK:
647                                 if (lrow->next && ROW(lrow->next)->win == col->row->win) {
648                                         /* Hack to prevent flashing */
649                                         win_t *next = ROW(lrow->next)->win;
650                                         sys_move(next, x+margin, y+margin+stack+margin/2,
651                                                 col->width, sy);
652                                         sys_show(next, ST_SHOW);
653                                 }
654                                 int isfocus = win == col->row->win;
655                                 state  = isfocus ? ST_SHOW : ST_SHADE;
656                                 sys_show(win, state);
657                                 sys_move(win, x+margin, y+margin, col->width, sy);
658                                 y += (isfocus ? sy : stack) + (margin/2);
659                                 break;
660                         case FULL:
661                         case TAB:
662                                 sys_move(win, x+margin, 0+margin,
663                                         col->width, dpy->geom->h-2*margin);
664                                 break;
665                         }
666                         ROW(lrow)->state = state;
667                         sys_show(win, state);
668                         if (focus == win)
669                                 sys_raise(win);
670                         ROW(lrow)->height = win->h;
671                 }
672                 x += col->width + margin;
673         }
674 }
675
676 /*******************************
677  * Window management functions *
678  *******************************/
679 void wm_update(void)
680 {
681         /* Updates window sizes */
682         for (list_t *ldpy = wm_tag->dpys; ldpy; ldpy = ldpy->next)
683                 wm_update_cols(ldpy->data);
684         tag_foreach_flt(wm_tag, ldpy, lflt, win) {
685                 flt_t *flt = lflt->data;
686                 sys_move(win, flt->x, flt->y, flt->w, flt->h);
687                 sys_raise(flt->win);
688         }
689
690         /* Show/hide tags */
691         tag_foreach_col(wm_tag, dpy, col, row, win)
692                 sys_show(win, ROW(row)->state);
693         tag_foreach_flt(wm_tag, dpy, flt, win)
694                 sys_show(win, FLT(flt)->state);
695         for (list_t *tag = wm ->tags; tag; tag = tag->next)
696                 if (tag->data != wm_tag) {
697                         tag_foreach_col(TAG(tag), dpy, col, row, win)
698                                         sys_show(win, ST_HIDE);
699                         tag_foreach_flt(TAG(tag), dpy, flt, win)
700                                         sys_show(win, ST_HIDE);
701                 }
702
703         /* Set focused window */
704         if (wm_focus)
705                 set_focus(wm_focus);
706 }
707
708 int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
709 {
710         if (!win || win == wm_dpy->geom) return 0;
711         //printf("wm_handle_event: %p - %x %c%c%c%c%c\n", win, ev,
712         //      mod.up    ? '^' : 'v',
713         //      mod.alt   ? 'a' : '-',
714         //      mod.ctrl  ? 'c' : '-',
715         //      mod.shift ? 's' : '-',
716         //      mod.win   ? 'w' : '-');
717
718         /* Mouse events */
719         if (EV_MOUSE0 <= ev && ev <= EV_MOUSE7) {
720                 if (ev == EV_MOUSE1 && !mod.MODKEY && !mod.up)
721                         return raise_float(win),         0;
722                 if (ev == EV_MOUSE1 && mod.MODKEY && !mod.up)
723                         return set_move(win,ptr,MOVE),   1;
724                 if (ev == EV_MOUSE3 && mod.MODKEY && !mod.up)
725                         return set_move(win,ptr,RESIZE), 1;
726                 if (move_mode != NONE && mod.up)
727                         return set_move(win,ptr,NONE),   1;
728                 if (ev == EV_MOUSE1 && !mod.up && win->state == ST_SHADE)
729                         return set_focus(win), wm_update(), 0;
730                 return 0;
731         }
732
733         /* Only handle key-down */
734         if (mod.up)
735                 return 0;
736
737         /* Misc */
738         if (mod.MODKEY) {
739 #ifdef DEBUG
740                 if (ev == EV_F1) return raise_float(win), 1;
741                 if (ev == EV_F2) return set_focus(win), 1;
742                 if (ev == EV_F3) return sys_show(win, ST_SHOW),  1;
743                 if (ev == EV_F4) return sys_show(win, ST_HIDE),  1;
744                 if (ev == EV_F7) return sys_show(win, ST_SHADE), 1;
745 #endif
746                 if (ev == EV_F5) return wm_update(),    1;
747                 if (ev == EV_F6) return print_txt(),    1;
748                 if (ev == 'q')   return sys_exit(),     1;
749         }
750         if (mod.MODKEY && mod.shift) {
751                 if (ev == 'c')   return sys_show(win, ST_CLOSE), 1;
752         }
753
754         /* Floating layer */
755         if (ev == ' ') {
756                 if (mod.MODKEY && mod.shift)
757                         return set_layer(win), 1;
758                 if (mod.MODKEY)
759                         return switch_layer(), 1;
760         }
761
762         /* Movement commands */
763         if (mod.MODKEY && mod.shift) {
764                 switch (ev) {
765                 case 'h': return shift_window(wm_focus,-1, 0), 1;
766                 case 'j': return shift_window(wm_focus, 0,+1), 1;
767                 case 'k': return shift_window(wm_focus, 0,-1), 1;
768                 case 'l': return shift_window(wm_focus,+1, 0), 1;
769                 default: break;
770                 }
771         }
772         else if (mod.MODKEY) {
773                 switch (ev) {
774                 case 'h': return shift_focus(-1, 0), 1;
775                 case 'j': return shift_focus( 0,+1), 1;
776                 case 'k': return shift_focus( 0,-1), 1;
777                 case 'l': return shift_focus(+1, 0), 1;
778                 default: break;
779                 }
780         }
781
782         /* Column mode commands */
783         if (mod.MODKEY) {
784                 switch (ev) {
785                 case 'd': return set_mode(win, SPLIT), 1;
786                 case 's': return set_mode(win, STACK), 1;
787                 case 'm': return set_mode(win, FULL),  1;
788                 case 't': return set_mode(win, TAB),   1;
789                 default: break;
790                 }
791         }
792
793         /* Tag switching */
794         if (mod.MODKEY && '0' <= ev && ev <= '9') {
795                 int name = ev - '0';
796                 if (mod.shift)
797                         tag_set(win, name);
798                 else
799                         tag_switch(name);
800                 wm_update();
801         }
802
803         /* Focus change */
804         if (ev == EV_ENTER && win->state != ST_SHADE)
805                 return set_focus(win), 1;
806
807         /* Reset focus after after focus change,
808          * not sure what is causing the focus change in the first place
809          * but preventing that would be a better solution */
810         if (ev == EV_FOCUS)
811                 sys_focus(wm_focus ?: wm->root);
812
813         return 0;
814 }
815
816 int wm_handle_ptr(win_t *cwin, ptr_t ptr)
817 {
818         //printf("wm_handle_ptr: %p - %d,%d %d,%d (%d) -- \n",
819         //              cwin, ptr.x, ptr.y, ptr.rx, ptr.ry, move_mode);
820
821         if (move_mode == NONE)
822                 return 0;
823
824         int dx = ptr.rx - move_prev.rx;
825         int dy = ptr.ry - move_prev.ry;
826         move_prev = ptr;
827
828         if (move_layer == TILING && move_mode == RESIZE) {
829                 list_t *vert = move_dir.v < 0 ? move_lrow->prev : move_lrow->next;
830                 list_t *horz = move_dir.h < 0 ? move_lcol->prev : move_lcol->next;
831                 if (vert) {
832                         ROW(move_lrow)->height += move_dir.v * dy;
833                         ROW(vert)->height      -= move_dir.v * dy;
834                 }
835                 if (horz) {
836                         COL(move_lcol)->width  += move_dir.h * dx;
837                         COL(horz)->width       -= move_dir.h * dx;
838                 }
839                 wm_update();
840         }
841
842         if (move_layer == FLOATING) {
843                 flt_t *flt = move_lflt->data;
844                 win_t *win = flt->win;
845                 if (move_mode == MOVE)
846                         sys_move(win, win->x+dx, win->y+dy, win->w, win->h);
847                 else if (move_mode == RESIZE)
848                         sys_move(win,
849                                 win->x + dx * (move_dir.h < 0),
850                                 win->y + dy * (move_dir.v < 0),
851                                 win->w + dx *  move_dir.h,
852                                 win->h + dy *  move_dir.v);
853                 flt->x = win->x; flt->y = win->y;
854                 flt->w = win->w; flt->h = win->h;
855         }
856
857         return 0;
858 }
859
860 void wm_insert(win_t *win)
861 {
862         printf("wm_insert: %p\n", win);
863         print_txt();
864
865         /* Initialize window */
866         win->wm = new0(win_wm_t);
867         sys_watch(win, EV_ENTER, MOD());
868         sys_watch(win, EV_FOCUS, MOD());
869
870         /* Add to screen */
871         put_win(win, wm_tag, wm_dpy->layer);
872
873         /* Arrange */
874         wm_update();
875         set_focus(win);
876         print_txt();
877 }
878
879 void wm_remove(win_t *win)
880 {
881         printf("wm_remove: %p\n", win);
882         print_txt();
883         for (list_t *tag = wm->tags; tag; tag = tag->next)
884                 cut_win(win, tag->data);
885         free(win->wm);
886         set_focus(wm_focus);
887         wm_update();
888         print_txt();
889 }
890
891 void wm_init(win_t *root)
892 {
893         printf("wm_init: %p\n", root);
894
895         /* Load configuration */
896         margin = conf_get_int("main.margin", margin);
897         stack  = conf_get_int("main.stack",  stack);
898
899         wm          = new0(wm_t);
900         wm->root    = root;
901         wm->screens = list_sort(sys_info(root), 0, sort_win);
902         wm->tag     = tag_new(wm->screens, 1);
903         wm->tags    = list_insert(NULL, wm->tag);
904
905         event_t ev_e[] = {EV_ENTER, EV_FOCUS, EV_MOUSE1};
906         event_t ev_s[] = {'h', 'j', 'k', 'l', 'c', 'q', ' ',
907                 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
908         event_t ev_m[] = {'h', 'j', 'k', 'l', 'd', 's', 'm', 't', ' ',
909                 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
910                 EV_F1, EV_F2, EV_F3, EV_F4,  EV_F5,  EV_F6,
911                 EV_F7, EV_F8, EV_F9, EV_F10, EV_F11, EV_F12,
912                 EV_MOUSE1, EV_MOUSE3};
913         for (int i = 0; i < countof(ev_e); i++)
914                 sys_watch(root, ev_e[i],  MOD());
915         for (int i = 0; i < countof(ev_m); i++)
916                 sys_watch(root, ev_m[i], MOD(.MODKEY=1));
917         for (int i = 0; i < countof(ev_s); i++)
918                 sys_watch(root, ev_s[i], MOD(.MODKEY=1,.shift=1));
919 }
920
921 void wm_free(win_t *root)
922 {
923         /* Re-show and free all windows */
924         while ( wm->tags) { tag_t *tag =  wm->tags->data;
925         while (tag->dpys) { dpy_t *dpy = tag->dpys->data;
926         while (dpy->cols) { col_t *col = dpy->cols->data;
927         while (col->rows) { row_t *row = col->rows->data;
928                 sys_show(row->win, ST_SHOW);
929                 free(row->win->wm);
930         col->rows = list_remove(col->rows, col->rows, 1); }
931         dpy->cols = list_remove(dpy->cols, dpy->cols, 1); }
932         while (dpy->flts) { flt_t *flt = dpy->flts->data;
933                 sys_show(flt->win, ST_SHOW);
934                 free(flt->win->wm);
935         dpy->flts = list_remove(dpy->flts, dpy->flts, 1); }
936         tag->dpys = list_remove(tag->dpys, tag->dpys, 1); }
937          wm->tags = list_remove( wm->tags,  wm->tags, 1); }
938
939         /* Free remaining data */
940         free(wm);
941 }