Fix makefiles bug.
[wmaker-crm.git] / src / moveres.c
blob2ac3fbeafe22a1b1e7c979eac3d1afdefb18d758
1 /*
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.
21 #include "wconfig.h"
23 #include <X11/Xlib.h>
24 #include <X11/Xutil.h>
25 #include <X11/keysym.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <string.h>
31 #include "WindowMaker.h"
32 #include "framewin.h"
33 #include "window.h"
34 #include "client.h"
35 #include "icon.h"
36 #include "dock.h"
37 #include "funcs.h"
38 #include "actions.h"
39 #include "workspace.h"
41 #include "geomview.h"
42 #include "screen.h"
43 #include "xinerama.h"
45 #include <WINGs/WINGsP.h>
47 /* How many different types of geometry/position
48 display thingies are there? */
49 #define NUM_DISPLAYS 5
51 #define LEFT 1
52 #define RIGHT 2
53 #define HORIZONTAL (LEFT|RIGHT)
54 #define UP 4
55 #define DOWN 8
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
72 * ignored.
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) {
81 return False;
82 } else {
83 previousMotion = ev->xmotion.time;
86 return True;
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;
104 x -= w / 2;
105 y -= h / 2;
107 /* dead area check */
108 if (scr->xine_info.count) {
109 WMRect rect;
110 int head, flags;
112 rect.pos.x = x;
113 rect.pos.y = y;
114 rect.size.width = w;
115 rect.size.height = h;
117 head = wGetRectPlacementInfo(scr, rect, &flags);
119 if (flags & (XFLAG_DEAD | XFLAG_PARTIAL)) {
120 rect = wGetRectForHead(scr, head);
121 x1 = rect.pos.x;
122 y1 = rect.pos.y;
123 x2 = x1 + rect.size.width;
124 y2 = y1 + rect.size.height;
128 if (x < x1 + 1)
129 x = x1 + 1;
130 else if (x > (x2 - w))
131 x = x2 - w;
133 if (y < y1 + 1)
134 y = y1 + 1;
135 else if (y > (y2 - h))
136 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) {
146 #if 0
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);
158 #endif
159 } else {
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;
167 WMRect rect;
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);
179 } else {
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;
197 WMRect rect;
199 if (wPreferences.move_display == WDIS_NEW || wPreferences.move_display == WDIS_NONE) {
200 return;
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;
221 char num[16];
222 XSegment segment[4];
223 int fw, fh;
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? */
227 x1--;
228 x2--;
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)) {
248 x = x2;
249 s = -15;
250 } else {
251 x = x1;
252 s = 15;
254 my = (ty + by) / 2;
256 /* top arrow & end bar */
257 segment[0].x1 = x - (s + 6);
258 segment[0].y1 = ty;
259 segment[0].x2 = x - (s - 10);
260 segment[0].y2 = ty;
262 /* arrowhead */
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;
273 /* line */
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 */
282 segment[0].y1 = by;
283 segment[0].y2 = by;
285 /* arrowhead */
286 segment[1].y1 = by - 1;
287 segment[1].y2 = by - 7;
289 segment[2].y1 = by - 1;
290 segment[2].y2 = by - 7;
292 /* line */
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,
305 strlen(num));
307 /* horizontal geometry */
308 if (y1 < 15) {
309 y = y2;
310 s = -15;
311 } else {
312 y = y1;
313 s = 15;
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 */
321 segment[0].x1 = x1;
322 segment[0].y1 = y - (s + 6);
323 segment[0].x2 = x1;
324 segment[0].y2 = y - (s - 10);
326 /* arrowhead */
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);
337 /* line */
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;
349 /* arrowhead */
350 segment[1].x1 = x2 - 6;
351 segment[1].x2 = x2;
353 segment[2].x1 = x2;
354 segment[2].x2 = x2 - 6;
356 /* line */
357 segment[3].x1 = mx + fw / 2 + 2;
358 segment[3].x2 = x2;
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,
364 strlen(num));
365 } else {
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;
376 WMRect rect;
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);
383 } else {
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;
402 WMRect rect;
404 if (wPreferences.size_display == WDIS_NEW || wPreferences.size_display == WDIS_NONE)
405 return;
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)
423 WWindow *tmpw;
424 WScreen *scr = wwin->screen_ptr;
425 int x, y;
427 if (!array || !WMGetArrayItemCount(array)) {
428 wWindowMove(wwin, wwin->frame_x + dx, wwin->frame_y + dy);
429 } else {
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;
448 #else
449 wScreenBringInside(scr, &x, &y,
450 (int)tmpw->frame->core->width, (int)tmpw->frame->core->height);
451 #endif
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;
462 int h = 0;
463 int bottom = 0;
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 (HAS_RESIZEBAR(wwin) && !wwin->flags.shaded) {
475 /* Can't use wwin-frame->bottom_width because, in some cases
476 (e.g. interactive placement), frame does not point to anything. */
477 bottom = RESIZEBAR_HEIGHT;
479 XDrawRectangle(dpy, root, gc, x - 1, y - 1, width + 1, height + 1);
481 if (h > 0) {
482 XDrawLine(dpy, root, gc, x, y + h - 1, x + width, y + h - 1);
484 if (bottom > 0) {
485 XDrawLine(dpy, root, gc, x, y + height - bottom, x + width, y + height - bottom);
489 static void drawFrames(WWindow * wwin, WMArray * array, int dx, int dy)
491 WWindow *tmpw;
492 int scr_width = wwin->screen_ptr->scr_width;
493 int scr_height = wwin->screen_ptr->scr_height;
494 int x, y;
496 if (!array) {
498 x = wwin->frame_x + dx;
499 y = wwin->frame_y + dy;
501 drawTransparentFrame(wwin, x, y, wwin->frame->core->width, wwin->frame->core->height);
503 } else {
504 WMArrayIterator iter;
506 WM_ITERATE_ARRAY(array, tmpw, iter) {
507 x = tmpw->frame_x + dx;
508 y = tmpw->frame_y + dy;
510 /* don't let windows become unreachable */
511 #if 1 /* XXX: was 0 in XINERAMA patch, check */
512 if (x + (int)tmpw->frame->core->width < 20)
513 x = 20 - (int)tmpw->frame->core->width;
514 else if (x + 20 > scr_width)
515 x = scr_width - 20;
517 if (y + (int)tmpw->frame->core->height < 20)
518 y = 20 - (int)tmpw->frame->core->height;
519 else if (y + 20 > scr_height)
520 y = scr_height - 20;
522 #else
523 wScreenBringInside(wwin->screen_ptr, &x, &y,
524 (int)tmpw->frame->core->width, (int)tmpw->frame->core->height);
525 #endif
527 drawTransparentFrame(tmpw, x, y, tmpw->frame->core->width, tmpw->frame->core->height);
532 static void flushMotion()
534 XEvent ev;
536 XSync(dpy, False);
537 while (XCheckMaskEvent(dpy, ButtonMotionMask, &ev)) ;
540 static void crossWorkspace(WScreen * scr, WWindow * wwin, int opaque_move, int new_workspace, int rewind)
542 /* do not let window be unmapped */
543 if (opaque_move) {
544 wwin->flags.changing_workspace = 1;
545 wWindowChangeWorkspace(wwin, new_workspace);
547 /* go to new workspace */
548 wWorkspaceChange(scr, new_workspace);
550 wwin->flags.changing_workspace = 0;
552 if (rewind)
553 XWarpPointer(dpy, None, None, 0, 0, 0, 0, scr->scr_width - 20, 0);
554 else
555 XWarpPointer(dpy, None, None, 0, 0, 0, 0, -(scr->scr_width - 20), 0);
557 flushMotion();
559 if (!opaque_move) {
560 XGrabPointer(dpy, scr->root_win, True, PointerMotionMask
561 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
562 GrabModeAsync, None, wCursor[WCUR_MOVE], CurrentTime);
566 typedef struct {
567 /* arrays of WWindows sorted by the respective border position */
568 WWindow **topList; /* top border */
569 WWindow **leftList; /* left border */
570 WWindow **rightList; /* right border */
571 WWindow **bottomList; /* bottom border */
572 int count;
574 /* index of window in the above lists indicating the relative position
575 * of the window with the others */
576 int topIndex;
577 int leftIndex;
578 int rightIndex;
579 int bottomIndex;
581 int rubCount; /* for workspace switching */
583 int winWidth, winHeight; /* width/height of the window */
584 int realX, realY; /* actual position of the window */
585 int calcX, calcY; /* calculated position of window */
586 int omouseX, omouseY; /* old mouse position */
587 int mouseX, mouseY; /* last known position of the pointer */
588 } MoveData;
590 #define WTOP(w) (w)->frame_y
591 #define WLEFT(w) (w)->frame_x
592 #define WRIGHT(w) ((w)->frame_x + (int)(w)->frame->core->width - 1 + \
593 (HAS_BORDER_WITH_SELECT(w) ? 2*FRAME_BORDER_WIDTH : 0))
594 #define WBOTTOM(w) ((w)->frame_y + (int)(w)->frame->core->height - 1 + \
595 (HAS_BORDER_WITH_SELECT(w) ? 2*FRAME_BORDER_WIDTH : 0))
597 static int compareWTop(const void *a, const void *b)
599 WWindow *wwin1 = *(WWindow **) a;
600 WWindow *wwin2 = *(WWindow **) b;
602 if (WTOP(wwin1) > WTOP(wwin2))
603 return -1;
604 else if (WTOP(wwin1) < WTOP(wwin2))
605 return 1;
606 else
607 return 0;
610 static int compareWLeft(const void *a, const void *b)
612 WWindow *wwin1 = *(WWindow **) a;
613 WWindow *wwin2 = *(WWindow **) b;
615 if (WLEFT(wwin1) > WLEFT(wwin2))
616 return -1;
617 else if (WLEFT(wwin1) < WLEFT(wwin2))
618 return 1;
619 else
620 return 0;
623 static int compareWRight(const void *a, const void *b)
625 WWindow *wwin1 = *(WWindow **) a;
626 WWindow *wwin2 = *(WWindow **) b;
628 if (WRIGHT(wwin1) < WRIGHT(wwin2))
629 return -1;
630 else if (WRIGHT(wwin1) > WRIGHT(wwin2))
631 return 1;
632 else
633 return 0;
636 static int compareWBottom(const void *a, const void *b)
638 WWindow *wwin1 = *(WWindow **) a;
639 WWindow *wwin2 = *(WWindow **) b;
641 if (WBOTTOM(wwin1) < WBOTTOM(wwin2))
642 return -1;
643 else if (WBOTTOM(wwin1) > WBOTTOM(wwin2))
644 return 1;
645 else
646 return 0;
649 static void updateResistance(WWindow * wwin, MoveData * data, int newX, int newY)
651 int i;
652 int newX2 = newX + data->winWidth;
653 int newY2 = newY + data->winHeight;
654 Bool ok = False;
656 if (newX < data->realX) {
657 if (data->rightIndex > 0 && newX < WRIGHT(data->rightList[data->rightIndex - 1])) {
658 ok = True;
659 } else if (data->leftIndex <= data->count - 1 && newX2 <= WLEFT(data->leftList[data->leftIndex])) {
660 ok = True;
662 } else if (newX > data->realX) {
663 if (data->leftIndex > 0 && newX2 > WLEFT(data->leftList[data->leftIndex - 1])) {
664 ok = True;
665 } else if (data->rightIndex <= data->count - 1
666 && newX >= WRIGHT(data->rightList[data->rightIndex])) {
667 ok = True;
671 if (!ok) {
672 if (newY < data->realY) {
673 if (data->bottomIndex > 0 && newY < WBOTTOM(data->bottomList[data->bottomIndex - 1])) {
674 ok = True;
675 } else if (data->topIndex <= data->count - 1
676 && newY2 <= WTOP(data->topList[data->topIndex])) {
677 ok = True;
679 } else if (newY > data->realY) {
680 if (data->topIndex > 0 && newY2 > WTOP(data->topList[data->topIndex - 1])) {
681 ok = True;
682 } else if (data->bottomIndex <= data->count - 1
683 && newY >= WBOTTOM(data->bottomList[data->bottomIndex])) {
684 ok = True;
689 if (!ok)
690 return;
692 /* TODO: optimize this */
693 if (data->realY < WBOTTOM(data->bottomList[0])) {
694 data->bottomIndex = 0;
696 if (data->realX < WRIGHT(data->rightList[0])) {
697 data->rightIndex = 0;
699 if ((data->realX + data->winWidth) > WLEFT(data->leftList[0])) {
700 data->leftIndex = 0;
702 if ((data->realY + data->winHeight) > WTOP(data->topList[0])) {
703 data->topIndex = 0;
705 for (i = 0; i < data->count; i++) {
706 if (data->realY > WBOTTOM(data->bottomList[i])) {
707 data->bottomIndex = i + 1;
709 if (data->realX > WRIGHT(data->rightList[i])) {
710 data->rightIndex = i + 1;
712 if ((data->realX + data->winWidth) < WLEFT(data->leftList[i])) {
713 data->leftIndex = i + 1;
715 if ((data->realY + data->winHeight) < WTOP(data->topList[i])) {
716 data->topIndex = i + 1;
721 static void freeMoveData(MoveData * data)
723 if (data->topList)
724 wfree(data->topList);
725 if (data->leftList)
726 wfree(data->leftList);
727 if (data->rightList)
728 wfree(data->rightList);
729 if (data->bottomList)
730 wfree(data->bottomList);
733 static void updateMoveData(WWindow * wwin, MoveData * data)
735 WScreen *scr = wwin->screen_ptr;
736 WWindow *tmp;
737 int i;
739 data->count = 0;
740 tmp = scr->focused_window;
741 while (tmp) {
742 if (tmp != wwin && scr->current_workspace == tmp->frame->workspace
743 && !tmp->flags.miniaturized
744 && !tmp->flags.hidden && !tmp->flags.obscured && !WFLAGP(tmp, sunken)) {
745 data->topList[data->count] = tmp;
746 data->leftList[data->count] = tmp;
747 data->rightList[data->count] = tmp;
748 data->bottomList[data->count] = tmp;
749 data->count++;
751 tmp = tmp->prev;
754 if (data->count == 0) {
755 data->topIndex = 0;
756 data->leftIndex = 0;
757 data->rightIndex = 0;
758 data->bottomIndex = 0;
759 return;
762 /* order from closest to the border of the screen to farthest */
764 qsort(data->topList, data->count, sizeof(WWindow **), compareWTop);
765 qsort(data->leftList, data->count, sizeof(WWindow **), compareWLeft);
766 qsort(data->rightList, data->count, sizeof(WWindow **), compareWRight);
767 qsort(data->bottomList, data->count, sizeof(WWindow **), compareWBottom);
769 /* figure the position of the window relative to the others */
771 data->topIndex = -1;
772 data->leftIndex = -1;
773 data->rightIndex = -1;
774 data->bottomIndex = -1;
776 if (WTOP(wwin) < WBOTTOM(data->bottomList[0])) {
777 data->bottomIndex = 0;
779 if (WLEFT(wwin) < WRIGHT(data->rightList[0])) {
780 data->rightIndex = 0;
782 if (WRIGHT(wwin) > WLEFT(data->leftList[0])) {
783 data->leftIndex = 0;
785 if (WBOTTOM(wwin) > WTOP(data->topList[0])) {
786 data->topIndex = 0;
788 for (i = 0; i < data->count; i++) {
789 if (WTOP(wwin) >= WBOTTOM(data->bottomList[i])) {
790 data->bottomIndex = i + 1;
792 if (WLEFT(wwin) >= WRIGHT(data->rightList[i])) {
793 data->rightIndex = i + 1;
795 if (WRIGHT(wwin) <= WLEFT(data->leftList[i])) {
796 data->leftIndex = i + 1;
798 if (WBOTTOM(wwin) <= WTOP(data->topList[i])) {
799 data->topIndex = i + 1;
804 static void initMoveData(WWindow * wwin, MoveData * data)
806 int i;
807 WWindow *tmp;
809 memset(data, 0, sizeof(MoveData));
811 for (i = 0, tmp = wwin->screen_ptr->focused_window; tmp != NULL; tmp = tmp->prev, i++) ;
813 if (i > 1) {
814 data->topList = wmalloc(sizeof(WWindow *) * i);
815 data->leftList = wmalloc(sizeof(WWindow *) * i);
816 data->rightList = wmalloc(sizeof(WWindow *) * i);
817 data->bottomList = wmalloc(sizeof(WWindow *) * i);
819 updateMoveData(wwin, data);
822 data->realX = wwin->frame_x;
823 data->realY = wwin->frame_y;
824 data->calcX = wwin->frame_x;
825 data->calcY = wwin->frame_y;
827 data->winWidth = wwin->frame->core->width + (HAS_BORDER_WITH_SELECT(wwin) ? 2 * FRAME_BORDER_WIDTH : 0);
828 data->winHeight = wwin->frame->core->height + (HAS_BORDER_WITH_SELECT(wwin) ? 2 * FRAME_BORDER_WIDTH : 0);
831 static Bool checkWorkspaceChange(WWindow * wwin, MoveData * data, Bool opaqueMove)
833 WScreen *scr = wwin->screen_ptr;
834 Bool changed = False;
836 if (data->mouseX <= 1) {
837 if (scr->current_workspace > 0) {
839 crossWorkspace(scr, wwin, opaqueMove, scr->current_workspace - 1, True);
840 changed = True;
841 data->rubCount = 0;
843 } else if (scr->current_workspace == 0 && wPreferences.ws_cycle) {
845 crossWorkspace(scr, wwin, opaqueMove, scr->workspace_count - 1, True);
846 changed = True;
847 data->rubCount = 0;
849 } else if (data->mouseX >= scr->scr_width - 2) {
851 if (scr->current_workspace == scr->workspace_count - 1) {
853 if (wPreferences.ws_cycle || scr->workspace_count == MAX_WORKSPACES) {
855 crossWorkspace(scr, wwin, opaqueMove, 0, False);
856 changed = True;
857 data->rubCount = 0;
859 /* if user insists on trying to go to next workspace even when
860 * it's already the last, create a new one */
861 else if (data->omouseX == data->mouseX && wPreferences.ws_advance) {
863 /* detect user "rubbing" the window against the edge */
864 if (data->rubCount > 0 && data->omouseY - data->mouseY > MOVE_THRESHOLD) {
866 data->rubCount = -(data->rubCount + 1);
868 } else if (data->rubCount <= 0 && data->mouseY - data->omouseY > MOVE_THRESHOLD) {
870 data->rubCount = -data->rubCount + 1;
873 /* create a new workspace */
874 if (abs(data->rubCount) > 2) {
875 /* go to next workspace */
876 wWorkspaceNew(scr);
878 crossWorkspace(scr, wwin, opaqueMove, scr->current_workspace + 1, False);
879 changed = True;
880 data->rubCount = 0;
882 } else if (scr->current_workspace < scr->workspace_count) {
884 /* go to next workspace */
885 crossWorkspace(scr, wwin, opaqueMove, scr->current_workspace + 1, False);
886 changed = True;
887 data->rubCount = 0;
889 } else {
890 data->rubCount = 0;
893 return changed;
896 static void
897 updateWindowPosition(WWindow * wwin, MoveData * data, Bool doResistance,
898 Bool opaqueMove, int newMouseX, int newMouseY)
900 WScreen *scr = wwin->screen_ptr;
901 int dx, dy; /* how much mouse moved */
902 int winL, winR, winT, winB; /* requested new window position */
903 int newX, newY; /* actual new window position */
904 Bool hresist, vresist;
905 Bool attract;
907 hresist = False;
908 vresist = False;
910 /* check the direction of the movement */
911 dx = newMouseX - data->mouseX;
912 dy = newMouseY - data->mouseY;
914 data->omouseX = data->mouseX;
915 data->omouseY = data->mouseY;
916 data->mouseX = newMouseX;
917 data->mouseY = newMouseY;
919 winL = data->calcX + dx;
920 winR = data->calcX + data->winWidth + dx;
921 winT = data->calcY + dy;
922 winB = data->calcY + data->winHeight + dy;
924 newX = data->realX;
925 newY = data->realY;
927 if (doResistance) {
928 int l_edge, r_edge;
929 int edge_l, edge_r;
930 int t_edge, b_edge;
931 int edge_t, edge_b;
932 int resist;
934 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
935 attract = wPreferences.attract;
936 /* horizontal movement: check horizontal edge resistances */
937 if (dx || dy) {
938 WMRect rect;
939 int i, head;
940 /* window is the leftmost window: check against screen edge */
942 /* Add inter head resistance 1/2 (if needed) */
943 head = wGetHeadForPointerLocation(scr);
944 rect = wGetRectForHead(scr, head);
946 l_edge = WMAX(scr->totalUsableArea[head].x1, rect.pos.x);
947 edge_l = l_edge - resist;
948 edge_r = WMIN(scr->totalUsableArea[head].x2, rect.pos.x + rect.size.width);
949 r_edge = edge_r + resist;
951 /* 1 */
952 if ((data->rightIndex >= 0) && (data->rightIndex <= data->count)) {
953 WWindow *looprw;
955 for (i = data->rightIndex - 1; i >= 0; i--) {
956 looprw = data->rightList[i];
957 if (!(data->realY > WBOTTOM(looprw)
958 || (data->realY + data->winHeight) < WTOP(looprw))) {
959 if (attract || ((data->realX < (WRIGHT(looprw) + 2)) && dx < 0)) {
960 l_edge = WRIGHT(looprw) + 1;
961 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
963 break;
967 if (attract) {
968 for (i = data->rightIndex; i < data->count; i++) {
969 looprw = data->rightList[i];
970 if (!(data->realY > WBOTTOM(looprw)
971 || (data->realY + data->winHeight) < WTOP(looprw))) {
972 r_edge = WRIGHT(looprw) + 1;
973 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
974 break;
980 if ((data->leftIndex >= 0) && (data->leftIndex <= data->count)) {
981 WWindow *looprw;
983 for (i = data->leftIndex - 1; i >= 0; i--) {
984 looprw = data->leftList[i];
985 if (!(data->realY > WBOTTOM(looprw)
986 || (data->realY + data->winHeight) < WTOP(looprw))) {
987 if (attract
988 || (((data->realX + data->winWidth) > (WLEFT(looprw) - 1))
989 && dx > 0)) {
990 edge_r = WLEFT(looprw);
991 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
993 break;
997 if (attract)
998 for (i = data->leftIndex; i < data->count; i++) {
999 looprw = data->leftList[i];
1000 if (!(data->realY > WBOTTOM(looprw)
1001 || (data->realY + data->winHeight) < WTOP(looprw))) {
1002 edge_l = WLEFT(looprw);
1003 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
1004 break;
1010 printf("%d %d\n",winL,winR);
1011 printf("l_ %d r_ %d _l %d _r %d\n",l_edge,r_edge,edge_l,edge_r);
1014 if ((winL - l_edge) < (r_edge - winL)) {
1015 if (resist > 0) {
1016 if ((attract && winL <= l_edge + resist && winL >= l_edge - resist)
1017 || (dx < 0 && winL <= l_edge && winL >= l_edge - resist)) {
1018 newX = l_edge;
1019 hresist = True;
1022 } else {
1023 if (resist > 0 && attract && winL >= r_edge - resist && winL <= r_edge + resist) {
1024 newX = r_edge;
1025 hresist = True;
1029 if ((winR - edge_l) < (edge_r - winR)) {
1030 if (resist > 0 && attract && winR <= edge_l + resist && winR >= edge_l - resist) {
1031 newX = edge_l - data->winWidth;
1032 hresist = True;
1034 } else {
1035 if (resist > 0) {
1036 if ((attract && winR >= edge_r - resist && winR <= edge_r + resist)
1037 || (dx > 0 && winR >= edge_r && winR <= edge_r + resist)) {
1038 newX = edge_r - data->winWidth;
1039 hresist = True;
1044 /* VeRT */
1045 /* Add inter head resistance 2/2 (if needed) */
1046 t_edge = WMAX(scr->totalUsableArea[head].y1, rect.pos.y);
1047 edge_t = t_edge - resist;
1048 edge_b = WMIN(scr->totalUsableArea[head].y2, rect.pos.y + rect.size.height);
1049 b_edge = edge_b + resist;
1051 if ((data->bottomIndex >= 0) && (data->bottomIndex <= data->count)) {
1052 WWindow *looprw;
1054 for (i = data->bottomIndex - 1; i >= 0; i--) {
1055 looprw = data->bottomList[i];
1056 if (!(data->realX > WRIGHT(looprw)
1057 || (data->realX + data->winWidth) < WLEFT(looprw))) {
1058 if (attract || ((data->realY < (WBOTTOM(looprw) + 2)) && dy < 0)) {
1059 t_edge = WBOTTOM(looprw) + 1;
1060 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
1062 break;
1066 if (attract) {
1067 for (i = data->bottomIndex; i < data->count; i++) {
1068 looprw = data->bottomList[i];
1069 if (!(data->realX > WRIGHT(looprw)
1070 || (data->realX + data->winWidth) < WLEFT(looprw))) {
1071 b_edge = WBOTTOM(looprw) + 1;
1072 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
1073 break;
1079 if ((data->topIndex >= 0) && (data->topIndex <= data->count)) {
1080 WWindow *looprw;
1082 for (i = data->topIndex - 1; i >= 0; i--) {
1083 looprw = data->topList[i];
1084 if (!(data->realX > WRIGHT(looprw)
1085 || (data->realX + data->winWidth) < WLEFT(looprw))) {
1086 if (attract
1087 || (((data->realY + data->winHeight) > (WTOP(looprw) - 1))
1088 && dy > 0)) {
1089 edge_b = WTOP(looprw);
1090 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
1092 break;
1096 if (attract)
1097 for (i = data->topIndex; i < data->count; i++) {
1098 looprw = data->topList[i];
1099 if (!(data->realX > WRIGHT(looprw)
1100 || (data->realX + data->winWidth) < WLEFT(looprw))) {
1101 edge_t = WTOP(looprw);
1102 resist = WIN_RESISTANCE(wPreferences.edge_resistance);
1103 break;
1108 if ((winT - t_edge) < (b_edge - winT)) {
1109 if (resist > 0) {
1110 if ((attract && winT <= t_edge + resist && winT >= t_edge - resist)
1111 || (dy < 0 && winT <= t_edge && winT >= t_edge - resist)) {
1112 newY = t_edge;
1113 vresist = True;
1116 } else {
1117 if (resist > 0 && attract && winT >= b_edge - resist && winT <= b_edge + resist) {
1118 newY = b_edge;
1119 vresist = True;
1123 if ((winB - edge_t) < (edge_b - winB)) {
1124 if (resist > 0 && attract && winB <= edge_t + resist && winB >= edge_t - resist) {
1125 newY = edge_t - data->winHeight;
1126 vresist = True;
1128 } else {
1129 if (resist > 0) {
1130 if ((attract && winB >= edge_b - resist && winB <= edge_b + resist)
1131 || (dy > 0 && winB >= edge_b && winB <= edge_b + resist)) {
1132 newY = edge_b - data->winHeight;
1133 vresist = True;
1138 /* END VeRT */
1142 /* update window position */
1143 data->calcX += dx;
1144 data->calcY += dy;
1146 if (((dx > 0 && data->calcX - data->realX > 0)
1147 || (dx < 0 && data->calcX - data->realX < 0)) && !hresist)
1148 newX = data->calcX;
1150 if (((dy > 0 && data->calcY - data->realY > 0)
1151 || (dy < 0 && data->calcY - data->realY < 0)) && !vresist)
1152 newY = data->calcY;
1154 if (data->realX != newX || data->realY != newY) {
1156 if (wPreferences.move_display == WDIS_NEW && !scr->selected_windows) {
1157 showPosition(wwin, data->realX, data->realY);
1159 if (opaqueMove) {
1160 doWindowMove(wwin, scr->selected_windows, newX - wwin->frame_x, newY - wwin->frame_y);
1161 } else {
1162 /* erase frames */
1163 drawFrames(wwin, scr->selected_windows,
1164 data->realX - wwin->frame_x, data->realY - wwin->frame_y);
1167 if (!scr->selected_windows && wPreferences.move_display == WDIS_FRAME_CENTER) {
1169 moveGeometryDisplayCentered(scr, newX + data->winWidth / 2, newY + data->winHeight / 2);
1172 if (!opaqueMove) {
1173 /* draw frames */
1174 drawFrames(wwin, scr->selected_windows, newX - wwin->frame_x, newY - wwin->frame_y);
1177 if (!scr->selected_windows) {
1178 showPosition(wwin, newX, newY);
1182 /* recalc relative window position */
1183 if (doResistance && (data->realX != newX || data->realY != newY)) {
1184 updateResistance(wwin, data, newX, newY);
1187 data->realX = newX;
1188 data->realY = newY;
1191 #define _KS KEY_CONTROL_WINDOW_WEIGHT
1193 #define MOVABLE_BIT 0x01
1194 #define RESIZABLE_BIT 0x02
1196 int wKeyboardMoveResizeWindow(WWindow * wwin)
1198 WScreen *scr = wwin->screen_ptr;
1199 Window root = scr->root_win;
1200 XEvent event;
1201 int w = wwin->frame->core->width;
1202 int h = wwin->frame->core->height;
1203 int scr_width = wwin->screen_ptr->scr_width;
1204 int scr_height = wwin->screen_ptr->scr_height;
1205 int vert_border = wwin->frame->top_width + wwin->frame->bottom_width;
1206 int src_x = wwin->frame_x;
1207 int src_y = wwin->frame_y;
1208 int done, off_x, off_y, ww, wh;
1209 int kspeed = _KS;
1210 Time lastTime = 0;
1211 KeyCode shiftl, shiftr, ctrlmode;
1212 KeySym keysym = NoSymbol;
1213 int moment = 0;
1214 int modes = ((IS_MOVABLE(wwin) ? MOVABLE_BIT : 0) | (IS_RESIZABLE(wwin) ? RESIZABLE_BIT : 0));
1215 int head = ((wPreferences.auto_arrange_icons && wXineramaHeads(scr) > 1)
1216 ? wGetHeadForWindow(wwin)
1217 : scr->xine_info.primary_head);
1219 shiftl = XKeysymToKeycode(dpy, XK_Shift_L);
1220 shiftr = XKeysymToKeycode(dpy, XK_Shift_R);
1221 ctrlmode = done = off_x = off_y = 0;
1223 if (modes == RESIZABLE_BIT) {
1224 ctrlmode = 1;
1227 XSync(dpy, False);
1228 wusleep(10000);
1229 XGrabKeyboard(dpy, root, False, GrabModeAsync, GrabModeAsync, CurrentTime);
1231 if (!wwin->flags.selected) {
1232 wUnselectWindows(scr);
1234 XGrabServer(dpy);
1235 XGrabPointer(dpy, scr->root_win, True, PointerMotionMask
1236 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
1237 GrabModeAsync, None, wCursor[WCUR_DEFAULT], CurrentTime);
1239 if (wwin->flags.shaded || scr->selected_windows) {
1240 if (scr->selected_windows)
1241 drawFrames(wwin, scr->selected_windows, off_x, off_y);
1242 else
1243 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, w, h);
1244 if (!scr->selected_windows)
1245 mapPositionDisplay(wwin, src_x, src_y, w, h);
1246 } else {
1247 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, w, h);
1249 ww = w;
1250 wh = h;
1251 while (1) {
1253 looper.ox=off_x;
1254 looper.oy=off_y;
1256 do {
1257 WMMaskEvent(dpy, KeyPressMask | ButtonReleaseMask
1258 | ButtonPressMask | ExposureMask, &event);
1259 if (event.type == Expose) {
1260 WMHandleEvent(&event);
1262 } while (event.type == Expose);
1264 if (wwin->flags.shaded || scr->selected_windows) {
1265 if (scr->selected_windows)
1266 drawFrames(wwin, scr->selected_windows, off_x, off_y);
1267 else
1268 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, w, h);
1269 /*** I HATE EDGE RESISTANCE - ]d ***/
1270 } else {
1271 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, ww, wh);
1274 if (ctrlmode)
1275 showGeometry(wwin, src_x + off_x, src_y + off_y, src_x + off_x + ww, src_y + off_y + wh,
1278 XUngrabServer(dpy);
1279 XSync(dpy, False);
1281 switch (event.type) {
1282 case KeyPress:
1283 /* accelerate */
1284 if (event.xkey.time - lastTime > 50) {
1285 kspeed /= (1 + (event.xkey.time - lastTime) / 100);
1286 } else {
1287 if (kspeed < 20) {
1288 kspeed++;
1291 if (kspeed < _KS)
1292 kspeed = _KS;
1293 lastTime = event.xkey.time;
1294 if (modes == (MOVABLE_BIT | RESIZABLE_BIT)) {
1295 if ((event.xkey.state & ControlMask) && !wwin->flags.shaded) {
1296 ctrlmode = 1;
1297 wUnselectWindows(scr);
1298 } else {
1299 ctrlmode = 0;
1302 if (event.xkey.keycode == shiftl || event.xkey.keycode == shiftr) {
1303 if (ctrlmode)
1304 cycleGeometryDisplay(wwin, src_x + off_x, src_y + off_y, ww, wh, 0);
1305 else
1306 cyclePositionDisplay(wwin, src_x + off_x, src_y + off_y, ww, wh);
1307 } else {
1309 keysym = XLookupKeysym(&event.xkey, 0);
1310 switch (keysym) {
1311 case XK_Return:
1312 done = 2;
1313 break;
1314 case XK_Escape:
1315 done = 1;
1316 break;
1317 case XK_Up:
1318 #ifdef XK_KP_Up
1319 case XK_KP_Up:
1320 #endif
1321 case XK_k:
1322 if (ctrlmode) {
1323 if (moment != UP)
1324 h = wh;
1325 h -= kspeed;
1326 moment = UP;
1327 if (h < 1)
1328 h = 1;
1329 } else
1330 off_y -= kspeed;
1331 break;
1332 case XK_Down:
1333 #ifdef XK_KP_Down
1334 case XK_KP_Down:
1335 #endif
1336 case XK_j:
1337 if (ctrlmode) {
1338 if (moment != DOWN)
1339 h = wh;
1340 h += kspeed;
1341 moment = DOWN;
1342 } else
1343 off_y += kspeed;
1344 break;
1345 case XK_Left:
1346 #ifdef XK_KP_Left
1347 case XK_KP_Left:
1348 #endif
1349 case XK_h:
1350 if (ctrlmode) {
1351 if (moment != LEFT)
1352 w = ww;
1353 w -= kspeed;
1354 if (w < 1)
1355 w = 1;
1356 moment = LEFT;
1357 } else
1358 off_x -= kspeed;
1359 break;
1360 case XK_Right:
1361 #ifdef XK_KP_Right
1362 case XK_KP_Right:
1363 #endif
1364 case XK_l:
1365 if (ctrlmode) {
1366 if (moment != RIGHT)
1367 w = ww;
1368 w += kspeed;
1369 moment = RIGHT;
1370 } else
1371 off_x += kspeed;
1372 break;
1375 ww = w;
1376 wh = h;
1377 wh -= vert_border;
1378 wWindowConstrainSize(wwin, (unsigned int *)&ww, (unsigned int *)&wh);
1379 wh += vert_border;
1381 if (wPreferences.ws_cycle) {
1382 if (src_x + off_x + ww < 20) {
1383 if (!scr->current_workspace) {
1384 wWorkspaceChange(scr, scr->workspace_count - 1);
1385 } else
1386 wWorkspaceChange(scr, scr->current_workspace - 1);
1387 off_x += scr_width;
1388 } else if (src_x + off_x + 20 > scr_width) {
1389 if (scr->current_workspace == scr->workspace_count - 1) {
1390 wWorkspaceChange(scr, 0);
1391 } else
1392 wWorkspaceChange(scr, scr->current_workspace + 1);
1393 off_x -= scr_width;
1395 } else {
1396 if (src_x + off_x + ww < 20)
1397 off_x = 20 - ww - src_x;
1398 else if (src_x + off_x + 20 > scr_width)
1399 off_x = scr_width - 20 - src_x;
1402 if (src_y + off_y + wh < 20) {
1403 off_y = 20 - wh - src_y;
1404 } else if (src_y + off_y + 20 > scr_height) {
1405 off_y = scr_height - 20 - src_y;
1408 break;
1409 case ButtonPress:
1410 case ButtonRelease:
1411 done = 1;
1412 break;
1413 case Expose:
1414 WMHandleEvent(&event);
1415 while (XCheckTypedEvent(dpy, Expose, &event)) {
1416 WMHandleEvent(&event);
1418 break;
1420 default:
1421 WMHandleEvent(&event);
1422 break;
1425 XGrabServer(dpy);
1426 /*xxx */
1428 if (wwin->flags.shaded && !scr->selected_windows) {
1429 moveGeometryDisplayCentered(scr, src_x + off_x + w / 2, src_y + off_y + h / 2);
1430 } else {
1431 if (ctrlmode) {
1432 WMUnmapWidget(scr->gview);
1433 mapGeometryDisplay(wwin, src_x + off_x, src_y + off_y, ww, wh);
1434 } else if (!scr->selected_windows) {
1435 WMUnmapWidget(scr->gview);
1436 mapPositionDisplay(wwin, src_x + off_x, src_y + off_y, ww, wh);
1440 if (wwin->flags.shaded || scr->selected_windows) {
1441 if (scr->selected_windows)
1442 drawFrames(wwin, scr->selected_windows, off_x, off_y);
1443 else
1444 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, w, h);
1445 } else {
1446 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, ww, wh);
1449 if (ctrlmode) {
1450 showGeometry(wwin, src_x + off_x, src_y + off_y, src_x + off_x + ww, src_y + off_y + wh,
1452 } else if (!scr->selected_windows)
1453 showPosition(wwin, src_x + off_x, src_y + off_y);
1455 if (done) {
1456 scr->keymove_tick = 0;
1458 WMDeleteTimerWithClientData(&looper);
1460 if (wwin->flags.shaded || scr->selected_windows) {
1461 if (scr->selected_windows)
1462 drawFrames(wwin, scr->selected_windows, off_x, off_y);
1463 else
1464 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, w, h);
1465 } else {
1466 drawTransparentFrame(wwin, src_x + off_x, src_y + off_y, ww, wh);
1469 if (ctrlmode) {
1470 showGeometry(wwin, src_x + off_x, src_y + off_y, src_x + off_x + ww,
1471 src_y + off_y + wh, 0);
1472 WMUnmapWidget(scr->gview);
1473 } else
1474 WMUnmapWidget(scr->gview);
1476 XUngrabKeyboard(dpy, CurrentTime);
1477 XUngrabPointer(dpy, CurrentTime);
1478 XUngrabServer(dpy);
1480 if (done == 2) {
1481 if (wwin->flags.shaded || scr->selected_windows) {
1482 if (!scr->selected_windows) {
1483 wWindowMove(wwin, src_x + off_x, src_y + off_y);
1484 wWindowSynthConfigureNotify(wwin);
1485 } else {
1486 WMArrayIterator iter;
1487 WWindow *foo;
1489 doWindowMove(wwin, scr->selected_windows, off_x, off_y);
1491 WM_ITERATE_ARRAY(scr->selected_windows, foo, iter) {
1492 wWindowSynthConfigureNotify(foo);
1495 } else {
1496 if (wwin->client.width != ww) {
1497 wwin->flags.user_changed_width = 1;
1498 wwin->flags.maximized &= ~(MAX_HORIZONTAL | MAX_MAXIMUS);
1501 if (wwin->client.height != wh - vert_border) {
1502 wwin->flags.user_changed_height = 1;
1503 wwin->flags.maximized &= ~(MAX_VERTICAL | MAX_LEFTHALF | MAX_RIGHTHALF | MAX_MAXIMUS);
1506 wWindowConfigure(wwin, src_x + off_x, src_y + off_y, ww, wh - vert_border);
1507 wWindowSynthConfigureNotify(wwin);
1509 wWindowChangeWorkspace(wwin, scr->current_workspace);
1510 wSetFocusTo(scr, wwin);
1513 if (wPreferences.auto_arrange_icons && wXineramaHeads(scr) > 1 &&
1514 head != wGetHeadForWindow(wwin)) {
1515 wArrangeIcons(scr, True);
1518 return 1;
1524 *----------------------------------------------------------------------
1525 * wMouseMoveWindow--
1526 * Move the named window and the other selected ones (if any),
1527 * interactively. Also shows the position of the window, if only one
1528 * window is being moved.
1529 * If the window is not on the selected window list, the selected
1530 * windows are deselected.
1531 * If shift is pressed during the operation, the position display
1532 * is changed to another type.
1534 * Returns:
1535 * True if the window was moved, False otherwise.
1537 * Side effects:
1538 * The window(s) position is changed, and the client(s) are
1539 * notified about that.
1540 * The position display configuration may be changed.
1541 *----------------------------------------------------------------------
1543 int wMouseMoveWindow(WWindow * wwin, XEvent * ev)
1545 WScreen *scr = wwin->screen_ptr;
1546 XEvent event;
1547 Window root = scr->root_win;
1548 KeyCode shiftl, shiftr;
1549 Bool done = False;
1550 int started = 0;
1551 int warped = 0;
1552 /* This needs not to change while moving, else bad things can happen */
1553 int opaqueMove = wPreferences.opaque_move;
1554 MoveData moveData;
1555 int head = ((wPreferences.auto_arrange_icons && wXineramaHeads(scr) > 1)
1556 ? wGetHeadForWindow(wwin)
1557 : scr->xine_info.primary_head);
1559 if (!IS_MOVABLE(wwin))
1560 return False;
1562 if (wPreferences.opaque_move && !wPreferences.use_saveunders) {
1563 XSetWindowAttributes attr;
1565 attr.save_under = True;
1566 XChangeWindowAttributes(dpy, wwin->frame->core->window, CWSaveUnder, &attr);
1569 initMoveData(wwin, &moveData);
1571 moveData.mouseX = ev->xmotion.x_root;
1572 moveData.mouseY = ev->xmotion.y_root;
1574 if (!wwin->flags.selected) {
1575 /* this window is not selected, unselect others and move only wwin */
1576 wUnselectWindows(scr);
1578 shiftl = XKeysymToKeycode(dpy, XK_Shift_L);
1579 shiftr = XKeysymToKeycode(dpy, XK_Shift_R);
1580 while (!done) {
1581 if (warped) {
1582 int junk;
1583 Window junkw;
1585 /* XWarpPointer() doesn't seem to generate Motion events, so
1586 * we've got to simulate them */
1587 XQueryPointer(dpy, root, &junkw, &junkw, &event.xmotion.x_root,
1588 &event.xmotion.y_root, &junk, &junk, (unsigned *)&junk);
1589 } else {
1590 WMMaskEvent(dpy, KeyPressMask | ButtonMotionMask
1591 | PointerMotionHintMask
1592 | ButtonReleaseMask | ButtonPressMask | ExposureMask, &event);
1594 if (event.type == MotionNotify) {
1595 /* compress MotionNotify events */
1596 while (XCheckMaskEvent(dpy, ButtonMotionMask, &event)) ;
1597 if (!checkMouseSamplingRate(&event))
1598 continue;
1601 switch (event.type) {
1602 case KeyPress:
1603 if ((event.xkey.keycode == shiftl || event.xkey.keycode == shiftr)
1604 && started && !scr->selected_windows) {
1606 if (!opaqueMove) {
1607 drawFrames(wwin, scr->selected_windows,
1608 moveData.realX - wwin->frame_x, moveData.realY - wwin->frame_y);
1611 if (wPreferences.move_display == WDIS_NEW && !scr->selected_windows) {
1612 showPosition(wwin, moveData.realX, moveData.realY);
1613 XUngrabServer(dpy);
1615 cyclePositionDisplay(wwin, moveData.realX, moveData.realY,
1616 moveData.winWidth, moveData.winHeight);
1618 if (wPreferences.move_display == WDIS_NEW && !scr->selected_windows) {
1619 XGrabServer(dpy);
1620 showPosition(wwin, moveData.realX, moveData.realY);
1623 if (!opaqueMove) {
1624 drawFrames(wwin, scr->selected_windows,
1625 moveData.realX - wwin->frame_x, moveData.realY - wwin->frame_y);
1627 /*} else {
1628 WMHandleEvent(&event); this causes problems needs fixing */
1630 break;
1632 case MotionNotify:
1633 if (started) {
1634 updateWindowPosition(wwin, &moveData,
1635 scr->selected_windows == NULL
1636 && wPreferences.edge_resistance > 0,
1637 opaqueMove, event.xmotion.x_root, event.xmotion.y_root);
1639 if (!warped && !wPreferences.no_autowrap) {
1640 int oldWorkspace = scr->current_workspace;
1642 if (wPreferences.move_display == WDIS_NEW && !scr->selected_windows) {
1643 showPosition(wwin, moveData.realX, moveData.realY);
1644 XUngrabServer(dpy);
1646 if (!opaqueMove) {
1647 drawFrames(wwin, scr->selected_windows,
1648 moveData.realX - wwin->frame_x,
1649 moveData.realY - wwin->frame_y);
1651 if (checkWorkspaceChange(wwin, &moveData, opaqueMove)) {
1652 if (scr->current_workspace != oldWorkspace
1653 && wPreferences.edge_resistance > 0
1654 && scr->selected_windows == NULL)
1655 updateMoveData(wwin, &moveData);
1656 warped = 1;
1658 if (!opaqueMove) {
1659 drawFrames(wwin, scr->selected_windows,
1660 moveData.realX - wwin->frame_x,
1661 moveData.realY - wwin->frame_y);
1663 if (wPreferences.move_display == WDIS_NEW && !scr->selected_windows) {
1664 XSync(dpy, False);
1665 showPosition(wwin, moveData.realX, moveData.realY);
1666 XGrabServer(dpy);
1668 } else {
1669 warped = 0;
1671 } else if (abs(ev->xmotion.x_root - event.xmotion.x_root) >= MOVE_THRESHOLD
1672 || abs(ev->xmotion.y_root - event.xmotion.y_root) >= MOVE_THRESHOLD) {
1674 XChangeActivePointerGrab(dpy, ButtonMotionMask
1675 | ButtonReleaseMask | ButtonPressMask,
1676 wCursor[WCUR_MOVE], CurrentTime);
1677 started = 1;
1678 XGrabKeyboard(dpy, root, False, GrabModeAsync, GrabModeAsync, CurrentTime);
1680 if (!scr->selected_windows)
1681 mapPositionDisplay(wwin, moveData.realX, moveData.realY,
1682 moveData.winWidth, moveData.winHeight);
1684 if (started && !opaqueMove)
1685 drawFrames(wwin, scr->selected_windows, 0, 0);
1687 if (!opaqueMove || (wPreferences.move_display == WDIS_NEW
1688 && !scr->selected_windows)) {
1689 XGrabServer(dpy);
1690 if (wPreferences.move_display == WDIS_NEW)
1691 showPosition(wwin, moveData.realX, moveData.realY);
1694 break;
1696 case ButtonPress:
1697 break;
1699 case ButtonRelease:
1700 if (event.xbutton.button != ev->xbutton.button)
1701 break;
1703 if (started) {
1704 XEvent e;
1705 if (!opaqueMove) {
1706 drawFrames(wwin, scr->selected_windows,
1707 moveData.realX - wwin->frame_x, moveData.realY - wwin->frame_y);
1708 XSync(dpy, 0);
1709 doWindowMove(wwin, scr->selected_windows,
1710 moveData.realX - wwin->frame_x,
1711 moveData.realY - wwin->frame_y);
1713 #ifndef CONFIGURE_WINDOW_WHILE_MOVING
1714 wWindowSynthConfigureNotify(wwin);
1715 #endif
1716 XUngrabKeyboard(dpy, CurrentTime);
1717 XUngrabServer(dpy);
1718 if (!opaqueMove) {
1719 wWindowChangeWorkspace(wwin, scr->current_workspace);
1720 wSetFocusTo(scr, wwin);
1722 if (wPreferences.move_display == WDIS_NEW)
1723 showPosition(wwin, moveData.realX, moveData.realY);
1725 /* discard all enter/leave events that happened until
1726 * the time the button was released */
1727 while (XCheckTypedEvent(dpy, EnterNotify, &e)) {
1728 if (e.xcrossing.time > event.xbutton.time) {
1729 XPutBackEvent(dpy, &e);
1730 break;
1733 while (XCheckTypedEvent(dpy, LeaveNotify, &e)) {
1734 if (e.xcrossing.time > event.xbutton.time) {
1735 XPutBackEvent(dpy, &e);
1736 break;
1740 if (!scr->selected_windows) {
1741 /* get rid of the geometry window */
1742 WMUnmapWidget(scr->gview);
1745 done = True;
1746 break;
1748 default:
1749 if (started && !opaqueMove) {
1750 drawFrames(wwin, scr->selected_windows,
1751 moveData.realX - wwin->frame_x, moveData.realY - wwin->frame_y);
1752 XUngrabServer(dpy);
1753 WMHandleEvent(&event);
1754 XSync(dpy, False);
1755 XGrabServer(dpy);
1756 drawFrames(wwin, scr->selected_windows,
1757 moveData.realX - wwin->frame_x, moveData.realY - wwin->frame_y);
1758 } else {
1759 WMHandleEvent(&event);
1761 break;
1765 if (wPreferences.opaque_move && !wPreferences.use_saveunders) {
1766 XSetWindowAttributes attr;
1768 attr.save_under = False;
1769 XChangeWindowAttributes(dpy, wwin->frame->core->window, CWSaveUnder, &attr);
1773 freeMoveData(&moveData);
1775 if (started && wPreferences.auto_arrange_icons && wXineramaHeads(scr) > 1 &&
1776 head != wGetHeadForWindow(wwin)) {
1777 wArrangeIcons(scr, True);
1779 return started;
1782 #define RESIZEBAR 1
1783 #define HCONSTRAIN 2
1785 static int getResizeDirection(WWindow * wwin, int x, int y, int dx, int dy, int flags)
1787 int w = wwin->frame->core->width - 1;
1788 int cw = wwin->frame->resizebar_corner_width;
1789 int dir;
1791 /* if not resizing through the resizebar */
1792 if (!(flags & RESIZEBAR)) {
1793 int xdir = (abs(x) < (wwin->client.width / 2)) ? LEFT : RIGHT;
1794 int ydir = (abs(y) < (wwin->client.height / 2)) ? UP : DOWN;
1795 if (abs(dx) < 2 || abs(dy) < 2) {
1796 if (abs(dy) > abs(dx))
1797 xdir = 0;
1798 else
1799 ydir = 0;
1801 return (xdir | ydir);
1804 /* window is too narrow. allow diagonal resize */
1805 if (cw * 2 >= w) {
1806 int ydir;
1808 if (flags & HCONSTRAIN)
1809 ydir = 0;
1810 else
1811 ydir = DOWN;
1812 if (x < cw)
1813 return (LEFT | ydir);
1814 else
1815 return (RIGHT | ydir);
1817 /* vertical resize */
1818 if ((x > cw) && (x < w - cw))
1819 return DOWN;
1821 if (x < cw)
1822 dir = LEFT;
1823 else
1824 dir = RIGHT;
1826 if ((abs(dy) > 0) && !(flags & HCONSTRAIN))
1827 dir |= DOWN;
1829 return dir;
1832 void wMouseResizeWindow(WWindow * wwin, XEvent * ev)
1834 XEvent event;
1835 WScreen *scr = wwin->screen_ptr;
1836 Window root = scr->root_win;
1837 int vert_border = wwin->frame->top_width + wwin->frame->bottom_width;
1838 int fw = wwin->frame->core->width;
1839 int fh = wwin->frame->core->height;
1840 int fx = wwin->frame_x;
1841 int fy = wwin->frame_y;
1842 int is_resizebar = (wwin->frame->resizebar && ev->xany.window == wwin->frame->resizebar->window);
1843 int orig_x, orig_y;
1844 int started;
1845 int dw, dh;
1846 int rw = fw, rh = fh;
1847 int rx1, ry1, rx2, ry2;
1848 int res = 0;
1849 KeyCode shiftl, shiftr;
1850 int orig_fx = fx;
1851 int orig_fy = fy;
1852 int orig_fw = fw;
1853 int orig_fh = fh;
1854 int head = ((wPreferences.auto_arrange_icons && wXineramaHeads(scr) > 1)
1855 ? wGetHeadForWindow(wwin)
1856 : scr->xine_info.primary_head);
1858 if (!IS_RESIZABLE(wwin))
1859 return;
1861 if (wwin->flags.shaded) {
1862 wwarning("internal error: tryein");
1863 return;
1865 orig_x = ev->xbutton.x_root;
1866 orig_y = ev->xbutton.y_root;
1868 started = 0;
1869 wUnselectWindows(scr);
1870 rx1 = fx;
1871 rx2 = fx + fw - 1;
1872 ry1 = fy;
1873 ry2 = fy + fh - 1;
1874 shiftl = XKeysymToKeycode(dpy, XK_Shift_L);
1875 shiftr = XKeysymToKeycode(dpy, XK_Shift_R);
1877 while (1) {
1878 WMMaskEvent(dpy, KeyPressMask | ButtonMotionMask
1879 | ButtonReleaseMask | PointerMotionHintMask | ButtonPressMask | ExposureMask, &event);
1880 if (!checkMouseSamplingRate(&event))
1881 continue;
1883 switch (event.type) {
1884 case KeyPress:
1885 showGeometry(wwin, fx, fy, fx + fw, fy + fh, res);
1886 if ((event.xkey.keycode == shiftl || event.xkey.keycode == shiftr)
1887 && started) {
1888 drawTransparentFrame(wwin, fx, fy, fw, fh);
1889 cycleGeometryDisplay(wwin, fx, fy, fw, fh, res);
1890 drawTransparentFrame(wwin, fx, fy, fw, fh);
1892 showGeometry(wwin, fx, fy, fx + fw, fy + fh, res);
1893 break;
1895 case MotionNotify:
1896 if (started) {
1897 while (XCheckMaskEvent(dpy, ButtonMotionMask, &event)) ;
1899 dw = 0;
1900 dh = 0;
1902 orig_fx = fx;
1903 orig_fy = fy;
1904 orig_fw = fw;
1905 orig_fh = fh;
1907 if (res & LEFT)
1908 dw = orig_x - event.xmotion.x_root;
1909 else if (res & RIGHT)
1910 dw = event.xmotion.x_root - orig_x;
1911 if (res & UP)
1912 dh = orig_y - event.xmotion.y_root;
1913 else if (res & DOWN)
1914 dh = event.xmotion.y_root - orig_y;
1916 orig_x = event.xmotion.x_root;
1917 orig_y = event.xmotion.y_root;
1919 rw += dw;
1920 rh += dh;
1921 fw = rw;
1922 fh = rh - vert_border;
1923 wWindowConstrainSize(wwin, (unsigned int *)&fw, (unsigned int *)&fh);
1924 fh += vert_border;
1925 if (res & LEFT)
1926 fx = rx2 - fw + 1;
1927 else if (res & RIGHT)
1928 fx = rx1;
1929 if (res & UP)
1930 fy = ry2 - fh + 1;
1931 else if (res & DOWN)
1932 fy = ry1;
1933 } else if (abs(orig_x - event.xmotion.x_root) >= MOVE_THRESHOLD
1934 || abs(orig_y - event.xmotion.y_root) >= MOVE_THRESHOLD) {
1935 int tx, ty;
1936 Window junkw;
1937 int flags;
1939 XTranslateCoordinates(dpy, root, wwin->frame->core->window,
1940 orig_x, orig_y, &tx, &ty, &junkw);
1942 /* check if resizing through resizebar */
1943 if (is_resizebar)
1944 flags = RESIZEBAR;
1945 else
1946 flags = 0;
1948 if (is_resizebar && ((ev->xbutton.state & ShiftMask)
1949 || abs(orig_y - event.xmotion.y_root) < HRESIZE_THRESHOLD))
1950 flags |= HCONSTRAIN;
1952 res = getResizeDirection(wwin, tx, ty,
1953 orig_x - event.xmotion.x_root,
1954 orig_y - event.xmotion.y_root, flags);
1956 if (res == (UP | LEFT))
1957 XChangeActivePointerGrab(dpy, ButtonMotionMask
1958 | ButtonReleaseMask | ButtonPressMask,
1959 wCursor[WCUR_TOPLEFTRESIZE], CurrentTime);
1960 else if (res == (UP | RIGHT))
1961 XChangeActivePointerGrab(dpy, ButtonMotionMask
1962 | ButtonReleaseMask | ButtonPressMask,
1963 wCursor[WCUR_TOPRIGHTRESIZE], CurrentTime);
1964 else if (res == (DOWN | LEFT))
1965 XChangeActivePointerGrab(dpy, ButtonMotionMask
1966 | ButtonReleaseMask | ButtonPressMask,
1967 wCursor[WCUR_BOTTOMLEFTRESIZE], CurrentTime);
1968 else if (res == (DOWN | RIGHT))
1969 XChangeActivePointerGrab(dpy, ButtonMotionMask
1970 | ButtonReleaseMask | ButtonPressMask,
1971 wCursor[WCUR_BOTTOMRIGHTRESIZE], CurrentTime);
1972 else if (res == DOWN || res == UP)
1973 XChangeActivePointerGrab(dpy, ButtonMotionMask
1974 | ButtonReleaseMask | ButtonPressMask,
1975 wCursor[WCUR_VERTICALRESIZE], CurrentTime);
1976 else if (res & (DOWN | UP))
1977 XChangeActivePointerGrab(dpy, ButtonMotionMask
1978 | ButtonReleaseMask | ButtonPressMask,
1979 wCursor[WCUR_VERTICALRESIZE], CurrentTime);
1980 else if (res & (LEFT | RIGHT))
1981 XChangeActivePointerGrab(dpy, ButtonMotionMask
1982 | ButtonReleaseMask | ButtonPressMask,
1983 wCursor[WCUR_HORIZONRESIZE], CurrentTime);
1985 XGrabKeyboard(dpy, root, False, GrabModeAsync, GrabModeAsync, CurrentTime);
1987 XGrabServer(dpy);
1989 /* Draw the resize frame for the first time. */
1990 mapGeometryDisplay(wwin, fx, fy, fw, fh);
1992 drawTransparentFrame(wwin, fx, fy, fw, fh);
1994 showGeometry(wwin, fx, fy, fx + fw, fy + fh, res);
1996 started = 1;
1998 if (started) {
1999 if (wPreferences.size_display == WDIS_FRAME_CENTER) {
2000 drawTransparentFrame(wwin, orig_fx, orig_fy, orig_fw, orig_fh);
2001 moveGeometryDisplayCentered(scr, fx + fw / 2, fy + fh / 2);
2002 drawTransparentFrame(wwin, fx, fy, fw, fh);
2003 } else {
2004 drawTransparentFrame(wwin, orig_fx, orig_fy, orig_fw, orig_fh);
2005 drawTransparentFrame(wwin, fx, fy, fw, fh);
2007 if (fh != orig_fh || fw != orig_fw) {
2008 if (wPreferences.size_display == WDIS_NEW) {
2009 showGeometry(wwin, orig_fx, orig_fy, orig_fx + orig_fw,
2010 orig_fy + orig_fh, res);
2012 showGeometry(wwin, fx, fy, fx + fw, fy + fh, res);
2015 break;
2017 case ButtonPress:
2018 break;
2020 case ButtonRelease:
2021 if (event.xbutton.button != ev->xbutton.button)
2022 break;
2024 if (started) {
2025 showGeometry(wwin, fx, fy, fx + fw, fy + fh, res);
2027 drawTransparentFrame(wwin, fx, fy, fw, fh);
2029 XUngrabKeyboard(dpy, CurrentTime);
2030 WMUnmapWidget(scr->gview);
2031 XUngrabServer(dpy);
2033 if (wwin->client.width != fw) {
2034 wwin->flags.user_changed_width = 1;
2035 wwin->flags.maximized &= ~(MAX_HORIZONTAL | MAX_MAXIMUS);
2038 if (wwin->client.height != fh - vert_border) {
2039 wwin->flags.user_changed_height = 1;
2040 wwin->flags.maximized &= ~(MAX_VERTICAL | MAX_LEFTHALF | MAX_RIGHTHALF | MAX_MAXIMUS);
2043 wWindowConfigure(wwin, fx, fy, fw, fh - vert_border);
2045 return;
2047 default:
2048 WMHandleEvent(&event);
2052 if (wPreferences.auto_arrange_icons && wXineramaHeads(scr) > 1 && head != wGetHeadForWindow(wwin)) {
2053 wArrangeIcons(scr, True);
2057 #undef LEFT
2058 #undef RIGHT
2059 #undef HORIZONTAL
2060 #undef UP
2061 #undef DOWN
2062 #undef VERTICAL
2063 #undef HCONSTRAIN
2064 #undef RESIZEBAR
2066 void wUnselectWindows(WScreen * scr)
2068 WWindow *wwin;
2070 if (!scr->selected_windows)
2071 return;
2073 while (WMGetArrayItemCount(scr->selected_windows)) {
2074 wwin = WMGetFromArray(scr->selected_windows, 0);
2075 if (wwin->flags.miniaturized && wwin->icon && wwin->icon->selected)
2076 wIconSelect(wwin->icon);
2078 wSelectWindow(wwin, False);
2080 WMFreeArray(scr->selected_windows);
2081 scr->selected_windows = NULL;
2084 static void selectWindowsInside(WScreen * scr, int x1, int y1, int x2, int y2)
2086 WWindow *tmpw;
2088 /* select the windows and put them in the selected window list */
2089 tmpw = scr->focused_window;
2090 while (tmpw != NULL) {
2091 if (!(tmpw->flags.miniaturized || tmpw->flags.hidden)) {
2092 if ((tmpw->frame->workspace == scr->current_workspace || IS_OMNIPRESENT(tmpw))
2093 && (tmpw->frame_x >= x1) && (tmpw->frame_y >= y1)
2094 && (tmpw->frame->core->width + tmpw->frame_x <= x2)
2095 && (tmpw->frame->core->height + tmpw->frame_y <= y2)) {
2096 wSelectWindow(tmpw, True);
2099 tmpw = tmpw->prev;
2103 void wSelectWindows(WScreen * scr, XEvent * ev)
2105 XEvent event;
2106 Window root = scr->root_win;
2107 GC gc = scr->frame_gc;
2108 int xp = ev->xbutton.x_root;
2109 int yp = ev->xbutton.y_root;
2110 int w = 0, h = 0;
2111 int x = xp, y = yp;
2113 if (XGrabPointer(dpy, scr->root_win, False, ButtonMotionMask
2114 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
2115 GrabModeAsync, None, wCursor[WCUR_DEFAULT], CurrentTime) != Success) {
2116 return;
2118 XGrabServer(dpy);
2120 wUnselectWindows(scr);
2122 XDrawRectangle(dpy, root, gc, xp, yp, w, h);
2123 while (1) {
2124 WMMaskEvent(dpy, ButtonReleaseMask | PointerMotionMask | ButtonPressMask, &event);
2126 switch (event.type) {
2127 case MotionNotify:
2128 XDrawRectangle(dpy, root, gc, x, y, w, h);
2129 x = event.xmotion.x_root;
2130 if (x < xp) {
2131 w = xp - x;
2132 } else {
2133 w = x - xp;
2134 x = xp;
2136 y = event.xmotion.y_root;
2137 if (y < yp) {
2138 h = yp - y;
2139 } else {
2140 h = y - yp;
2141 y = yp;
2143 XDrawRectangle(dpy, root, gc, x, y, w, h);
2144 break;
2146 case ButtonPress:
2147 break;
2149 case ButtonRelease:
2150 if (event.xbutton.button != ev->xbutton.button)
2151 break;
2153 XDrawRectangle(dpy, root, gc, x, y, w, h);
2154 XUngrabServer(dpy);
2155 XUngrabPointer(dpy, CurrentTime);
2156 selectWindowsInside(scr, x, y, x + w, y + h);
2157 return;
2159 default:
2160 WMHandleEvent(&event);
2161 break;
2166 void InteractivePlaceWindow(WWindow * wwin, int *x_ret, int *y_ret, unsigned width, unsigned height)
2168 WScreen *scr = wwin->screen_ptr;
2169 Window root = scr->root_win;
2170 int x, y, h = 0;
2171 XEvent event;
2172 KeyCode shiftl, shiftr;
2173 Window junkw;
2174 int junk;
2176 if (XGrabPointer(dpy, root, True, PointerMotionMask | ButtonPressMask,
2177 GrabModeAsync, GrabModeAsync, None, wCursor[WCUR_DEFAULT], CurrentTime) != Success) {
2178 *x_ret = 0;
2179 *y_ret = 0;
2180 return;
2182 if (HAS_TITLEBAR(wwin)) {
2183 h = WMFontHeight(scr->title_font) + (wPreferences.window_title_clearance +
2184 TITLEBAR_EXTEND_SPACE) * 2;
2185 height += h;
2187 if (HAS_RESIZEBAR(wwin)) {
2188 height += RESIZEBAR_HEIGHT;
2190 XGrabKeyboard(dpy, root, False, GrabModeAsync, GrabModeAsync, CurrentTime);
2191 XQueryPointer(dpy, root, &junkw, &junkw, &x, &y, &junk, &junk, (unsigned *)&junk);
2192 mapPositionDisplay(wwin, x - width / 2, y - h / 2, width, height);
2194 drawTransparentFrame(wwin, x - width / 2, y - h / 2, width, height);
2196 shiftl = XKeysymToKeycode(dpy, XK_Shift_L);
2197 shiftr = XKeysymToKeycode(dpy, XK_Shift_R);
2198 while (1) {
2199 WMMaskEvent(dpy, PointerMotionMask | ButtonPressMask | ExposureMask | KeyPressMask, &event);
2201 if (!checkMouseSamplingRate(&event))
2202 continue;
2204 switch (event.type) {
2205 case KeyPress:
2206 if ((event.xkey.keycode == shiftl)
2207 || (event.xkey.keycode == shiftr)) {
2208 drawTransparentFrame(wwin, x - width / 2, y - h / 2, width, height);
2209 cyclePositionDisplay(wwin, x - width / 2, y - h / 2, width, height);
2210 drawTransparentFrame(wwin, x - width / 2, y - h / 2, width, height);
2212 break;
2214 case MotionNotify:
2215 drawTransparentFrame(wwin, x - width / 2, y - h / 2, width, height);
2217 x = event.xmotion.x_root;
2218 y = event.xmotion.y_root;
2220 if (wPreferences.move_display == WDIS_FRAME_CENTER)
2221 moveGeometryDisplayCentered(scr, x, y + (height - h) / 2);
2223 showPosition(wwin, x - width / 2, y - h / 2);
2225 drawTransparentFrame(wwin, x - width / 2, y - h / 2, width, height);
2227 break;
2229 case ButtonPress:
2230 drawTransparentFrame(wwin, x - width / 2, y - h / 2, width, height);
2231 XSync(dpy, 0);
2232 *x_ret = x - width / 2;
2233 *y_ret = y - h / 2;
2234 XUngrabPointer(dpy, CurrentTime);
2235 XUngrabKeyboard(dpy, CurrentTime);
2236 /* get rid of the geometry window */
2237 WMUnmapWidget(scr->gview);
2238 return;
2240 default:
2241 WMHandleEvent(&event);
2242 break;