]> Pileus Git - wmpus/commitdiff
Improve debug output
authorAndy Spencer <andy753421@gmail.com>
Sun, 2 Sep 2012 03:06:20 +0000 (03:06 +0000)
committerAndy Spencer <andy753421@gmail.com>
Sun, 2 Sep 2012 03:07:17 +0000 (03:07 +0000)
sys-x11.c
wm-wmii.c

index 51687cd653e0db61de0dbd91a99607c13ffc5ad2..1e35845db4403b101442366696f394f4dbfec301 100644 (file)
--- a/sys-x11.c
+++ b/sys-x11.c
@@ -246,16 +246,17 @@ static win_t *win_new(Display *dpy, Window xid)
                        win->parent = win_find(dpy, trans, 0);
 
                XSelectInput(dpy, xid, PropertyChangeMask);
                        win->parent = win_find(dpy, trans, 0);
 
                XSelectInput(dpy, xid, PropertyChangeMask);
-
-               wm_insert(win);
        }
 
        }
 
-       printf("win_new: %p = %p, %d (%d,%d %dx%d) - %s\n",
-                       win, dpy, (int)xid,
+       printf("win_new: win=%p x11=(%p,%d) state=%x pos=(%d,%d %dx%d) type=%s\n",
+                       win, dpy, (int)xid, win->state,
                        win->x, win->y, win->w, win->h,
                        win->x, win->y, win->w, win->h,
-                       win->type == TYPE_NORMAL  ? "normal" :
-                       win->type == TYPE_DIALOG  ? "dialog" :
-                       win->type == TYPE_TOOLBAR ? "normal" : "unknown");
+                       win->type == TYPE_NORMAL  ? "normal"  :
+                       win->type == TYPE_DIALOG  ? "dialog"  :
+                       win->type == TYPE_TOOLBAR ? "toolbar" : "unknown");
+
+       if (root)
+               wm_insert(win);
 
        return win;
 }
 
        return win;
 }
@@ -382,7 +383,7 @@ static void process_event(int type, XEvent *xe, win_t *root)
        if (type == KeyPress) {
                while (XCheckTypedEvent(dpy, KeyPress, xe));
                KeySym sym = XLookupKeysym(&xe->xkey, 0);
        if (type == KeyPress) {
                while (XCheckTypedEvent(dpy, KeyPress, xe));
                KeySym sym = XLookupKeysym(&xe->xkey, 0);
-               printf("got xe %c %hhx\n", xk2ev(sym), mod2int(mod));
+               //printf("got xe %c %hhx\n", xk2ev(sym), mod2int(mod));
                wm_handle_event(win, xk2ev(sym), mod, ptr);
        }
        else if (type == KeyRelease) {
                wm_handle_event(win, xk2ev(sym), mod, ptr);
        }
        else if (type == KeyRelease) {
@@ -428,6 +429,7 @@ static void process_event(int type, XEvent *xe, win_t *root)
        else if (type == UnmapNotify) {
                if ((win = win_find(dpy,xe->xunmap.window,0)) &&
                     win->state != ST_HIDE) {
        else if (type == UnmapNotify) {
                if ((win = win_find(dpy,xe->xunmap.window,0)) &&
                     win->state != ST_HIDE) {
+                       printf("unmap: %lx\n", xe->xunmap.window);
                        wm_handle_state(win, win->state, ST_HIDE);
                        win->state = ST_HIDE;
                }
                        wm_handle_state(win, win->state, ST_HIDE);
                        win->state = ST_HIDE;
                }
@@ -478,6 +480,7 @@ static void process_event(int type, XEvent *xe, win_t *root)
                        state_t next = (cme->data.l[0] == 1 || /* _NET_WM_STATE_ADD    */
                                       (cme->data.l[0] == 2 && /* _NET_WM_STATE_TOGGLE */
                                        win->state != ST_FULL)) ? ST_FULL : ST_SHOW;
                        state_t next = (cme->data.l[0] == 1 || /* _NET_WM_STATE_ADD    */
                                       (cme->data.l[0] == 2 && /* _NET_WM_STATE_TOGGLE */
                                        win->state != ST_FULL)) ? ST_FULL : ST_SHOW;
+                       printf("client_msg: fullscreen %x -> %x", win->state, next);
                        wm_handle_state(win, win->state, next);
                        sys_show(win, next);
                }
                        wm_handle_state(win, win->state, next);
                        sys_show(win, next);
                }
@@ -544,7 +547,7 @@ void sys_raise(win_t *win)
 
 void sys_focus(win_t *win)
 {
 
 void sys_focus(win_t *win)
 {
-       printf("sys_focus: %p\n", win);
+       //printf("sys_focus: %p\n", win);
 
        /* Set actual focus */
        XSetInputFocus(win->sys->dpy, win->sys->xid,
 
        /* Set actual focus */
        XSetInputFocus(win->sys->dpy, win->sys->xid,
index ef54d6b93ab5e39a37a24ae220d786b870887de0..f5158f56215b758b6246e72b4e58fb39412924f4 100644 (file)
--- a/wm-wmii.c
+++ b/wm-wmii.c
@@ -277,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;
        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);
        } }
                                lrow->prev, lrow, win, lrow->next,
                                col->row == row, wm_focus == win, win->h);
        } }
@@ -872,6 +872,7 @@ int wm_handle_state(win_t *win, state_t prev, state_t next)
        row_t *row = NULL;
        flt_t *flt = NULL;
 
        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) row->state = next;
        search(wm_tag, win, NULL, NULL, &row, &flt);
 
        if (row) row->state = next;