2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <X11/Xutil.h>
25 #include <X11/keysym.h>
31 #include "WindowMaker.h"
39 #include "workspace.h"
45 #include <WINGs/WINGsP.h>
47 /* How many different types of geometry/position
48 display thingies are there? */
49 #define NUM_DISPLAYS 5
53 #define HORIZONTAL (LEFT|RIGHT)
56 #define VERTICAL (UP|DOWN)
58 /* True if window currently has a border. This also includes borderless
59 * windows which are currently selected
61 #define HAS_BORDER_WITH_SELECT(w) ((w)->flags.selected || HAS_BORDER(w))
63 /****** Global Variables ******/
64 extern Cursor wCursor
[WCUR_LAST
];
65 extern WPreferences wPreferences
;
68 *----------------------------------------------------------------------
69 * checkMouseSamplingRate-
70 * For lowering the mouse motion sampling rate for machines where
71 * it's too high (SGIs). If it returns False then the event should be
73 *----------------------------------------------------------------------
75 static Bool
checkMouseSamplingRate(XEvent
* ev
)
77 static Time previousMotion
= 0;
79 if (ev
->type
== MotionNotify
) {
80 if (ev
->xmotion
.time
- previousMotion
< DELAY_BETWEEN_MOUSE_SAMPLING
) {
83 previousMotion
= ev
->xmotion
.time
;
90 *----------------------------------------------------------------------
91 * moveGeometryDisplayCentered
93 * routine that moves the geometry/position window on scr so it is
94 * centered over the given coordinates (x,y). Also the window position
95 * is clamped so it stays on the screen at all times.
96 *----------------------------------------------------------------------
98 static void moveGeometryDisplayCentered(WScreen
* scr
, int x
, int y
)
100 unsigned int w
= WMWidgetWidth(scr
->gview
);
101 unsigned int h
= WMWidgetHeight(scr
->gview
);
102 int x1
= 0, y1
= 0, x2
= scr
->scr_width
, y2
= scr
->scr_height
;
107 /* dead area check */
108 if (scr
->xine_info
.count
) {
115 rect
.size
.height
= h
;
117 head
= wGetRectPlacementInfo(scr
, rect
, &flags
);
119 if (flags
& (XFLAG_DEAD
| XFLAG_PARTIAL
)) {
120 rect
= wGetRectForHead(scr
, head
);
123 x2
= x1
+ rect
.size
.width
;
124 y2
= y1
+ rect
.size
.height
;
130 else if (x
> (x2
- w
))
135 else if (y
> (y2
- h
))
138 WMMoveWidget(scr
->gview
, x
, y
);
141 static void showPosition(WWindow
* wwin
, int x
, int y
)
143 WScreen
*scr
= wwin
->screen_ptr
;
145 if (wPreferences
.move_display
== WDIS_NEW
) {
147 int width
= wwin
->frame
->core
->width
;
148 int height
= wwin
->frame
->core
->height
;
150 GC lgc
= scr
->line_gc
;
151 XSetForeground(dpy
, lgc
, scr
->line_pixel
);
152 sprintf(num
, "%i", x
);
154 XDrawLine(dpy
, scr
->root_win
, lgc
, 0, y
- 1, scr
->scr_width
, y
- 1);
155 XDrawLine(dpy
, scr
->root_win
, lgc
, 0, y
+ height
+ 2, scr
->scr_width
, y
+ height
+ 2);
156 XDrawLine(dpy
, scr
->root_win
, lgc
, x
- 1, 0, x
- 1, scr
->scr_height
);
157 XDrawLine(dpy
, scr
->root_win
, lgc
, x
+ width
+ 2, 0, x
+ width
+ 2, scr
->scr_height
);
160 WSetGeometryViewShownPosition(scr
->gview
, x
, y
);
164 static void cyclePositionDisplay(WWindow
* wwin
, int x
, int y
, int w
, int h
)
166 WScreen
*scr
= wwin
->screen_ptr
;
169 wPreferences
.move_display
++;
170 wPreferences
.move_display
%= NUM_DISPLAYS
;
172 if (wPreferences
.move_display
== WDIS_NEW
) {
173 wPreferences
.move_display
++;
174 wPreferences
.move_display
%= NUM_DISPLAYS
;
177 if (wPreferences
.move_display
== WDIS_NONE
) {
178 WMUnmapWidget(scr
->gview
);
180 if (wPreferences
.move_display
== WDIS_CENTER
) {
181 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
182 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ rect
.size
.width
/ 2,
183 rect
.pos
.y
+ rect
.size
.height
/ 2);
184 } else if (wPreferences
.move_display
== WDIS_TOPLEFT
) {
185 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
186 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ 1, rect
.pos
.y
+ 1);
187 } else if (wPreferences
.move_display
== WDIS_FRAME_CENTER
) {
188 moveGeometryDisplayCentered(scr
, x
+ w
/ 2, y
+ h
/ 2);
190 WMMapWidget(scr
->gview
);
194 static void mapPositionDisplay(WWindow
* wwin
, int x
, int y
, int w
, int h
)
196 WScreen
*scr
= wwin
->screen_ptr
;
199 if (wPreferences
.move_display
== WDIS_NEW
|| wPreferences
.move_display
== WDIS_NONE
) {
201 } else if (wPreferences
.move_display
== WDIS_CENTER
) {
202 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
203 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ rect
.size
.width
/ 2,
204 rect
.pos
.y
+ rect
.size
.height
/ 2);
205 } else if (wPreferences
.move_display
== WDIS_TOPLEFT
) {
206 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
207 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ 1, rect
.pos
.y
+ 1);
208 } else if (wPreferences
.move_display
== WDIS_FRAME_CENTER
) {
209 moveGeometryDisplayCentered(scr
, x
+ w
/ 2, y
+ h
/ 2);
211 WMMapWidget(scr
->gview
);
212 WSetGeometryViewShownPosition(scr
->gview
, x
, y
);
215 static void showGeometry(WWindow
* wwin
, int x1
, int y1
, int x2
, int y2
, int direction
)
217 WScreen
*scr
= wwin
->screen_ptr
;
218 Window root
= scr
->root_win
;
219 GC gc
= scr
->line_gc
;
220 int ty
, by
, my
, x
, y
, mx
, s
;
225 /* This seems necessary for some odd reason (too lazy to write x1-1 and
226 * x2-1 everywhere below in the code). But why only for x? */
230 if (HAS_BORDER_WITH_SELECT(wwin
)) {
231 x1
+= FRAME_BORDER_WIDTH
;
232 x2
+= FRAME_BORDER_WIDTH
;
233 y1
+= FRAME_BORDER_WIDTH
;
234 y2
+= FRAME_BORDER_WIDTH
;
237 ty
= y1
+ wwin
->frame
->top_width
;
238 by
= y2
- wwin
->frame
->bottom_width
;
240 if (wPreferences
.size_display
== WDIS_NEW
) {
241 fw
= XTextWidth(scr
->tech_draw_font
, "8888", 4);
242 fh
= scr
->tech_draw_font
->ascent
+ scr
->tech_draw_font
->descent
;
244 XSetForeground(dpy
, gc
, scr
->line_pixel
);
246 /* vertical geometry */
247 if (((direction
& LEFT
) && (x2
< scr
->scr_width
- fw
)) || (x1
< fw
)) {
256 /* top arrow & end bar */
257 segment
[0].x1
= x
- (s
+ 6);
259 segment
[0].x2
= x
- (s
- 10);
263 segment
[1].x1
= x
- (s
- 2);
264 segment
[1].y1
= ty
+ 1;
265 segment
[1].x2
= x
- (s
- 5);
266 segment
[1].y2
= ty
+ 7;
268 segment
[2].x1
= x
- (s
- 2);
269 segment
[2].y1
= ty
+ 1;
270 segment
[2].x2
= x
- (s
+ 1);
271 segment
[2].y2
= ty
+ 7;
274 segment
[3].x1
= x
- (s
- 2);
275 segment
[3].y1
= ty
+ 1;
276 segment
[3].x2
= x
- (s
- 2);
277 segment
[3].y2
= my
- fh
/ 2 - 1;
279 XDrawSegments(dpy
, root
, gc
, segment
, 4);
281 /* bottom arrow & end bar */
286 segment
[1].y1
= by
- 1;
287 segment
[1].y2
= by
- 7;
289 segment
[2].y1
= by
- 1;
290 segment
[2].y2
= by
- 7;
293 segment
[3].y1
= my
+ fh
/ 2 + 2;
294 segment
[3].y2
= by
- 1;
296 XDrawSegments(dpy
, root
, gc
, segment
, 4);
298 snprintf(num
, sizeof(num
), "%i", (by
- ty
- wwin
->normal_hints
->base_height
) /
299 wwin
->normal_hints
->height_inc
);
300 fw
= XTextWidth(scr
->tech_draw_font
, num
, strlen(num
));
302 /* Display the height. */
303 XSetFont(dpy
, gc
, scr
->tech_draw_font
->fid
);
304 XDrawString(dpy
, root
, gc
, x
- s
+ 3 - fw
/ 2, my
+ scr
->tech_draw_font
->ascent
- fh
/ 2 + 1, num
,
307 /* horizontal geometry */
315 mx
= x1
+ (x2
- x1
) / 2;
316 snprintf(num
, sizeof(num
), "%i", (x2
- x1
- wwin
->normal_hints
->base_width
) /
317 wwin
->normal_hints
->width_inc
);
318 fw
= XTextWidth(scr
->tech_draw_font
, num
, strlen(num
));
320 /* left arrow & end bar */
322 segment
[0].y1
= y
- (s
+ 6);
324 segment
[0].y2
= y
- (s
- 10);
327 segment
[1].x1
= x1
+ 7;
328 segment
[1].y1
= y
- (s
+ 1);
329 segment
[1].x2
= x1
+ 1;
330 segment
[1].y2
= y
- (s
- 2);
332 segment
[2].x1
= x1
+ 1;
333 segment
[2].y1
= y
- (s
- 2);
334 segment
[2].x2
= x1
+ 7;
335 segment
[2].y2
= y
- (s
- 5);
338 segment
[3].x1
= x1
+ 1;
339 segment
[3].y1
= y
- (s
- 2);
340 segment
[3].x2
= mx
- fw
/ 2 - 2;
341 segment
[3].y2
= y
- (s
- 2);
343 XDrawSegments(dpy
, root
, gc
, segment
, 4);
345 /* right arrow & end bar */
346 segment
[0].x1
= x2
+ 1;
347 segment
[0].x2
= x2
+ 1;
350 segment
[1].x1
= x2
- 6;
354 segment
[2].x2
= x2
- 6;
357 segment
[3].x1
= mx
+ fw
/ 2 + 2;
360 XDrawSegments(dpy
, root
, gc
, segment
, 4);
362 /* Display the width. */
363 XDrawString(dpy
, root
, gc
, mx
- fw
/ 2 + 1, y
- s
+ scr
->tech_draw_font
->ascent
- fh
/ 2 + 1, num
,
366 WSetGeometryViewShownSize(scr
->gview
, (x2
- x1
- wwin
->normal_hints
->base_width
)
367 / wwin
->normal_hints
->width_inc
,
368 (by
- ty
- wwin
->normal_hints
->base_height
)
369 / wwin
->normal_hints
->height_inc
);
373 static void cycleGeometryDisplay(WWindow
* wwin
, int x
, int y
, int w
, int h
, int dir
)
375 WScreen
*scr
= wwin
->screen_ptr
;
378 wPreferences
.size_display
++;
379 wPreferences
.size_display
%= NUM_DISPLAYS
;
381 if (wPreferences
.size_display
== WDIS_NEW
|| wPreferences
.size_display
== WDIS_NONE
) {
382 WMUnmapWidget(scr
->gview
);
384 if (wPreferences
.size_display
== WDIS_CENTER
) {
385 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
386 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ rect
.size
.width
/ 2,
387 rect
.pos
.y
+ rect
.size
.height
/ 2);
388 } else if (wPreferences
.size_display
== WDIS_TOPLEFT
) {
389 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
390 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ 1, rect
.pos
.y
+ 1);
391 } else if (wPreferences
.size_display
== WDIS_FRAME_CENTER
) {
392 moveGeometryDisplayCentered(scr
, x
+ w
/ 2, y
+ h
/ 2);
394 WMMapWidget(scr
->gview
);
395 showGeometry(wwin
, x
, y
, x
+ w
, y
+ h
, dir
);
399 static void mapGeometryDisplay(WWindow
* wwin
, int x
, int y
, int w
, int h
)
401 WScreen
*scr
= wwin
->screen_ptr
;
404 if (wPreferences
.size_display
== WDIS_NEW
|| wPreferences
.size_display
== WDIS_NONE
)
407 if (wPreferences
.size_display
== WDIS_CENTER
) {
408 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
409 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ rect
.size
.width
/ 2,
410 rect
.pos
.y
+ rect
.size
.height
/ 2);
411 } else if (wPreferences
.size_display
== WDIS_TOPLEFT
) {
412 rect
= wGetRectForHead(scr
, wGetHeadForWindow(wwin
));
413 moveGeometryDisplayCentered(scr
, rect
.pos
.x
+ 1, rect
.pos
.y
+ 1);
414 } else if (wPreferences
.size_display
== WDIS_FRAME_CENTER
) {
415 moveGeometryDisplayCentered(scr
, x
+ w
/ 2, y
+ h
/ 2);
417 WMMapWidget(scr
->gview
);
418 showGeometry(wwin
, x
, y
, x
+ w
, y
+ h
, 0);
421 static void doWindowMove(WWindow
* wwin
, WMArray
* array
, int dx
, int dy
)
424 WScreen
*scr
= wwin
->screen_ptr
;
427 if (!array
|| !WMGetArrayItemCount(array
)) {
428 wWindowMove(wwin
, wwin
->frame_x
+ dx
, wwin
->frame_y
+ dy
);
430 WMArrayIterator iter
;
432 WM_ITERATE_ARRAY(array
, tmpw
, iter
) {
433 x
= tmpw
->frame_x
+ dx
;
434 y
= tmpw
->frame_y
+ dy
;
436 #if 1 /* XXX: with xinerama patch was #if 0, check this */
437 /* don't let windows become unreachable */
439 if (x
+ (int)tmpw
->frame
->core
->width
< 20)
440 x
= 20 - (int)tmpw
->frame
->core
->width
;
441 else if (x
+ 20 > scr
->scr_width
)
442 x
= scr
->scr_width
- 20;
444 if (y
+ (int)tmpw
->frame
->core
->height
< 20)
445 y
= 20 - (int)tmpw
->frame
->core
->height
;
446 else if (y
+ 20 > scr
->scr_height
)
447 y
= scr
->scr_height
- 20;
449 wScreenBringInside(scr
, &x
, &y
,
450 (int)tmpw
->frame
->core
->width
, (int)tmpw
->frame
->core
->height
);
453 wWindowMove(tmpw
, x
, y
);
458 static void drawTransparentFrame(WWindow
* wwin
, int x
, int y
, int width
, int height
)
460 Window root
= wwin
->screen_ptr
->root_win
;
461 GC gc
= wwin
->screen_ptr
->frame_gc
;
465 if (HAS_BORDER_WITH_SELECT(wwin
)) {
466 x
+= FRAME_BORDER_WIDTH
;
467 y
+= FRAME_BORDER_WIDTH
;
470 if (HAS_TITLEBAR(wwin
) && !wwin
->flags
.shaded
) {
471 h
= WMFontHeight(wwin
->screen_ptr
->title_font
) + (wPreferences
.window_title_clearance
+
472 TITLEBAR_EXTEND_SPACE
) * 2;
474 if (h
> wPreferences
.window_title_max_height
)
475 h
= wPreferences
.window_title_max_height
;
477 if (h
< wPreferences
.window_title_min_height
)
478 h
= wPreferences
.window_title_min_height
;
480 if (HAS_RESIZEBAR(wwin
) && !wwin
->flags
.shaded
) {
481 /* Can't use wwin-frame->bottom_width because, in some cases
482 (e.g. interactive placement), frame does not point to anything. */
483 bottom
= RESIZEBAR_HEIGHT
;
485 XDrawRectangle(dpy
, root
, gc
, x
- 1, y
- 1, width
+ 1, height
+ 1);
488 XDrawLine(dpy
, root
, gc
, x
, y
+ h
- 1, x
+ width
, y
+ h
- 1);
491 XDrawLine(dpy
, root
, gc
, x
, y
+ height
- bottom
, x
+ width
, y
+ height
- bottom
);
495 static void drawFrames(WWindow
* wwin
, WMArray
* array
, int dx
, int dy
)
498 int scr_width
= wwin
->screen_ptr
->scr_width
;
499 int scr_height
= wwin
->screen_ptr
->scr_height
;
504 x
= wwin
->frame_x
+ dx
;
505 y
= wwin
->frame_y
+ dy
;
507 drawTransparentFrame(wwin
, x
, y
, wwin
->frame
->core
->width
, wwin
->frame
->core
->height
);
510 WMArrayIterator iter
;
512 WM_ITERATE_ARRAY(array
, tmpw
, iter
) {
513 x
= tmpw
->frame_x
+ dx
;
514 y
= tmpw
->frame_y
+ dy
;
516 /* don't let windows become unreachable */
517 #if 1 /* XXX: was 0 in XINERAMA patch, check */
518 if (x
+ (int)tmpw
->frame
->core
->width
< 20)
519 x
= 20 - (int)tmpw
->frame
->core
->width
;
520 else if (x
+ 20 > scr_width
)
523 if (y
+ (int)tmpw
->frame
->core
->height
< 20)
524 y
= 20 - (int)tmpw
->frame
->core
->height
;
525 else if (y
+ 20 > scr_height
)
529 wScreenBringInside(wwin
->screen_ptr
, &x
, &y
,
530 (int)tmpw
->frame
->core
->width
, (int)tmpw
->frame
->core
->height
);
533 drawTransparentFrame(tmpw
, x
, y
, tmpw
->frame
->core
->width
, tmpw
->frame
->core
->height
);
538 static void flushMotion()
543 while (XCheckMaskEvent(dpy
, ButtonMotionMask
, &ev
)) ;
546 static void crossWorkspace(WScreen
* scr
, WWindow
* wwin
, int opaque_move
, int new_workspace
, int rewind
)
548 /* do not let window be unmapped */
550 wwin
->flags
.changing_workspace
= 1;
551 wWindowChangeWorkspace(wwin
, new_workspace
);
553 /* go to new workspace */
554 wWorkspaceChange(scr
, new_workspace
);
556 wwin
->flags
.changing_workspace
= 0;
559 XWarpPointer(dpy
, None
, None
, 0, 0, 0, 0, scr
->scr_width
- 20, 0);
561 XWarpPointer(dpy
, None
, None
, 0, 0, 0, 0, -(scr
->scr_width
- 20), 0);
566 XGrabPointer(dpy
, scr
->root_win
, True
, PointerMotionMask
567 | ButtonReleaseMask
| ButtonPressMask
, GrabModeAsync
,
568 GrabModeAsync
, None
, wCursor
[WCUR_MOVE
], CurrentTime
);
573 /* arrays of WWindows sorted by the respective border position */
574 WWindow
**topList
; /* top border */
575 WWindow
**leftList
; /* left border */
576 WWindow
**rightList
; /* right border */
577 WWindow
**bottomList
; /* bottom border */
580 /* index of window in the above lists indicating the relative position
581 * of the window with the others */
587 int rubCount
; /* for workspace switching */
589 int winWidth
, winHeight
; /* width/height of the window */
590 int realX
, realY
; /* actual position of the window */
591 int calcX
, calcY
; /* calculated position of window */
592 int omouseX
, omouseY
; /* old mouse position */
593 int mouseX
, mouseY
; /* last known position of the pointer */
596 #define WTOP(w) (w)->frame_y
597 #define WLEFT(w) (w)->frame_x
598 #define WRIGHT(w) ((w)->frame_x + (int)(w)->frame->core->width - 1 + \
599 (HAS_BORDER_WITH_SELECT(w) ? 2*FRAME_BORDER_WIDTH : 0))
600 #define WBOTTOM(w) ((w)->frame_y + (int)(w)->frame->core->height - 1 + \
601 (HAS_BORDER_WITH_SELECT(w) ? 2*FRAME_BORDER_WIDTH : 0))
603 static int compareWTop(const void *a
, const void *b
)
605 WWindow
*wwin1
= *(WWindow
**) a
;
606 WWindow
*wwin2
= *(WWindow
**) b
;
608 if (WTOP(wwin1
) > WTOP(wwin2
))
610 else if (WTOP(wwin1
) < WTOP(wwin2
))
616 static int compareWLeft(const void *a
, const void *b
)
618 WWindow
*wwin1
= *(WWindow
**) a
;
619 WWindow
*wwin2
= *(WWindow
**) b
;
621 if (WLEFT(wwin1
) > WLEFT(wwin2
))
623 else if (WLEFT(wwin1
) < WLEFT(wwin2
))
629 static int compareWRight(const void *a
, const void *b
)
631 WWindow
*wwin1
= *(WWindow
**) a
;
632 WWindow
*wwin2
= *(WWindow
**) b
;
634 if (WRIGHT(wwin1
) < WRIGHT(wwin2
))
636 else if (WRIGHT(wwin1
) > WRIGHT(wwin2
))
642 static int compareWBottom(const void *a
, const void *b
)
644 WWindow
*wwin1
= *(WWindow
**) a
;
645 WWindow
*wwin2
= *(WWindow
**) b
;
647 if (WBOTTOM(wwin1
) < WBOTTOM(wwin2
))
649 else if (WBOTTOM(wwin1
) > WBOTTOM(wwin2
))
655 static void updateResistance(WWindow
* wwin
, MoveData
* data
, int newX
, int newY
)
658 int newX2
= newX
+ data
->winWidth
;
659 int newY2
= newY
+ data
->winHeight
;
662 if (newX
< data
->realX
) {
663 if (data
->rightIndex
> 0 && newX
< WRIGHT(data
->rightList
[data
->rightIndex
- 1])) {
665 } else if (data
->leftIndex
<= data
->count
- 1 && newX2
<= WLEFT(data
->leftList
[data
->leftIndex
])) {
668 } else if (newX
> data
->realX
) {
669 if (data
->leftIndex
> 0 && newX2
> WLEFT(data
->leftList
[data
->leftIndex
- 1])) {
671 } else if (data
->rightIndex
<= data
->count
- 1
672 && newX
>= WRIGHT(data
->rightList
[data
->rightIndex
])) {
678 if (newY
< data
->realY
) {
679 if (data
->bottomIndex
> 0 && newY
< WBOTTOM(data
->bottomList
[data
->bottomIndex
- 1])) {
681 } else if (data
->topIndex
<= data
->count
- 1
682 && newY2
<= WTOP(data
->topList
[data
->topIndex
])) {
685 } else if (newY
> data
->realY
) {
686 if (data
->topIndex
> 0 && newY2
> WTOP(data
->topList
[data
->topIndex
- 1])) {
688 } else if (data
->bottomIndex
<= data
->count
- 1
689 && newY
>= WBOTTOM(data
->bottomList
[data
->bottomIndex
])) {
698 /* TODO: optimize this */
699 if (data
->realY
< WBOTTOM(data
->bottomList
[0])) {
700 data
->bottomIndex
= 0;
702 if (data
->realX
< WRIGHT(data
->rightList
[0])) {
703 data
->rightIndex
= 0;
705 if ((data
->realX
+ data
->winWidth
) > WLEFT(data
->leftList
[0])) {
708 if ((data
->realY
+ data
->winHeight
) > WTOP(data
->topList
[0])) {
711 for (i
= 0; i
< data
->count
; i
++) {
712 if (data
->realY
> WBOTTOM(data
->bottomList
[i
])) {
713 data
->bottomIndex
= i
+ 1;
715 if (data
->realX
> WRIGHT(data
->rightList
[i
])) {
716 data
->rightIndex
= i
+ 1;
718 if ((data
->realX
+ data
->winWidth
) < WLEFT(data
->leftList
[i
])) {
719 data
->leftIndex
= i
+ 1;
721 if ((data
->realY
+ data
->winHeight
) < WTOP(data
->topList
[i
])) {
722 data
->topIndex
= i
+ 1;
727 static void freeMoveData(MoveData
* data
)
730 wfree(data
->topList
);
732 wfree(data
->leftList
);
734 wfree(data
->rightList
);
735 if (data
->bottomList
)
736 wfree(data
->bottomList
);
739 static void updateMoveData(WWindow
* wwin
, MoveData
* data
)
741 WScreen
*scr
= wwin
->screen_ptr
;
746 tmp
= scr
->focused_window
;
748 if (tmp
!= wwin
&& scr
->current_workspace
== tmp
->frame
->workspace
749 && !tmp
->flags
.miniaturized
750 && !tmp
->flags
.hidden
&& !tmp
->flags
.obscured
&& !WFLAGP(tmp
, sunken
)) {
751 data
->topList
[data
->count
] = tmp
;
752 data
->leftList
[data
->count
] = tmp
;
753 data
->rightList
[data
->count
] = tmp
;
754 data
->bottomList
[data
->count
] = tmp
;
760 if (data
->count
== 0) {
763 data
->rightIndex
= 0;
764 data
->bottomIndex
= 0;
768 /* order from closest to the border of the screen to farthest */
770 qsort(data
->topList
, data
->count
, sizeof(WWindow
**), compareWTop
);
771 qsort(data
->leftList
, data
->count
, sizeof(WWindow
**), compareWLeft
);
772 qsort(data
->rightList
, data
->count
, sizeof(WWindow
**), compareWRight
);
773 qsort(data
->bottomList
, data
->count
, sizeof(WWindow
**), compareWBottom
);
775 /* figure the position of the window relative to the others */
778 data
->leftIndex
= -1;
779 data
->rightIndex
= -1;
780 data
->bottomIndex
= -1;
782 if (WTOP(wwin
) < WBOTTOM(data
->bottomList
[0])) {
783 data
->bottomIndex
= 0;
785 if (WLEFT(wwin
) < WRIGHT(data
->rightList
[0])) {
786 data
->rightIndex
= 0;
788 if (WRIGHT(wwin
) > WLEFT(data
->leftList
[0])) {
791 if (WBOTTOM(wwin
) > WTOP(data
->topList
[0])) {
794 for (i
= 0; i
< data
->count
; i
++) {
795 if (WTOP(wwin
) >= WBOTTOM(data
->bottomList
[i
])) {
796 data
->bottomIndex
= i
+ 1;
798 if (WLEFT(wwin
) >= WRIGHT(data
->rightList
[i
])) {
799 data
->rightIndex
= i
+ 1;
801 if (WRIGHT(wwin
) <= WLEFT(data
->leftList
[i
])) {
802 data
->leftIndex
= i
+ 1;
804 if (WBOTTOM(wwin
) <= WTOP(data
->topList
[i
])) {
805 data
->topIndex
= i
+ 1;
810 static void initMoveData(WWindow
* wwin
, MoveData
* data
)
815 memset(data
, 0, sizeof(MoveData
));
817 for (i
= 0, tmp
= wwin
->screen_ptr
->focused_window
; tmp
!= NULL
; tmp
= tmp
->prev
, i
++) ;
820 data
->topList
= wmalloc(sizeof(WWindow
*) * i
);
821 data
->leftList
= wmalloc(sizeof(WWindow
*) * i
);
822 data
->rightList
= wmalloc(sizeof(WWindow
*) * i
);
823 data
->bottomList
= wmalloc(sizeof(WWindow
*) * i
);
825 updateMoveData(wwin
, data
);
828 data
->realX
= wwin
->frame_x
;
829 data
->realY
= wwin
->frame_y
;
830 data
->calcX
= wwin
->frame_x
;
831 data
->calcY
= wwin
->frame_y
;
833 data
->winWidth
= wwin
->frame
->core
->width
+ (HAS_BORDER_WITH_SELECT(wwin
) ? 2 * FRAME_BORDER_WIDTH
: 0);
834 data
->winHeight
= wwin
->frame
->core
->height
+ (HAS_BORDER_WITH_SELECT(wwin
) ? 2 * FRAME_BORDER_WIDTH
: 0);
837 static Bool
checkWorkspaceChange(WWindow
* wwin
, MoveData
* data
, Bool opaqueMove
)
839 WScreen
*scr
= wwin
->screen_ptr
;
840 Bool changed
= False
;
842 if (data
->mouseX
<= 1) {
843 if (scr
->current_workspace
> 0) {
845 crossWorkspace(scr
, wwin
, opaqueMove
, scr
->current_workspace
- 1, True
);
849 } else if (scr
->current_workspace
== 0 && wPreferences
.ws_cycle
) {
851 crossWorkspace(scr
, wwin
, opaqueMove
, scr
->workspace_count
- 1, True
);
855 } else if (data
->mouseX
>= scr
->scr_width
- 2) {
857 if (scr
->current_workspace
== scr
->workspace_count
- 1) {
859 if (wPreferences
.ws_cycle
|| scr
->workspace_count
== MAX_WORKSPACES
) {
861 crossWorkspace(scr
, wwin
, opaqueMove
, 0, False
);
865 /* if user insists on trying to go to next workspace even when
866 * it's already the last, create a new one */
867 else if (data
->omouseX
== data
->mouseX
&& wPreferences
.ws_advance
) {
869 /* detect user "rubbing" the window against the edge */
870 if (data
->rubCount
> 0 && data
->omouseY
- data
->mouseY
> MOVE_THRESHOLD
) {
872 data
->rubCount
= -(data
->rubCount
+ 1);
874 } else if (data
->rubCount
<= 0 && data
->mouseY
- data
->omouseY
> MOVE_THRESHOLD
) {
876 data
->rubCount
= -data
->rubCount
+ 1;
879 /* create a new workspace */
880 if (abs(data
->rubCount
) > 2) {
881 /* go to next workspace */
884 crossWorkspace(scr
, wwin
, opaqueMove
, scr
->current_workspace
+ 1, False
);
888 } else if (scr
->current_workspace
< scr
->workspace_count
) {
890 /* go to next workspace */
891 crossWorkspace(scr
, wwin
, opaqueMove
, scr
->current_workspace
+ 1, False
);
903 updateWindowPosition(WWindow
* wwin
, MoveData
* data
, Bool doResistance
,
904 Bool opaqueMove
, int newMouseX
, int newMouseY
)
906 WScreen
*scr
= wwin
->screen_ptr
;
907 int dx
, dy
; /* how much mouse moved */
908 int winL
, winR
, winT
, winB
; /* requested new window position */
909 int newX
, newY
; /* actual new window position */
910 Bool hresist
, vresist
;
916 /* check the direction of the movement */
917 dx
= newMouseX
- data
->mouseX
;
918 dy
= newMouseY
- data
->mouseY
;
920 data
->omouseX
= data
->mouseX
;
921 data
->omouseY
= data
->mouseY
;
922 data
->mouseX
= newMouseX
;
923 data
->mouseY
= newMouseY
;
925 winL
= data
->calcX
+ dx
;
926 winR
= data
->calcX
+ data
->winWidth
+ dx
;
927 winT
= data
->calcY
+ dy
;
928 winB
= data
->calcY
+ data
->winHeight
+ dy
;
940 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
941 attract
= wPreferences
.attract
;
942 /* horizontal movement: check horizontal edge resistances */
946 /* window is the leftmost window: check against screen edge */
948 /* Add inter head resistance 1/2 (if needed) */
949 head
= wGetHeadForPointerLocation(scr
);
950 rect
= wGetRectForHead(scr
, head
);
952 l_edge
= WMAX(scr
->totalUsableArea
[head
].x1
, rect
.pos
.x
);
953 edge_l
= l_edge
- resist
;
954 edge_r
= WMIN(scr
->totalUsableArea
[head
].x2
, rect
.pos
.x
+ rect
.size
.width
);
955 r_edge
= edge_r
+ resist
;
958 if ((data
->rightIndex
>= 0) && (data
->rightIndex
<= data
->count
)) {
961 for (i
= data
->rightIndex
- 1; i
>= 0; i
--) {
962 looprw
= data
->rightList
[i
];
963 if (!(data
->realY
> WBOTTOM(looprw
)
964 || (data
->realY
+ data
->winHeight
) < WTOP(looprw
))) {
965 if (attract
|| ((data
->realX
< (WRIGHT(looprw
) + 2)) && dx
< 0)) {
966 l_edge
= WRIGHT(looprw
) + 1;
967 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
974 for (i
= data
->rightIndex
; i
< data
->count
; i
++) {
975 looprw
= data
->rightList
[i
];
976 if (!(data
->realY
> WBOTTOM(looprw
)
977 || (data
->realY
+ data
->winHeight
) < WTOP(looprw
))) {
978 r_edge
= WRIGHT(looprw
) + 1;
979 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
986 if ((data
->leftIndex
>= 0) && (data
->leftIndex
<= data
->count
)) {
989 for (i
= data
->leftIndex
- 1; i
>= 0; i
--) {
990 looprw
= data
->leftList
[i
];
991 if (!(data
->realY
> WBOTTOM(looprw
)
992 || (data
->realY
+ data
->winHeight
) < WTOP(looprw
))) {
994 || (((data
->realX
+ data
->winWidth
) > (WLEFT(looprw
) - 1))
996 edge_r
= WLEFT(looprw
);
997 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
1004 for (i
= data
->leftIndex
; i
< data
->count
; i
++) {
1005 looprw
= data
->leftList
[i
];
1006 if (!(data
->realY
> WBOTTOM(looprw
)
1007 || (data
->realY
+ data
->winHeight
) < WTOP(looprw
))) {
1008 edge_l
= WLEFT(looprw
);
1009 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
1016 printf("%d %d\n",winL,winR);
1017 printf("l_ %d r_ %d _l %d _r %d\n",l_edge,r_edge,edge_l,edge_r);
1020 if ((winL
- l_edge
) < (r_edge
- winL
)) {
1022 if ((attract
&& winL
<= l_edge
+ resist
&& winL
>= l_edge
- resist
)
1023 || (dx
< 0 && winL
<= l_edge
&& winL
>= l_edge
- resist
)) {
1029 if (resist
> 0 && attract
&& winL
>= r_edge
- resist
&& winL
<= r_edge
+ resist
) {
1035 if ((winR
- edge_l
) < (edge_r
- winR
)) {
1036 if (resist
> 0 && attract
&& winR
<= edge_l
+ resist
&& winR
>= edge_l
- resist
) {
1037 newX
= edge_l
- data
->winWidth
;
1042 if ((attract
&& winR
>= edge_r
- resist
&& winR
<= edge_r
+ resist
)
1043 || (dx
> 0 && winR
>= edge_r
&& winR
<= edge_r
+ resist
)) {
1044 newX
= edge_r
- data
->winWidth
;
1051 /* Add inter head resistance 2/2 (if needed) */
1052 t_edge
= WMAX(scr
->totalUsableArea
[head
].y1
, rect
.pos
.y
);
1053 edge_t
= t_edge
- resist
;
1054 edge_b
= WMIN(scr
->totalUsableArea
[head
].y2
, rect
.pos
.y
+ rect
.size
.height
);
1055 b_edge
= edge_b
+ resist
;
1057 if ((data
->bottomIndex
>= 0) && (data
->bottomIndex
<= data
->count
)) {
1060 for (i
= data
->bottomIndex
- 1; i
>= 0; i
--) {
1061 looprw
= data
->bottomList
[i
];
1062 if (!(data
->realX
> WRIGHT(looprw
)
1063 || (data
->realX
+ data
->winWidth
) < WLEFT(looprw
))) {
1064 if (attract
|| ((data
->realY
< (WBOTTOM(looprw
) + 2)) && dy
< 0)) {
1065 t_edge
= WBOTTOM(looprw
) + 1;
1066 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
1073 for (i
= data
->bottomIndex
; i
< data
->count
; i
++) {
1074 looprw
= data
->bottomList
[i
];
1075 if (!(data
->realX
> WRIGHT(looprw
)
1076 || (data
->realX
+ data
->winWidth
) < WLEFT(looprw
))) {
1077 b_edge
= WBOTTOM(looprw
) + 1;
1078 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
1085 if ((data
->topIndex
>= 0) && (data
->topIndex
<= data
->count
)) {
1088 for (i
= data
->topIndex
- 1; i
>= 0; i
--) {
1089 looprw
= data
->topList
[i
];
1090 if (!(data
->realX
> WRIGHT(looprw
)
1091 || (data
->realX
+ data
->winWidth
) < WLEFT(looprw
))) {
1093 || (((data
->realY
+ data
->winHeight
) > (WTOP(looprw
) - 1))
1095 edge_b
= WTOP(looprw
);
1096 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
1103 for (i
= data
->topIndex
; i
< data
->count
; i
++) {
1104 looprw
= data
->topList
[i
];
1105 if (!(data
->realX
> WRIGHT(looprw
)
1106 || (data
->realX
+ data
->winWidth
) < WLEFT(looprw
))) {
1107 edge_t
= WTOP(looprw
);
1108 resist
= WIN_RESISTANCE(wPreferences
.edge_resistance
);
1114 if ((winT
- t_edge
) < (b_edge
- winT
)) {
1116 if ((attract
&& winT
<= t_edge
+ resist
&& winT
>= t_edge
- resist
)
1117 || (dy
< 0 && winT
<= t_edge
&& winT
>= t_edge
- resist
)) {
1123 if (resist
> 0 && attract
&& winT
>= b_edge
- resist
&& winT
<= b_edge
+ resist
) {
1129 if ((winB
- edge_t
) < (edge_b
- winB
)) {
1130 if (resist
> 0 && attract
&& winB
<= edge_t
+ resist
&& winB
>= edge_t
- resist
) {
1131 newY
= edge_t
- data
->winHeight
;
1136 if ((attract
&& winB
>= edge_b
- resist
&& winB
<= edge_b
+ resist
)
1137 || (dy
> 0 && winB
>= edge_b
&& winB
<= edge_b
+ resist
)) {
1138 newY
= edge_b
- data
->winHeight
;
1148 /* update window position */
1152 if (((dx
> 0 && data
->calcX
- data
->realX
> 0)
1153 || (dx
< 0 && data
->calcX
- data
->realX
< 0)) && !hresist
)
1156 if (((dy
> 0 && data
->calcY
- data
->realY
> 0)
1157 || (dy
< 0 && data
->calcY
- data
->realY
< 0)) && !vresist
)
1160 if (data
->realX
!= newX
|| data
->realY
!= newY
) {
1162 if (wPreferences
.move_display
== WDIS_NEW
&& !scr
->selected_windows
) {
1163 showPosition(wwin
, data
->realX
, data
->realY
);
1166 doWindowMove(wwin
, scr
->selected_windows
, newX
- wwin
->frame_x
, newY
- wwin
->frame_y
);
1169 drawFrames(wwin
, scr
->selected_windows
,
1170 data
->realX
- wwin
->frame_x
, data
->realY
- wwin
->frame_y
);
1173 if (!scr
->selected_windows
&& wPreferences
.move_display
== WDIS_FRAME_CENTER
) {
1175 moveGeometryDisplayCentered(scr
, newX
+ data
->winWidth
/ 2, newY
+ data
->winHeight
/ 2);
1180 drawFrames(wwin
, scr
->selected_windows
, newX
- wwin
->frame_x
, newY
- wwin
->frame_y
);
1183 if (!scr
->selected_windows
) {
1184 showPosition(wwin
, newX
, newY
);
1188 /* recalc relative window position */
1189 if (doResistance
&& (data
->realX
!= newX
|| data
->realY
!= newY
)) {
1190 updateResistance(wwin
, data
, newX
, newY
);
1197 #define _KS KEY_CONTROL_WINDOW_WEIGHT
1199 #define MOVABLE_BIT 0x01
1200 #define RESIZABLE_BIT 0x02
1202 int wKeyboardMoveResizeWindow(WWindow
* wwin
)
1204 WScreen
*scr
= wwin
->screen_ptr
;
1205 Window root
= scr
->root_win
;
1207 int w
= wwin
->frame
->core
->width
;
1208 int h
= wwin
->frame
->core
->height
;
1209 int scr_width
= wwin
->screen_ptr
->scr_width
;
1210 int scr_height
= wwin
->screen_ptr
->scr_height
;
1211 int vert_border
= wwin
->frame
->top_width
+ wwin
->frame
->bottom_width
;
1212 int src_x
= wwin
->frame_x
;
1213 int src_y
= wwin
->frame_y
;
1214 int done
, off_x
, off_y
, ww
, wh
;
1216 int opaqueMoveResize
= wPreferences
.opaque_move_resize_keyboard
;
1218 KeyCode shiftl
, shiftr
, ctrlmode
;
1219 KeySym keysym
= NoSymbol
;
1221 int modes
= ((IS_MOVABLE(wwin
) ? MOVABLE_BIT
: 0) | (IS_RESIZABLE(wwin
) ? RESIZABLE_BIT
: 0));
1222 int head
= ((wPreferences
.auto_arrange_icons
&& wXineramaHeads(scr
) > 1)
1223 ? wGetHeadForWindow(wwin
)
1224 : scr
->xine_info
.primary_head
);
1226 shiftl
= XKeysymToKeycode(dpy
, XK_Shift_L
);
1227 shiftr
= XKeysymToKeycode(dpy
, XK_Shift_R
);
1228 ctrlmode
= done
= off_x
= off_y
= 0;
1230 if (modes
== RESIZABLE_BIT
) {
1236 XGrabKeyboard(dpy
, root
, False
, GrabModeAsync
, GrabModeAsync
, CurrentTime
);
1238 if (!wwin
->flags
.selected
) {
1239 wUnselectWindows(scr
);
1242 XGrabPointer(dpy
, scr
->root_win
, True
, PointerMotionMask
1243 | ButtonReleaseMask
| ButtonPressMask
, GrabModeAsync
,
1244 GrabModeAsync
, None
, wCursor
[WCUR_DEFAULT
], CurrentTime
);
1248 if (!opaqueMoveResize
) {
1249 if (wwin
->flags
.shaded
|| scr
->selected_windows
) {
1250 if (scr
->selected_windows
)
1251 drawFrames(wwin
, scr
->selected_windows
, off_x
, off_y
);
1253 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, w
, h
);
1255 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, w
, h
);
1258 if ((wwin
->flags
.shaded
|| scr
->selected_windows
) && (!scr
->selected_windows
)) {
1259 mapPositionDisplay(wwin
, src_x
, src_y
, w
, h
);
1270 WMMaskEvent(dpy
, KeyPressMask
| ButtonReleaseMask
1271 | ButtonPressMask
| ExposureMask
, &event
);
1272 if (event
.type
== Expose
) {
1273 WMHandleEvent(&event
);
1275 } while (event
.type
== Expose
);
1277 if (!opaqueMoveResize
) {
1278 if (wwin
->flags
.shaded
|| scr
->selected_windows
) {
1279 if (scr
->selected_windows
)
1280 drawFrames(wwin
, scr
->selected_windows
, off_x
, off_y
);
1282 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, w
, h
);
1283 /*** I HATE EDGE RESISTANCE - ]d ***/
1285 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
);
1290 showGeometry(wwin
, src_x
+ off_x
, src_y
+ off_y
, src_x
+ off_x
+ ww
, src_y
+ off_y
+ wh
,
1296 switch (event
.type
) {
1299 if (event
.xkey
.time
- lastTime
> 50) {
1300 kspeed
/= (1 + (event
.xkey
.time
- lastTime
) / 100);
1308 lastTime
= event
.xkey
.time
;
1309 if (modes
== (MOVABLE_BIT
| RESIZABLE_BIT
)) {
1310 if ((event
.xkey
.state
& ControlMask
) && !wwin
->flags
.shaded
) {
1312 wUnselectWindows(scr
);
1317 if (event
.xkey
.keycode
== shiftl
|| event
.xkey
.keycode
== shiftr
) {
1319 cycleGeometryDisplay(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
, 0);
1321 cyclePositionDisplay(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
);
1324 keysym
= XLookupKeysym(&event
.xkey
, 0);
1381 if (moment
!= RIGHT
)
1393 wWindowConstrainSize(wwin
, (unsigned int *)&ww
, (unsigned int *)&wh
);
1396 if (wPreferences
.ws_cycle
) {
1397 if (src_x
+ off_x
+ ww
< 20) {
1398 if (!scr
->current_workspace
) {
1399 wWorkspaceChange(scr
, scr
->workspace_count
- 1);
1401 wWorkspaceChange(scr
, scr
->current_workspace
- 1);
1403 } else if (src_x
+ off_x
+ 20 > scr_width
) {
1404 if (scr
->current_workspace
== scr
->workspace_count
- 1) {
1405 wWorkspaceChange(scr
, 0);
1407 wWorkspaceChange(scr
, scr
->current_workspace
+ 1);
1411 if (src_x
+ off_x
+ ww
< 20)
1412 off_x
= 20 - ww
- src_x
;
1413 else if (src_x
+ off_x
+ 20 > scr_width
)
1414 off_x
= scr_width
- 20 - src_x
;
1417 if (src_y
+ off_y
+ wh
< 20) {
1418 off_y
= 20 - wh
- src_y
;
1419 } else if (src_y
+ off_y
+ 20 > scr_height
) {
1420 off_y
= scr_height
- 20 - src_y
;
1429 WMHandleEvent(&event
);
1430 while (XCheckTypedEvent(dpy
, Expose
, &event
)) {
1431 WMHandleEvent(&event
);
1436 WMHandleEvent(&event
);
1443 if (wwin
->flags
.shaded
&& !scr
->selected_windows
) {
1444 moveGeometryDisplayCentered(scr
, src_x
+ off_x
+ w
/ 2, src_y
+ off_y
+ h
/ 2);
1447 WMUnmapWidget(scr
->gview
);
1448 mapGeometryDisplay(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
);
1449 } else if (!scr
->selected_windows
) {
1450 WMUnmapWidget(scr
->gview
);
1451 mapPositionDisplay(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
);
1455 if (!opaqueMoveResize
) {
1456 if (wwin
->flags
.shaded
|| scr
->selected_windows
) {
1457 if (scr
->selected_windows
)
1458 drawFrames(wwin
, scr
->selected_windows
, off_x
, off_y
);
1460 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, w
, h
);
1462 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
);
1467 showGeometry(wwin
, src_x
+ off_x
, src_y
+ off_y
, src_x
+ off_x
+ ww
, src_y
+ off_y
+ wh
,
1469 } else if (!scr
->selected_windows
)
1470 showPosition(wwin
, src_x
+ off_x
, src_y
+ off_y
);
1472 if (opaqueMoveResize
) {
1474 wWindowConfigure(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
- vert_border
);
1478 scr
->keymove_tick
= 0;
1480 WMDeleteTimerWithClientData(&looper);
1482 if (!opaqueMoveResize
) {/*ctrlmode=> resize */
1483 if (wwin
->flags
.shaded
|| scr
->selected_windows
) {
1484 if (scr
->selected_windows
)
1485 drawFrames(wwin
, scr
->selected_windows
, off_x
, off_y
);
1487 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, w
, h
);
1489 drawTransparentFrame(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
);
1494 showGeometry(wwin
, src_x
+ off_x
, src_y
+ off_y
, src_x
+ off_x
+ ww
,
1495 src_y
+ off_y
+ wh
, 0);
1496 WMUnmapWidget(scr
->gview
);
1498 WMUnmapWidget(scr
->gview
);
1500 XUngrabKeyboard(dpy
, CurrentTime
);
1501 XUngrabPointer(dpy
, CurrentTime
);
1505 if (wwin
->flags
.shaded
|| scr
->selected_windows
) {
1506 if (!scr
->selected_windows
) {
1507 wWindowMove(wwin
, src_x
+ off_x
, src_y
+ off_y
);
1508 wWindowSynthConfigureNotify(wwin
);
1510 WMArrayIterator iter
;
1513 doWindowMove(wwin
, scr
->selected_windows
, off_x
, off_y
);
1515 WM_ITERATE_ARRAY(scr
->selected_windows
, foo
, iter
) {
1516 wWindowSynthConfigureNotify(foo
);
1520 if (wwin
->client
.width
!= ww
)
1521 wwin
->flags
.maximized
&= ~(MAX_HORIZONTAL
| MAX_MAXIMUS
);
1523 if (wwin
->client
.height
!= wh
- vert_border
)
1524 wwin
->flags
.maximized
&= ~(MAX_VERTICAL
| MAX_LEFTHALF
| MAX_RIGHTHALF
| MAX_MAXIMUS
);
1526 wWindowConfigure(wwin
, src_x
+ off_x
, src_y
+ off_y
, ww
, wh
- vert_border
);
1527 wWindowSynthConfigureNotify(wwin
);
1529 wWindowChangeWorkspace(wwin
, scr
->current_workspace
);
1530 wSetFocusTo(scr
, wwin
);
1533 if (wPreferences
.auto_arrange_icons
&& wXineramaHeads(scr
) > 1 &&
1534 head
!= wGetHeadForWindow(wwin
)) {
1535 wArrangeIcons(scr
, True
);
1538 update_saved_geometry(wwin
);
1546 *----------------------------------------------------------------------
1547 * wMouseMoveWindow--
1548 * Move the named window and the other selected ones (if any),
1549 * interactively. Also shows the position of the window, if only one
1550 * window is being moved.
1551 * If the window is not on the selected window list, the selected
1552 * windows are deselected.
1553 * If shift is pressed during the operation, the position display
1554 * is changed to another type.
1557 * True if the window was moved, False otherwise.
1560 * The window(s) position is changed, and the client(s) are
1561 * notified about that.
1562 * The position display configuration may be changed.
1563 *----------------------------------------------------------------------
1565 int wMouseMoveWindow(WWindow
* wwin
, XEvent
* ev
)
1567 WScreen
*scr
= wwin
->screen_ptr
;
1569 Window root
= scr
->root_win
;
1570 KeyCode shiftl
, shiftr
;
1574 /* This needs not to change while moving, else bad things can happen */
1575 int opaqueMove
= wPreferences
.opaque_move
;
1577 int head
= ((wPreferences
.auto_arrange_icons
&& wXineramaHeads(scr
) > 1)
1578 ? wGetHeadForWindow(wwin
)
1579 : scr
->xine_info
.primary_head
);
1581 if (!IS_MOVABLE(wwin
))
1584 if (wPreferences
.opaque_move
&& !wPreferences
.use_saveunders
) {
1585 XSetWindowAttributes attr
;
1587 attr
.save_under
= True
;
1588 XChangeWindowAttributes(dpy
, wwin
->frame
->core
->window
, CWSaveUnder
, &attr
);
1591 initMoveData(wwin
, &moveData
);
1593 moveData
.mouseX
= ev
->xmotion
.x_root
;
1594 moveData
.mouseY
= ev
->xmotion
.y_root
;
1596 if (!wwin
->flags
.selected
) {
1597 /* this window is not selected, unselect others and move only wwin */
1598 wUnselectWindows(scr
);
1600 shiftl
= XKeysymToKeycode(dpy
, XK_Shift_L
);
1601 shiftr
= XKeysymToKeycode(dpy
, XK_Shift_R
);
1607 /* XWarpPointer() doesn't seem to generate Motion events, so
1608 * we've got to simulate them */
1609 XQueryPointer(dpy
, root
, &junkw
, &junkw
, &event
.xmotion
.x_root
,
1610 &event
.xmotion
.y_root
, &junk
, &junk
, (unsigned *)&junk
);
1612 WMMaskEvent(dpy
, KeyPressMask
| ButtonMotionMask
1613 | PointerMotionHintMask
1614 | ButtonReleaseMask
| ButtonPressMask
| ExposureMask
, &event
);
1616 if (event
.type
== MotionNotify
) {
1617 /* compress MotionNotify events */
1618 while (XCheckMaskEvent(dpy
, ButtonMotionMask
, &event
)) ;
1619 if (!checkMouseSamplingRate(&event
))
1623 switch (event
.type
) {
1625 if ((event
.xkey
.keycode
== shiftl
|| event
.xkey
.keycode
== shiftr
)
1626 && started
&& !scr
->selected_windows
) {
1629 drawFrames(wwin
, scr
->selected_windows
,
1630 moveData
.realX
- wwin
->frame_x
, moveData
.realY
- wwin
->frame_y
);
1633 if (wPreferences
.move_display
== WDIS_NEW
&& !scr
->selected_windows
) {
1634 showPosition(wwin
, moveData
.realX
, moveData
.realY
);
1637 cyclePositionDisplay(wwin
, moveData
.realX
, moveData
.realY
,
1638 moveData
.winWidth
, moveData
.winHeight
);
1640 if (wPreferences
.move_display
== WDIS_NEW
&& !scr
->selected_windows
) {
1642 showPosition(wwin
, moveData
.realX
, moveData
.realY
);
1646 drawFrames(wwin
, scr
->selected_windows
,
1647 moveData
.realX
- wwin
->frame_x
, moveData
.realY
- wwin
->frame_y
);
1650 WMHandleEvent(&event); this causes problems needs fixing */
1656 updateWindowPosition(wwin
, &moveData
,
1657 scr
->selected_windows
== NULL
1658 && wPreferences
.edge_resistance
> 0,
1659 opaqueMove
, event
.xmotion
.x_root
, event
.xmotion
.y_root
);
1661 if (!warped
&& !wPreferences
.no_autowrap
) {
1662 int oldWorkspace
= scr
->current_workspace
;
1664 if (wPreferences
.move_display
== WDIS_NEW
&& !scr
->selected_windows
) {
1665 showPosition(wwin
, moveData
.realX
, moveData
.realY
);
1669 drawFrames(wwin
, scr
->selected_windows
,
1670 moveData
.realX
- wwin
->frame_x
,
1671 moveData
.realY
- wwin
->frame_y
);
1673 if (checkWorkspaceChange(wwin
, &moveData
, opaqueMove
)) {
1674 if (scr
->current_workspace
!= oldWorkspace
1675 && wPreferences
.edge_resistance
> 0
1676 && scr
->selected_windows
== NULL
)
1677 updateMoveData(wwin
, &moveData
);
1681 drawFrames(wwin
, scr
->selected_windows
,
1682 moveData
.realX
- wwin
->frame_x
,
1683 moveData
.realY
- wwin
->frame_y
);
1685 if (wPreferences
.move_display
== WDIS_NEW
&& !scr
->selected_windows
) {
1687 showPosition(wwin
, moveData
.realX
, moveData
.realY
);
1693 } else if (abs(ev
->xmotion
.x_root
- event
.xmotion
.x_root
) >= MOVE_THRESHOLD
1694 || abs(ev
->xmotion
.y_root
- event
.xmotion
.y_root
) >= MOVE_THRESHOLD
) {
1696 XChangeActivePointerGrab(dpy
, ButtonMotionMask
1697 | ButtonReleaseMask
| ButtonPressMask
,
1698 wCursor
[WCUR_MOVE
], CurrentTime
);
1700 XGrabKeyboard(dpy
, root
, False
, GrabModeAsync
, GrabModeAsync
, CurrentTime
);
1702 if (!scr
->selected_windows
)
1703 mapPositionDisplay(wwin
, moveData
.realX
, moveData
.realY
,
1704 moveData
.winWidth
, moveData
.winHeight
);
1706 if (started
&& !opaqueMove
)
1707 drawFrames(wwin
, scr
->selected_windows
, 0, 0);
1709 if (!opaqueMove
|| (wPreferences
.move_display
== WDIS_NEW
1710 && !scr
->selected_windows
)) {
1712 if (wPreferences
.move_display
== WDIS_NEW
)
1713 showPosition(wwin
, moveData
.realX
, moveData
.realY
);
1722 if (event
.xbutton
.button
!= ev
->xbutton
.button
)
1728 drawFrames(wwin
, scr
->selected_windows
,
1729 moveData
.realX
- wwin
->frame_x
, moveData
.realY
- wwin
->frame_y
);
1731 doWindowMove(wwin
, scr
->selected_windows
,
1732 moveData
.realX
- wwin
->frame_x
,
1733 moveData
.realY
- wwin
->frame_y
);
1735 #ifndef CONFIGURE_WINDOW_WHILE_MOVING
1736 wWindowSynthConfigureNotify(wwin
);
1738 XUngrabKeyboard(dpy
, CurrentTime
);
1741 wWindowChangeWorkspace(wwin
, scr
->current_workspace
);
1742 wSetFocusTo(scr
, wwin
);
1744 if (wPreferences
.move_display
== WDIS_NEW
)
1745 showPosition(wwin
, moveData
.realX
, moveData
.realY
);
1747 /* discard all enter/leave events that happened until
1748 * the time the button was released */
1749 while (XCheckTypedEvent(dpy
, EnterNotify
, &e
)) {
1750 if (e
.xcrossing
.time
> event
.xbutton
.time
) {
1751 XPutBackEvent(dpy
, &e
);
1755 while (XCheckTypedEvent(dpy
, LeaveNotify
, &e
)) {
1756 if (e
.xcrossing
.time
> event
.xbutton
.time
) {
1757 XPutBackEvent(dpy
, &e
);
1762 if (!scr
->selected_windows
) {
1763 /* get rid of the geometry window */
1764 WMUnmapWidget(scr
->gview
);
1771 if (started
&& !opaqueMove
) {
1772 drawFrames(wwin
, scr
->selected_windows
,
1773 moveData
.realX
- wwin
->frame_x
, moveData
.realY
- wwin
->frame_y
);
1775 WMHandleEvent(&event
);
1778 drawFrames(wwin
, scr
->selected_windows
,
1779 moveData
.realX
- wwin
->frame_x
, moveData
.realY
- wwin
->frame_y
);
1781 WMHandleEvent(&event
);
1787 if (wPreferences
.opaque_move
&& !wPreferences
.use_saveunders
) {
1788 XSetWindowAttributes attr
;
1790 attr
.save_under
= False
;
1791 XChangeWindowAttributes(dpy
, wwin
->frame
->core
->window
, CWSaveUnder
, &attr
);
1795 freeMoveData(&moveData
);
1797 if (started
&& wPreferences
.auto_arrange_icons
&& wXineramaHeads(scr
) > 1 &&
1798 head
!= wGetHeadForWindow(wwin
)) {
1799 wArrangeIcons(scr
, True
);
1803 update_saved_geometry(wwin
);
1809 #define HCONSTRAIN 2
1811 static int getResizeDirection(WWindow
* wwin
, int x
, int y
, int dx
, int dy
, int flags
)
1813 int w
= wwin
->frame
->core
->width
- 1;
1814 int cw
= wwin
->frame
->resizebar_corner_width
;
1817 /* if not resizing through the resizebar */
1818 if (!(flags
& RESIZEBAR
)) {
1819 int xdir
= (abs(x
) < (wwin
->client
.width
/ 2)) ? LEFT
: RIGHT
;
1820 int ydir
= (abs(y
) < (wwin
->client
.height
/ 2)) ? UP
: DOWN
;
1821 if (abs(dx
) < 2 || abs(dy
) < 2) {
1822 if (abs(dy
) > abs(dx
))
1827 return (xdir
| ydir
);
1830 /* window is too narrow. allow diagonal resize */
1834 if (flags
& HCONSTRAIN
)
1839 return (LEFT
| ydir
);
1841 return (RIGHT
| ydir
);
1843 /* vertical resize */
1844 if ((x
> cw
) && (x
< w
- cw
))
1852 if ((abs(dy
) > 0) && !(flags
& HCONSTRAIN
))
1858 void wMouseResizeWindow(WWindow
* wwin
, XEvent
* ev
)
1861 WScreen
*scr
= wwin
->screen_ptr
;
1862 Window root
= scr
->root_win
;
1863 int vert_border
= wwin
->frame
->top_width
+ wwin
->frame
->bottom_width
;
1864 int fw
= wwin
->frame
->core
->width
;
1865 int fh
= wwin
->frame
->core
->height
;
1866 int fx
= wwin
->frame_x
;
1867 int fy
= wwin
->frame_y
;
1868 int is_resizebar
= (wwin
->frame
->resizebar
&& ev
->xany
.window
== wwin
->frame
->resizebar
->window
);
1872 int rw
= fw
, rh
= fh
;
1873 int rx1
, ry1
, rx2
, ry2
;
1875 KeyCode shiftl
, shiftr
;
1880 int head
= ((wPreferences
.auto_arrange_icons
&& wXineramaHeads(scr
) > 1)
1881 ? wGetHeadForWindow(wwin
)
1882 : scr
->xine_info
.primary_head
);
1883 int opaqueResize
= wPreferences
.opaque_resize
;
1885 if (!IS_RESIZABLE(wwin
))
1888 if (wwin
->flags
.shaded
) {
1889 wwarning("internal error: tryein");
1892 orig_x
= ev
->xbutton
.x_root
;
1893 orig_y
= ev
->xbutton
.y_root
;
1896 wUnselectWindows(scr
);
1901 shiftl
= XKeysymToKeycode(dpy
, XK_Shift_L
);
1902 shiftr
= XKeysymToKeycode(dpy
, XK_Shift_R
);
1905 WMMaskEvent(dpy
, KeyPressMask
| ButtonMotionMask
1906 | ButtonReleaseMask
| PointerMotionHintMask
| ButtonPressMask
| ExposureMask
, &event
);
1907 if (!checkMouseSamplingRate(&event
))
1910 switch (event
.type
) {
1912 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
1913 if (!opaqueResize
) {
1914 if ((event
.xkey
.keycode
== shiftl
|| event
.xkey
.keycode
== shiftr
)
1916 drawTransparentFrame(wwin
, fx
, fy
, fw
, fh
);
1917 cycleGeometryDisplay(wwin
, fx
, fy
, fw
, fh
, res
);
1918 drawTransparentFrame(wwin
, fx
, fy
, fw
, fh
);
1921 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
1926 while (XCheckMaskEvent(dpy
, ButtonMotionMask
, &event
)) ;
1937 dw
= orig_x
- event
.xmotion
.x_root
;
1938 else if (res
& RIGHT
)
1939 dw
= event
.xmotion
.x_root
- orig_x
;
1941 dh
= orig_y
- event
.xmotion
.y_root
;
1942 else if (res
& DOWN
)
1943 dh
= event
.xmotion
.y_root
- orig_y
;
1945 orig_x
= event
.xmotion
.x_root
;
1946 orig_y
= event
.xmotion
.y_root
;
1951 fh
= rh
- vert_border
;
1952 wWindowConstrainSize(wwin
, (unsigned int *)&fw
, (unsigned int *)&fh
);
1956 else if (res
& RIGHT
)
1960 else if (res
& DOWN
)
1962 } else if (abs(orig_x
- event
.xmotion
.x_root
) >= MOVE_THRESHOLD
1963 || abs(orig_y
- event
.xmotion
.y_root
) >= MOVE_THRESHOLD
) {
1968 XTranslateCoordinates(dpy
, root
, wwin
->frame
->core
->window
,
1969 orig_x
, orig_y
, &tx
, &ty
, &junkw
);
1971 /* check if resizing through resizebar */
1977 if (is_resizebar
&& ((ev
->xbutton
.state
& ShiftMask
)
1978 || abs(orig_y
- event
.xmotion
.y_root
) < HRESIZE_THRESHOLD
))
1979 flags
|= HCONSTRAIN
;
1981 res
= getResizeDirection(wwin
, tx
, ty
,
1982 orig_x
- event
.xmotion
.x_root
,
1983 orig_y
- event
.xmotion
.y_root
, flags
);
1985 if (res
== (UP
| LEFT
))
1986 XChangeActivePointerGrab(dpy
, ButtonMotionMask
1987 | ButtonReleaseMask
| ButtonPressMask
,
1988 wCursor
[WCUR_TOPLEFTRESIZE
], CurrentTime
);
1989 else if (res
== (UP
| RIGHT
))
1990 XChangeActivePointerGrab(dpy
, ButtonMotionMask
1991 | ButtonReleaseMask
| ButtonPressMask
,
1992 wCursor
[WCUR_TOPRIGHTRESIZE
], CurrentTime
);
1993 else if (res
== (DOWN
| LEFT
))
1994 XChangeActivePointerGrab(dpy
, ButtonMotionMask
1995 | ButtonReleaseMask
| ButtonPressMask
,
1996 wCursor
[WCUR_BOTTOMLEFTRESIZE
], CurrentTime
);
1997 else if (res
== (DOWN
| RIGHT
))
1998 XChangeActivePointerGrab(dpy
, ButtonMotionMask
1999 | ButtonReleaseMask
| ButtonPressMask
,
2000 wCursor
[WCUR_BOTTOMRIGHTRESIZE
], CurrentTime
);
2001 else if (res
== DOWN
|| res
== UP
)
2002 XChangeActivePointerGrab(dpy
, ButtonMotionMask
2003 | ButtonReleaseMask
| ButtonPressMask
,
2004 wCursor
[WCUR_VERTICALRESIZE
], CurrentTime
);
2005 else if (res
& (DOWN
| UP
))
2006 XChangeActivePointerGrab(dpy
, ButtonMotionMask
2007 | ButtonReleaseMask
| ButtonPressMask
,
2008 wCursor
[WCUR_VERTICALRESIZE
], CurrentTime
);
2009 else if (res
& (LEFT
| RIGHT
))
2010 XChangeActivePointerGrab(dpy
, ButtonMotionMask
2011 | ButtonReleaseMask
| ButtonPressMask
,
2012 wCursor
[WCUR_HORIZONRESIZE
], CurrentTime
);
2014 XGrabKeyboard(dpy
, root
, False
, GrabModeAsync
, GrabModeAsync
, CurrentTime
);
2018 /* Draw the resize frame for the first time. */
2019 mapGeometryDisplay(wwin
, fx
, fy
, fw
, fh
);
2022 drawTransparentFrame(wwin
, fx
, fy
, fw
, fh
);
2024 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
2030 drawTransparentFrame(wwin
, orig_fx
, orig_fy
, orig_fw
, orig_fh
);
2032 if (wPreferences
.size_display
== WDIS_FRAME_CENTER
)
2033 moveGeometryDisplayCentered(scr
, fx
+ fw
/ 2, fy
+ fh
/ 2);
2036 drawTransparentFrame(wwin
, fx
, fy
, fw
, fh
);
2038 if (fh
!= orig_fh
|| fw
!= orig_fw
) {
2039 if (wPreferences
.size_display
== WDIS_NEW
)
2040 showGeometry(wwin
, orig_fx
, orig_fy
, orig_fx
+ orig_fw
,
2041 orig_fy
+ orig_fh
, res
);
2043 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
2047 /* Fist clean the geometry line */
2048 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
2049 /* Now, continue drawing */
2051 moveGeometryDisplayCentered(scr
, fx
+ fw
/ 2, fy
+ fh
/ 2);
2052 wWindowConfigure(wwin
, fx
, fy
, fw
, fh
- vert_border
);
2053 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
2062 if (event
.xbutton
.button
!= ev
->xbutton
.button
)
2066 showGeometry(wwin
, fx
, fy
, fx
+ fw
, fy
+ fh
, res
);
2069 drawTransparentFrame(wwin
, fx
, fy
, fw
, fh
);
2071 XUngrabKeyboard(dpy
, CurrentTime
);
2072 WMUnmapWidget(scr
->gview
);
2075 if (wwin
->client
.width
!= fw
)
2076 wwin
->flags
.maximized
&= ~(MAX_HORIZONTAL
| MAX_MAXIMUS
);
2078 if (wwin
->client
.height
!= fh
- vert_border
)
2079 wwin
->flags
.maximized
&= ~(MAX_VERTICAL
| MAX_LEFTHALF
| MAX_RIGHTHALF
| MAX_MAXIMUS
);
2081 wWindowConfigure(wwin
, fx
, fy
, fw
, fh
- vert_border
);
2082 wWindowSynthConfigureNotify(wwin
);
2087 WMHandleEvent(&event
);
2091 if (wPreferences
.auto_arrange_icons
&& wXineramaHeads(scr
) > 1 && head
!= wGetHeadForWindow(wwin
))
2092 wArrangeIcons(scr
, True
);
2104 void wUnselectWindows(WScreen
* scr
)
2108 if (!scr
->selected_windows
)
2111 while (WMGetArrayItemCount(scr
->selected_windows
)) {
2112 wwin
= WMGetFromArray(scr
->selected_windows
, 0);
2113 if (wwin
->flags
.miniaturized
&& wwin
->icon
&& wwin
->icon
->selected
)
2114 wIconSelect(wwin
->icon
);
2116 wSelectWindow(wwin
, False
);
2118 WMFreeArray(scr
->selected_windows
);
2119 scr
->selected_windows
= NULL
;
2122 static void selectWindowsInside(WScreen
* scr
, int x1
, int y1
, int x2
, int y2
)
2126 /* select the windows and put them in the selected window list */
2127 tmpw
= scr
->focused_window
;
2128 while (tmpw
!= NULL
) {
2129 if (!(tmpw
->flags
.miniaturized
|| tmpw
->flags
.hidden
)) {
2130 if ((tmpw
->frame
->workspace
== scr
->current_workspace
|| IS_OMNIPRESENT(tmpw
))
2131 && (tmpw
->frame_x
>= x1
) && (tmpw
->frame_y
>= y1
)
2132 && (tmpw
->frame
->core
->width
+ tmpw
->frame_x
<= x2
)
2133 && (tmpw
->frame
->core
->height
+ tmpw
->frame_y
<= y2
)) {
2134 wSelectWindow(tmpw
, True
);
2141 void wSelectWindows(WScreen
* scr
, XEvent
* ev
)
2144 Window root
= scr
->root_win
;
2145 GC gc
= scr
->frame_gc
;
2146 int xp
= ev
->xbutton
.x_root
;
2147 int yp
= ev
->xbutton
.y_root
;
2151 if (XGrabPointer(dpy
, scr
->root_win
, False
, ButtonMotionMask
2152 | ButtonReleaseMask
| ButtonPressMask
, GrabModeAsync
,
2153 GrabModeAsync
, None
, wCursor
[WCUR_DEFAULT
], CurrentTime
) != Success
) {
2158 wUnselectWindows(scr
);
2160 XDrawRectangle(dpy
, root
, gc
, xp
, yp
, w
, h
);
2162 WMMaskEvent(dpy
, ButtonReleaseMask
| PointerMotionMask
| ButtonPressMask
, &event
);
2164 switch (event
.type
) {
2166 XDrawRectangle(dpy
, root
, gc
, x
, y
, w
, h
);
2167 x
= event
.xmotion
.x_root
;
2174 y
= event
.xmotion
.y_root
;
2181 XDrawRectangle(dpy
, root
, gc
, x
, y
, w
, h
);
2188 if (event
.xbutton
.button
!= ev
->xbutton
.button
)
2191 XDrawRectangle(dpy
, root
, gc
, x
, y
, w
, h
);
2193 XUngrabPointer(dpy
, CurrentTime
);
2194 selectWindowsInside(scr
, x
, y
, x
+ w
, y
+ h
);
2198 WMHandleEvent(&event
);
2204 void InteractivePlaceWindow(WWindow
* wwin
, int *x_ret
, int *y_ret
, unsigned width
, unsigned height
)
2206 WScreen
*scr
= wwin
->screen_ptr
;
2207 Window root
= scr
->root_win
;
2210 KeyCode shiftl
, shiftr
;
2214 if (XGrabPointer(dpy
, root
, True
, PointerMotionMask
| ButtonPressMask
,
2215 GrabModeAsync
, GrabModeAsync
, None
, wCursor
[WCUR_DEFAULT
], CurrentTime
) != Success
) {
2220 if (HAS_TITLEBAR(wwin
)) {
2221 h
= WMFontHeight(scr
->title_font
) + (wPreferences
.window_title_clearance
+
2222 TITLEBAR_EXTEND_SPACE
) * 2;
2224 if (h
> wPreferences
.window_title_max_height
)
2225 h
= wPreferences
.window_title_max_height
;
2227 if (h
< wPreferences
.window_title_min_height
)
2228 h
= wPreferences
.window_title_min_height
;
2232 if (HAS_RESIZEBAR(wwin
)) {
2233 height
+= RESIZEBAR_HEIGHT
;
2235 XGrabKeyboard(dpy
, root
, False
, GrabModeAsync
, GrabModeAsync
, CurrentTime
);
2236 XQueryPointer(dpy
, root
, &junkw
, &junkw
, &x
, &y
, &junk
, &junk
, (unsigned *)&junk
);
2237 mapPositionDisplay(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2239 drawTransparentFrame(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2241 shiftl
= XKeysymToKeycode(dpy
, XK_Shift_L
);
2242 shiftr
= XKeysymToKeycode(dpy
, XK_Shift_R
);
2244 WMMaskEvent(dpy
, PointerMotionMask
| ButtonPressMask
| ExposureMask
| KeyPressMask
, &event
);
2246 if (!checkMouseSamplingRate(&event
))
2249 switch (event
.type
) {
2251 if ((event
.xkey
.keycode
== shiftl
)
2252 || (event
.xkey
.keycode
== shiftr
)) {
2253 drawTransparentFrame(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2254 cyclePositionDisplay(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2255 drawTransparentFrame(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2260 drawTransparentFrame(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2262 x
= event
.xmotion
.x_root
;
2263 y
= event
.xmotion
.y_root
;
2265 if (wPreferences
.move_display
== WDIS_FRAME_CENTER
)
2266 moveGeometryDisplayCentered(scr
, x
, y
+ (height
- h
) / 2);
2268 showPosition(wwin
, x
- width
/ 2, y
- h
/ 2);
2270 drawTransparentFrame(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2275 drawTransparentFrame(wwin
, x
- width
/ 2, y
- h
/ 2, width
, height
);
2277 *x_ret
= x
- width
/ 2;
2279 XUngrabPointer(dpy
, CurrentTime
);
2280 XUngrabKeyboard(dpy
, CurrentTime
);
2281 /* get rid of the geometry window */
2282 WMUnmapWidget(scr
->gview
);
2286 WMHandleEvent(&event
);