Lines Matching refs:client_win

140 	if (XFindContext(dpy, window, w_global.context.client_win, (XPointer *) & desc) == XCNOENT)  in wWindowFor()
220 XDeleteContext(dpy, wwin->client_win, w_global.context.client_win); in wWindowDestroy()
299 …status = XGetWindowProperty(dpy, wwin->client_win, w_global.atom.desktop.gtk_object_path, 0, 16, F… in discard_hints_from_gtk()
489 clientHints = XGetWMHints(dpy, wwin->client_win); in fixLeaderProperties()
490 pid = wNETWMGetPidForWindow(wwin->client_win); in fixLeaderProperties()
500 command = GetCommandForWindow(wwin->client_win); in fixLeaderProperties()
504 XSetCommand(dpy, wwin->client_win, argv, argc); in fixLeaderProperties()
661 XSaveContext(dpy, window, w_global.context.client_win, (XPointer) & wwin->client_descriptor); in wManageWindow()
680 wwin->client_win = window; in wManageWindow()
766 wwin->main_window = wwin->client_win; in wManageWindow()
796 #define ADEQUATE(x) ((x)!=None && (x)!=wwin->client_win && (x)!=fPtr->leader) in wManageWindow()
1162 XSelectInput(dpy, wwin->client_win, wwin->event_mask & ~StructureNotifyMask); in wManageWindow()
1163 XReparentWindow(dpy, wwin->client_win, wwin->frame->core->window, 0, wwin->frame->top_width); in wManageWindow()
1164 XSelectInput(dpy, wwin->client_win, wwin->event_mask); in wManageWindow()
1195 leader->main_window = leader->client_win; in wManageWindow()
1373 wwin->client_win = window; in wManageInternalWindow()
1400 XSaveContext(dpy, window, w_global.context.client_win, (XPointer) & wwin->client_descriptor); in wManageInternalWindow()
1427 XReparentWindow(dpy, wwin->client_win, wwin->frame->core->window, 0, wwin->frame->top_width); in wManageInternalWindow()
1512 XRemoveFromSaveSet(dpy, wwin->client_win); in wUnmanageWindow()
1516 if (wApplicationOf(wwin->client_win)) in wUnmanageWindow()
1517 XSelectInput(dpy, wwin->client_win, StructureNotifyMask | PropertyChangeMask); in wUnmanageWindow()
1519 XSelectInput(dpy, wwin->client_win, NoEventMask); in wUnmanageWindow()
1521 XUngrabButton(dpy, AnyButton, AnyModifier, wwin->client_win); in wUnmanageWindow()
1522 XUngrabKey(dpy, AnyKey, AnyModifier, wwin->client_win); in wUnmanageWindow()
1527 XUnmapWindow(dpy, wwin->client_win); in wUnmanageWindow()
1657 XSelectInput(dpy, wwin->client_win, wwin->event_mask & ~StructureNotifyMask); in wWindowMap()
1658 XMapWindow(dpy, wwin->client_win); in wWindowMap()
1659 XSelectInput(dpy, wwin->client_win, wwin->event_mask); in wWindowMap()
1670 XSelectInput(dpy, wwin->client_win, wwin->event_mask & ~StructureNotifyMask); in wWindowUnmap()
1671 XUnmapWindow(dpy, wwin->client_win); in wWindowUnmap()
1672 XSelectInput(dpy, wwin->client_win, wwin->event_mask); in wWindowUnmap()
2043 sevent.xconfigure.event = wwin->client_win; in wWindowSynthConfigureNotify()
2044 sevent.xconfigure.window = wwin->client_win; in wWindowSynthConfigureNotify()
2058 XSendEvent(dpy, wwin->client_win, False, StructureNotifyMask, &sevent); in wWindowSynthConfigureNotify()
2120 XResizeWindow(dpy, wwin->client_win, req_width, req_height); in wWindowConfigure()
2134 XResizeWindow(dpy, wwin->client_win, req_width, req_height); in wWindowConfigure()
2334 XMoveWindow(dpy, wwin->client_win, 0, wwin->frame->top_width); in wWindowConfigureBorders()
2412 XChangeProperty(dpy, wwin->client_win, w_global.atom.wmaker.state, in wWindowSaveState()
2475 rects = XShapeGetRectangles(dpy, wwin->client_win, ShapeBounding, &count, &ordering); in wWindowSetShape()
2533 0, wwin->frame->top_width, wwin->client_win, in wWindowSetShape()
2602 XUngrabButton(dpy, AnyButton, AnyModifier, wwin->client_win); in wWindowResetMouseGrabs()
2606 wHackedGrabButton(AnyButton, MOD_MASK, wwin->client_win, in wWindowResetMouseGrabs()
2615 wHackedGrabButton(Button4, ControlMask, wwin->client_win, in wWindowResetMouseGrabs()
2618 wHackedGrabButton(Button5, ControlMask, wwin->client_win, in wWindowResetMouseGrabs()
2622 wHackedGrabButton(Button4, MOD_MASK | ControlMask, wwin->client_win, in wWindowResetMouseGrabs()
2625 wHackedGrabButton(Button5, MOD_MASK | ControlMask, wwin->client_win, in wWindowResetMouseGrabs()
2635 XGrabButton(dpy, AnyButton, AnyModifier, wwin->client_win, in wWindowResetMouseGrabs()
2939 if (XGrabPointer(dpy, wwin->client_win, False, in frameMouseDown()