]> Pileus Git - wmpus/blobdiff - wm-wmii.c
Fix closing focused window
[wmpus] / wm-wmii.c
index 06a258fd49d954af42a94a16b3521fc2a7db9c4b..b5b09806a893752353cb4a0880fdaf79645dca33 100644 (file)
--- a/wm-wmii.c
+++ b/wm-wmii.c
@@ -15,6 +15,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "util.h"
 #include "conf.h"
@@ -45,44 +46,44 @@ typedef enum {
 struct win_wm { };
 
 typedef struct {
-       win_t   *win;     // the window
-       int      height;  // win height in _this_ tag
-       state_t  state;   // state of window
+       win_t   *win;      // the window
+       int      height;   // win height in _this_ tag
+       state_t  state;    // state of window
 } row_t;
 
 typedef struct {
-       list_t  *rows;    // of row_t
-       row_t   *row;     // focused row
-       int      width;   // column width
-       layout_t layout;  // column layout
+       list_t  *rows;     // of row_t
+       row_t   *row;      // focused row
+       int      width;    // column width
+       layout_t layout;   // column layout
 } col_t;
 
 typedef struct {
-       win_t   *win;     // the window
-       int x, y, w, h;   // position of window (in this tag)
-       state_t  state;   // state of window
+       win_t   *win;      // the window
+       int x, y, w, h;    // position of window (in this tag)
+       state_t  state;    // state of window
 } flt_t;
 
 typedef struct {
-       list_t  *cols;    // of col_t
-       col_t   *col;     // focused col
-       list_t  *flts;    // of flt_t
-       flt_t   *flt;     // focused flt
-       layer_t  layer;   // focused layer
-       win_t   *geom;    // display size and position
+       list_t  *cols;     // of col_t
+       col_t   *col;      // focused col
+       list_t  *flts;     // of flt_t
+       flt_t   *flt;      // focused flt
+       layer_t  layer;    // focused layer
+       win_t   *geom;     // display size and position
 } dpy_t;
 
 typedef struct {
-       list_t  *dpys;    // of dpy_t
-       dpy_t   *dpy;     // focused dpy
-       int      name;    // tag name
+       list_t  *dpys;     // of dpy_t
+       dpy_t   *dpy;      // focused dpy
+       char     name[64]; // tag name
 } tag_t;
 
 typedef struct {
-       list_t  *tags;    // of tag_t
-       tag_t   *tag;     // focused tag
-       win_t   *root;    // root/background window
-       list_t  *screens; // display geometry
+       list_t  *tags;     // of tag_t
+       tag_t   *tag;      // focused tag
+       win_t   *root;     // root/background window
+       list_t  *screens;  // display geometry
 } wm_t;
 
 #define WIN(node) ((win_t*)(node)->data)
@@ -123,6 +124,9 @@ static ptr_t   move_prev;
 static layer_t move_layer;
 static struct { int v, h; } move_dir;
 
+/* Prototypes */
+void wm_update(void);
+
 /********************
  * Helper functions *
  ********************/
@@ -254,7 +258,7 @@ static void print_txt(void)
 {
        for (list_t *ltag = wm->tags; ltag; ltag = ltag->next) {
                tag_t *tag = ltag->data;
-               printf("tag:       <%-9p [%p->%p] >%-9p d=%-9p - %d\n",
+               printf("tag:       <%-9p [%p->%p] >%-9p d=%-9p - %s\n",
                                ltag->prev, ltag, ltag->data, ltag->next,
                                tag->dpy, tag->name);
        for (list_t *ldpy = tag->dpys; ldpy; ldpy = ldpy->next) {
@@ -273,7 +277,7 @@ static void print_txt(void)
        for (list_t *lrow = col->rows; lrow; lrow = lrow->next) {
                row_t *row = lrow->data;
                win_t *win = row->win;
-               printf("      win: <%-9p [%p>>%p] >%-9p focus=%d%d    - %4dpx \n",
+               printf("      row: <%-9p [%p>>%p] >%-9p focus=%d%d    - %4dpx \n",
                                lrow->prev, lrow, win, lrow->next,
                                col->row == row, wm_focus == win, win->h);
        } }
@@ -538,10 +542,10 @@ static void set_layer(win_t *win)
 }
 
 /* Allocate a new tag */
-static tag_t *tag_new(list_t *screens, int name)
+static tag_t *tag_new(list_t *screens, const char *name)
 {
        tag_t *tag = new0(tag_t);
-       tag->name  = name;
+       strncpy(tag->name, name, sizeof(tag->name));
        for (list_t *cur = screens; cur; cur = cur->next) {
                dpy_t *dpy  = new0(dpy_t);
                dpy->geom = cur->data;
@@ -557,11 +561,11 @@ static tag_t *tag_new(list_t *screens, int name)
 /* Search for a tag
  *   If it does not exist it is based on the
  *   display geometry in wm->screens */
-static tag_t *tag_find(int name)
+static tag_t *tag_find(const char *name)
 {
        tag_t *tag = NULL;
        for (list_t *cur = wm->tags; cur; cur = cur->next)
-               if (name == TAG(cur)->name) {
+               if (!strcmp(name, TAG(cur)->name)) {
                        tag = cur->data;
                        break;
                }
@@ -574,10 +578,10 @@ static tag_t *tag_find(int name)
 
 /* Move the window from the current tag to the new tag
  *   Unlike wmii, only remove the current tag, not all tags */
-static void tag_set(win_t *win, int name)
+static void tag_set(win_t *win, const char *name)
 {
-       printf("tag_set: %p %d\n", win, name);
-       if (wm_tag->name == name)
+       printf("tag_set: %p %s\n", win, name);
+       if (!strcmp(wm_tag->name, name))
                return;
        tag_t *tag = tag_find(name);
        layer_t layer = cut_win(win, wm_tag);
@@ -586,9 +590,9 @@ static void tag_set(win_t *win, int name)
 }
 
 /* Switch to a different tag */
-static void tag_switch(int name)
+static void tag_switch(const char *name)
 {
-       printf("tag_switch: %d\n", name);
+       printf("tag_switch: %s\n", name);
        tag_t *old = wm_tag;
        if ((wm_col == NULL || wm_row == NULL) && wm_flt == NULL) {
                while (old->dpys) {
@@ -678,9 +682,7 @@ static void wm_update_cols(dpy_t *dpy)
        }
 }
 
-/*******************************
- * Window management functions *
- *******************************/
+/* Refresh the window layout */
 void wm_update(void)
 {
        /* Updates window sizes */
@@ -697,9 +699,9 @@ void wm_update(void)
        for (list_t *tag = wm ->tags; tag; tag = tag->next)
                if (tag->data != wm_tag) {
                        tag_foreach_col(TAG(tag), dpy, col, row, win)
-                                       sys_show(win, ST_HIDE);
+                               sys_show(win, ST_HIDE);
                        tag_foreach_flt(TAG(tag), dpy, flt, win)
-                                       sys_show(win, ST_HIDE);
+                               sys_show(win, ST_HIDE);
                }
 
        /* Set focused window */
@@ -707,9 +709,13 @@ void wm_update(void)
                set_focus(wm_focus);
 }
 
+/*******************************
+ * Window management functions *
+ *******************************/
 int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
 {
-       if (!win || win == wm_dpy->geom) return 0;
+       if (!win || win == wm_dpy->geom)
+               return 0;
        //printf("wm_handle_event: %p - %x %c%c%c%c%c\n", win, ev,
        //      mod.up    ? '^' : 'v',
        //      mod.alt   ? 'a' : '-',
@@ -721,10 +727,11 @@ int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
        if (EV_MOUSE0 <= ev && ev <= EV_MOUSE7) {
                if (ev == EV_MOUSE1 && !mod.MODKEY && !mod.up)
                        return raise_float(win),         0;
+               if ((ev == EV_MOUSE3 && mod.MODKEY && !mod.up) ||
+                   (ev == EV_MOUSE1 && mod.MODKEY && !mod.up && mod.shift))
+                       return set_move(win,ptr,RESIZE), 1;
                if (ev == EV_MOUSE1 && mod.MODKEY && !mod.up)
                        return set_move(win,ptr,MOVE),   1;
-               if (ev == EV_MOUSE3 && mod.MODKEY && !mod.up)
-                       return set_move(win,ptr,RESIZE), 1;
                if (move_mode != NONE && mod.up)
                        return set_move(win,ptr,NONE),   1;
                if (ev == EV_MOUSE1 && !mod.up && win->state == ST_SHADE)
@@ -734,7 +741,7 @@ int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
 
        /* Only handle key-down */
        if (mod.up)
-               return 0;
+               return mod.MODKEY || ev == EV_ALT;
 
        /* Misc */
        if (mod.MODKEY) {
@@ -750,6 +757,8 @@ int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
                if (ev == 'q')   return sys_exit(),     1;
                if (ev == 'f')   return wm_handle_state(win, win->state,
                        win->state == ST_FULL ? ST_SHOW : ST_FULL);
+               if (ev == 'g')   return wm_handle_state(win, win->state,
+                       win->state == ST_MAX  ? ST_SHOW : ST_MAX);
        }
        if (mod.MODKEY && mod.shift) {
                if (ev == 'c')   return sys_show(win, ST_CLOSE), 1;
@@ -796,7 +805,7 @@ int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
 
        /* Tag switching */
        if (mod.MODKEY && '0' <= ev && ev <= '9') {
-               int name = ev - '0';
+               char name[] = {ev, '\0'};
                if (mod.shift)
                        tag_set(win, name);
                else
@@ -814,7 +823,7 @@ int wm_handle_event(win_t *win, event_t ev, mod_t mod, ptr_t ptr)
        if (ev == EV_FOCUS)
                sys_focus(wm_focus ?: wm->root);
 
-       return 0;
+       return mod.MODKEY;
 }
 
 int wm_handle_ptr(win_t *cwin, ptr_t ptr)
@@ -866,8 +875,15 @@ int wm_handle_state(win_t *win, state_t prev, state_t next)
        row_t *row = NULL;
        flt_t *flt = NULL;
 
+       printf("wm_handle_state - %p %x -> %x\n", win, prev, next);
+
        search(wm_tag, win, NULL, NULL, &row, &flt);
 
+       if (!row && !flt && next == ST_SHOW)
+               return wm_insert(win), 1;
+       if ((row || flt) && (next == ST_HIDE || next == ST_ICON))
+               return wm_remove(win), 1;
+
        if (row) row->state = next;
        if (flt) flt->state = next;
 
@@ -883,12 +899,17 @@ void wm_insert(win_t *win)
        printf("wm_insert: %p\n", win);
        print_txt();
 
+       /* Check for toolbars */
+       if (win->type == TYPE_TOOLBAR)
+               return wm_update();
+
        /* Initialize window */
-       win->wm = new0(win_wm_t);
        sys_watch(win, EV_ENTER, MOD());
        sys_watch(win, EV_FOCUS, MOD());
 
        /* Add to screen */
+       if (win->type == TYPE_DIALOG || win->parent)
+               wm_dpy->layer = FLOATING;
        put_win(win, wm_tag, wm_dpy->layer);
 
        /* Arrange */
@@ -901,9 +922,10 @@ void wm_remove(win_t *win)
 {
        printf("wm_remove: %p\n", win);
        print_txt();
+       if (win->type == TYPE_TOOLBAR)
+               return wm_update();
        for (list_t *tag = wm->tags; tag; tag = tag->next)
                cut_win(win, tag->data);
-       free(win->wm);
        set_focus(wm_focus);
        wm_update();
        print_txt();
@@ -920,13 +942,14 @@ void wm_init(win_t *root)
        wm          = new0(wm_t);
        wm->root    = root;
        wm->screens = list_sort(sys_info(root), 0, sort_win);
-       wm->tag     = tag_new(wm->screens, 1);
+       wm->tag     = tag_new(wm->screens, "1");
        wm->tags    = list_insert(NULL, wm->tag);
 
        event_t ev_e[] = {EV_ENTER, EV_FOCUS};
        event_t ev_s[] = {'h', 'j', 'k', 'l', 'c', 'q', ' ',
-               '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
-       event_t ev_m[] = {'h', 'j', 'k', 'l', 'd', 's', 'm', 't', 'f', ' ',
+               '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
+               EV_MOUSE1, EV_MOUSE3};
+       event_t ev_m[] = {'h', 'j', 'k', 'l', 'd', 's', 'm', 't', 'f', 'g', ' ',
                '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
                EV_F1, EV_F2, EV_F3, EV_F4,  EV_F5,  EV_F6,
                EV_F7, EV_F8, EV_F9, EV_F10, EV_F11, EV_F12,
@@ -947,12 +970,10 @@ void wm_free(win_t *root)
        while (dpy->cols) { col_t *col = dpy->cols->data;
        while (col->rows) { row_t *row = col->rows->data;
                sys_show(row->win, ST_SHOW);
-               free(row->win->wm);
        col->rows = list_remove(col->rows, col->rows, 1); }
        dpy->cols = list_remove(dpy->cols, dpy->cols, 1); }
        while (dpy->flts) { flt_t *flt = dpy->flts->data;
                sys_show(flt->win, ST_SHOW);
-               free(flt->win->wm);
        dpy->flts = list_remove(dpy->flts, dpy->flts, 1); }
        tag->dpys = list_remove(tag->dpys, tag->dpys, 1); }
         wm->tags = list_remove( wm->tags,  wm->tags, 1); }