--- menus.c-orig 2009-10-10 20:22:14.000000000 +0200 +++ menus.c 2009-10-10 20:22:13.000000000 +0200 @@ -2674,14 +2674,20 @@ if (DeferExecution(context, func, action, Scr->SelectCursor)) return TRUE; - if (tmp_win->isicon || !tmp_win->mapped ) - { + if (tmp_win->isicon || !tmp_win->mapped ) { DeIconify(tmp_win); } - else if (func == F_ICONIFY) - { - Iconify (tmp_win, eventp->xbutton.x_root - 5, - eventp->xbutton.y_root - 5); + else if (func == F_ICONIFY) { + if ( tmp_win->root == Scr->VirtualDesktop ) { + Iconify (tmp_win, + eventp->xbutton.x_root - 5 + Scr->vdtPositionX, + eventp->xbutton.y_root - 5 + Scr->vdtPositionY + ); + } + else { + Iconify (tmp_win, eventp->xbutton.x_root - 5, + eventp->xbutton.y_root - 5); + } } break; @@ -3091,6 +3097,50 @@ RelativeMove(tmp_win, action); break; + case F_DUMPSTATE: + printf("doing dumpstate\n"); + { + Window RootW; + Window root, parent, *children; + unsigned int nchildren; + unsigned int numscr; + unsigned int i; + unsigned int scr; + + numscr = ScreenCount(dpy); + printf("# of screens: %d\n",numscr); + for(scr = 0; scr <= (numscr-1); scr++) { + RootW = RootWindow(dpy, scr); + printf("rootw: 0x%x\n",RootW); + XGrabServer(dpy); + XSync(dpy, 0); + XQueryTree(dpy, RootW, &root, &parent, &children, &nchildren); + for (i = 0; i < nchildren; i++) { + if (children[i]) { + XWMHints *wmhintsp = XGetWMHints (dpy, children[i]); + if (wmhintsp) { + if (wmhintsp->flags) { + printf("i: %d wmhints w: 0x%x flags: %d ", + i,children[i], wmhintsp->flags + ); + if ( wmhintsp->flags & StateHint ) { + printf("state: %d ", + wmhintsp->initial_state); + } + printf("\n"); + } + } + } + else { + printf(" NOT DEFINED\n"); + } + } + } + XUngrabServer(dpy); + XFree(children); + } + break; + case F_QUIT: Done(); break; @@ -3188,6 +3238,7 @@ case F_DESTROY: case F_DELETE: case F_DELETEORDESTROY: + case F_DUMPSTATE: case F_WINREFRESH: case F_ZOOM: case F_FULLZOOM: ependabot/npm_and_yarn/devel/electron4/files/lodash.merge-4.6.2 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/games/quake2-3zb2/distinfo
Commit message (Expand)AuthorAgeFilesLines