1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 moveresize.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
21 #include "framerender.h"
31 #include "moveresize.h"
35 #include "extensions.h"
36 #include "render/render.h"
37 #include "render/theme.h"
42 /* how far windows move and resize with the keyboard arrows */
45 gboolean moveresize_in_progress
= FALSE
;
46 ObClient
*moveresize_client
= NULL
;
48 XSyncAlarm moveresize_alarm
= None
;
51 static gboolean moving
= FALSE
; /* TRUE - moving, FALSE - resizing */
53 static gint start_x
, start_y
, start_cx
, start_cy
, start_cw
, start_ch
;
54 static gint cur_x
, cur_y
, cur_w
, cur_h
;
56 static guint32 corner
;
57 static ObDirection edge_warp_dir
= -1;
58 static ObDirection key_resize_edge
= -1;
60 static gboolean waiting_for_sync
;
63 static ObPopup
*popup
= NULL
;
65 static void do_edge_warp(gint x
, gint y
);
66 static void cancel_edge_warp();
68 static gboolean
sync_timeout_func(gpointer data
);
71 static void client_dest(ObClient
*client
, gpointer data
)
73 if (moveresize_client
== client
)
77 void moveresize_startup(gboolean reconfig
)
79 popup
= popup_new(FALSE
);
80 popup_set_text_align(popup
, RR_JUSTIFY_CENTER
);
83 client_add_destroy_notify(client_dest
, NULL
);
86 void moveresize_shutdown(gboolean reconfig
)
89 if (moveresize_in_progress
)
90 moveresize_end(FALSE
);
91 client_remove_destroy_notify(client_dest
);
98 static void popup_coords(ObClient
*c
, const gchar
*format
, gint a
, gint b
)
102 text
= g_strdup_printf(format
, a
, b
);
103 if (config_resize_popup_pos
== 1) /* == "Top" */
104 popup_position(popup
, SouthGravity
,
106 + c
->frame
->area
.width
/2,
107 c
->frame
->area
.y
- ob_rr_theme
->fbwidth
);
108 else /* == "Center" */
109 popup_position(popup
, CenterGravity
,
110 c
->frame
->area
.x
+ c
->frame
->size
.left
+
112 c
->frame
->area
.y
+ c
->frame
->size
.top
+
114 popup_show(popup
, text
);
118 void moveresize_start(ObClient
*c
, gint x
, gint y
, guint b
, guint32 cnr
)
121 gboolean mv
= (cnr
== prop_atoms
.net_wm_moveresize_move
||
122 cnr
== prop_atoms
.net_wm_moveresize_move_keyboard
);
124 if (moveresize_in_progress
|| !c
->frame
->visible
||
126 (c
->functions
& OB_CLIENT_FUNC_MOVE
) :
127 (c
->functions
& OB_CLIENT_FUNC_RESIZE
)))
130 if (cnr
== prop_atoms
.net_wm_moveresize_size_topleft
)
131 cur
= OB_CURSOR_NORTHWEST
;
132 else if (cnr
== prop_atoms
.net_wm_moveresize_size_top
)
133 cur
= OB_CURSOR_NORTH
;
134 else if (cnr
== prop_atoms
.net_wm_moveresize_size_topright
)
135 cur
= OB_CURSOR_NORTHEAST
;
136 else if (cnr
== prop_atoms
.net_wm_moveresize_size_right
)
137 cur
= OB_CURSOR_EAST
;
138 else if (cnr
== prop_atoms
.net_wm_moveresize_size_bottomright
)
139 cur
= OB_CURSOR_SOUTHEAST
;
140 else if (cnr
== prop_atoms
.net_wm_moveresize_size_bottom
)
141 cur
= OB_CURSOR_SOUTH
;
142 else if (cnr
== prop_atoms
.net_wm_moveresize_size_bottomleft
)
143 cur
= OB_CURSOR_SOUTHWEST
;
144 else if (cnr
== prop_atoms
.net_wm_moveresize_size_left
)
145 cur
= OB_CURSOR_WEST
;
146 else if (cnr
== prop_atoms
.net_wm_moveresize_size_keyboard
)
147 cur
= OB_CURSOR_SOUTHEAST
;
148 else if (cnr
== prop_atoms
.net_wm_moveresize_move
)
149 cur
= OB_CURSOR_MOVE
;
150 else if (cnr
== prop_atoms
.net_wm_moveresize_move_keyboard
)
151 cur
= OB_CURSOR_MOVE
;
153 g_assert_not_reached();
155 /* keep the pointer bounded to the screen for move/resize */
156 if (!grab_pointer(FALSE
, TRUE
, cur
))
158 if (!grab_keyboard()) {
163 frame_end_iconify_animation(c
->frame
);
166 moveresize_client
= c
;
167 start_cx
= c
->area
.x
;
168 start_cy
= c
->area
.y
;
169 start_cw
= c
->area
.width
;
170 start_ch
= c
->area
.height
;
171 /* these adjustments for the size_inc make resizing a terminal more
172 friendly. you essentially start the resize in the middle of the
173 increment instead of at 0, so you have to move half an increment
174 either way instead of a full increment one and 1 px the other. */
175 start_x
= x
- (mv
? 0 : c
->size_inc
.width
/ 2);
176 start_y
= y
- (mv
? 0 : c
->size_inc
.height
/ 2);
179 key_resize_edge
= -1;
182 have to change start_cx and start_cy if going to do this..
183 if (corner == prop_atoms.net_wm_moveresize_move_keyboard ||
184 corner == prop_atoms.net_wm_moveresize_size_keyboard)
185 XWarpPointer(ob_display, None, c->window, 0, 0, 0, 0,
186 c->area.width / 2, c->area.height / 2);
194 moveresize_in_progress
= TRUE
;
197 if (config_resize_redraw
&& !moving
&& extensions_sync
&&
198 moveresize_client
->sync_request
&& moveresize_client
->sync_counter
)
200 /* Initialize values for the resize syncing, and create an alarm for
201 the client's xsync counter */
204 XSyncAlarmAttributes aa
;
206 /* set the counter to an initial value */
207 XSyncIntToValue(&val
, 0);
208 XSyncSetCounter(ob_display
, moveresize_client
->sync_counter
, val
);
210 /* this will be incremented when we tell the client what we're
212 moveresize_client
->sync_counter_value
= 0;
214 /* the next sequence we're waiting for with the alarm */
215 XSyncIntToValue(&val
, 1);
217 /* set an alarm on the counter */
218 aa
.trigger
.counter
= moveresize_client
->sync_counter
;
219 aa
.trigger
.wait_value
= val
;
220 aa
.trigger
.value_type
= XSyncAbsolute
;
221 aa
.trigger
.test_type
= XSyncPositiveTransition
;
223 XSyncIntToValue(&aa
.delta
, 1);
224 moveresize_alarm
= XSyncCreateAlarm(ob_display
,
233 waiting_for_sync
= FALSE
;
238 void moveresize_end(gboolean cancel
)
246 client_move(moveresize_client
,
247 (cancel
? start_cx
: cur_x
),
248 (cancel
? start_cy
: cur_y
));
251 /* turn off the alarm */
252 if (moveresize_alarm
!= None
) {
253 XSyncDestroyAlarm(ob_display
, moveresize_alarm
);
254 moveresize_alarm
= None
;
257 ob_main_loop_timeout_remove(ob_main_loop
, sync_timeout_func
);
260 client_configure(moveresize_client
,
261 (cancel
? start_cx
: cur_x
),
262 (cancel
? start_cy
: cur_y
),
263 (cancel
? start_cw
: cur_w
),
264 (cancel
? start_ch
: cur_h
),
268 /* dont edge warp after its ended */
271 moveresize_in_progress
= FALSE
;
272 moveresize_client
= NULL
;
275 static void do_move(gboolean keyboard
, gint keydist
)
279 if (keyboard
) resist
= keydist
- 1; /* resist for one key press */
280 else resist
= config_resist_win
;
281 resist_move_windows(moveresize_client
, resist
, &cur_x
, &cur_y
);
282 if (!keyboard
) resist
= config_resist_edge
;
283 resist_move_monitors(moveresize_client
, resist
, &cur_x
, &cur_y
);
285 client_configure(moveresize_client
, cur_x
, cur_y
, cur_w
, cur_h
,
287 if (config_resize_popup_show
== 2) /* == "Always" */
288 popup_coords(moveresize_client
, "%d x %d",
289 moveresize_client
->frame
->area
.x
,
290 moveresize_client
->frame
->area
.y
);
294 static void do_resize()
296 gint x
, y
, w
, h
, lw
, lh
;
298 /* see if it is actually going to resize */
303 client_try_configure(moveresize_client
, &x
, &y
, &w
, &h
,
305 if (w
== moveresize_client
->area
.width
&&
306 h
== moveresize_client
->area
.height
)
312 if (config_resize_redraw
&& extensions_sync
&&
313 moveresize_client
->sync_request
&& moveresize_client
->sync_counter
)
318 /* are we already waiting for the sync counter to catch up? */
319 if (waiting_for_sync
)
322 /* increment the value we're waiting for */
323 ++moveresize_client
->sync_counter_value
;
324 XSyncIntToValue(&val
, moveresize_client
->sync_counter_value
);
326 /* tell the client what we're waiting for */
327 ce
.xclient
.type
= ClientMessage
;
328 ce
.xclient
.message_type
= prop_atoms
.wm_protocols
;
329 ce
.xclient
.display
= ob_display
;
330 ce
.xclient
.window
= moveresize_client
->window
;
331 ce
.xclient
.format
= 32;
332 ce
.xclient
.data
.l
[0] = prop_atoms
.net_wm_sync_request
;
333 ce
.xclient
.data
.l
[1] = event_curtime
;
334 ce
.xclient
.data
.l
[2] = XSyncValueLow32(val
);
335 ce
.xclient
.data
.l
[3] = XSyncValueHigh32(val
);
336 ce
.xclient
.data
.l
[4] = 0l;
337 XSendEvent(ob_display
, moveresize_client
->window
, FALSE
,
340 waiting_for_sync
= TRUE
;
342 ob_main_loop_timeout_remove(ob_main_loop
, sync_timeout_func
);
343 ob_main_loop_timeout_add(ob_main_loop
, G_USEC_PER_SEC
* 2,
349 client_configure(moveresize_client
, cur_x
, cur_y
, cur_w
, cur_h
,
352 /* this would be better with a fixed width font ... XXX can do it better
353 if there are 2 text boxes */
354 if (config_resize_popup_show
== 2 || /* == "Always" */
355 (config_resize_popup_show
== 1 && /* == "Nonpixel" */
356 moveresize_client
->size_inc
.width
> 1 &&
357 moveresize_client
->size_inc
.height
> 1))
358 popup_coords(moveresize_client
, "%d x %d",
359 moveresize_client
->logical_size
.width
,
360 moveresize_client
->logical_size
.height
);
364 static gboolean
sync_timeout_func(gpointer data
)
366 waiting_for_sync
= FALSE
; /* we timed out waiting for our sync... */
367 do_resize(); /* ...so let any pending resizes through */
369 return FALSE
; /* don't repeat */
373 static void calc_resize(gboolean keyboard
, gint keydist
, gint
*dw
, gint
*dh
,
376 gint resist
, x
= 0, y
= 0, lw
, lh
, ow
, oh
, nw
, nh
;
385 (moveresize_client
->max_ratio
|| moveresize_client
->min_ratio
))
388 case OB_DIRECTION_NORTH
:
389 case OB_DIRECTION_SOUTH
:
390 /* resize the width based on the height */
391 if (moveresize_client
->min_ratio
) {
392 if (nh
* moveresize_client
->min_ratio
> nw
)
393 nw
= (gint
)(nh
* moveresize_client
->min_ratio
);
395 if (moveresize_client
->max_ratio
) {
396 if (nh
* moveresize_client
->max_ratio
< nw
)
397 nw
= (gint
)(nh
* moveresize_client
->max_ratio
);
401 /* resize the height based on the width */
402 if (moveresize_client
->min_ratio
) {
403 if (nh
* moveresize_client
->min_ratio
> nw
)
404 nh
= (gint
)(nw
/ moveresize_client
->min_ratio
);
406 if (moveresize_client
->max_ratio
) {
407 if (nh
* moveresize_client
->max_ratio
< nw
)
408 nh
= (gint
)(nw
/ moveresize_client
->max_ratio
);
413 /* see its actual size (apply aspect ratios) */
414 client_try_configure(moveresize_client
, &x
, &y
, &nw
, &nh
, &lw
, &lh
,
420 /* resist_size_* needs the frame size */
421 nw
+= moveresize_client
->frame
->size
.left
+
422 moveresize_client
->frame
->size
.right
;
423 nh
+= moveresize_client
->frame
->size
.top
+
424 moveresize_client
->frame
->size
.bottom
;
426 if (keyboard
) resist
= keydist
- 1; /* resist for one key press */
427 else resist
= config_resist_win
;
428 resist_size_windows(moveresize_client
, resist
, &nw
, &nh
, dir
);
429 if (!keyboard
) resist
= config_resist_edge
;
430 resist_size_monitors(moveresize_client
, resist
, &nw
, &nh
, dir
);
432 nw
-= moveresize_client
->frame
->size
.left
+
433 moveresize_client
->frame
->size
.right
;
434 nh
-= moveresize_client
->frame
->size
.top
+
435 moveresize_client
->frame
->size
.bottom
;
440 /* take aspect ratios into account for resistance */
442 (moveresize_client
->max_ratio
|| moveresize_client
->min_ratio
))
444 if (*dh
!= trydh
) { /* got resisted */
445 /* resize the width based on the height */
446 if (moveresize_client
->min_ratio
) {
447 if (nh
* moveresize_client
->min_ratio
> nw
)
448 nw
= (gint
)(nh
* moveresize_client
->min_ratio
);
450 if (moveresize_client
->max_ratio
) {
451 if (nh
* moveresize_client
->max_ratio
< nw
)
452 nw
= (gint
)(nh
* moveresize_client
->max_ratio
);
455 if (*dw
!= trydw
) { /* got resisted */
456 /* resize the height based on the width */
457 if (moveresize_client
->min_ratio
) {
458 if (nh
* moveresize_client
->min_ratio
> nw
)
459 nh
= (gint
)(nw
/ moveresize_client
->min_ratio
);
461 if (moveresize_client
->max_ratio
) {
462 if (nh
* moveresize_client
->max_ratio
< nw
)
463 nh
= (gint
)(nw
/ moveresize_client
->max_ratio
);
468 /* make sure it's all valid */
469 client_try_configure(moveresize_client
, &x
, &y
, &nw
, &nh
, &lw
, &lh
, TRUE
);
475 static gboolean
edge_warp_delay_func(gpointer data
)
479 d
= screen_find_desktop(screen_desktop
, edge_warp_dir
, TRUE
, FALSE
);
480 if (d
!= screen_desktop
) screen_set_desktop(d
, TRUE
);
484 return FALSE
; /* don't repeat */
487 static void do_edge_warp(gint x
, gint y
)
492 if (!config_mouse_screenedgetime
) return;
496 for (i
= 0; i
< screen_num_monitors
; ++i
) {
497 Rect
*a
= screen_physical_area_monitor(i
);
498 if (x
== RECT_LEFT(*a
)) dir
= OB_DIRECTION_WEST
;
499 if (x
== RECT_RIGHT(*a
)) dir
= OB_DIRECTION_EAST
;
500 if (y
== RECT_TOP(*a
)) dir
= OB_DIRECTION_NORTH
;
501 if (y
== RECT_BOTTOM(*a
)) dir
= OB_DIRECTION_SOUTH
;
503 /* try check for xinerama boundaries */
504 if ((x
+ 1 == RECT_LEFT(*a
) || x
- 1 == RECT_RIGHT(*a
)) &&
505 (dir
== OB_DIRECTION_WEST
|| dir
== OB_DIRECTION_EAST
))
509 if ((y
+ 1 == RECT_TOP(*a
) || y
- 1 == RECT_BOTTOM(*a
)) &&
510 (dir
== OB_DIRECTION_NORTH
|| dir
== OB_DIRECTION_SOUTH
))
517 if (dir
!= edge_warp_dir
) {
518 if (dir
== (ObDirection
)-1)
521 ob_main_loop_timeout_add(ob_main_loop
,
522 config_mouse_screenedgetime
* 1000,
523 edge_warp_delay_func
,
529 static void cancel_edge_warp()
531 ob_main_loop_timeout_remove(ob_main_loop
, edge_warp_delay_func
);
534 static void move_with_keys(gint keycode
, gint state
)
536 gint dx
= 0, dy
= 0, ox
= cur_x
, oy
= cur_y
;
537 gint opx
, px
, opy
, py
;
540 /* shift means jump to edge */
541 if (state
& modkeys_key_to_mask(OB_MODKEY_KEY_SHIFT
)) {
545 if (keycode
== ob_keycode(OB_KEY_RIGHT
))
546 dir
= OB_DIRECTION_EAST
;
547 else if (keycode
== ob_keycode(OB_KEY_LEFT
))
548 dir
= OB_DIRECTION_WEST
;
549 else if (keycode
== ob_keycode(OB_KEY_DOWN
))
550 dir
= OB_DIRECTION_SOUTH
;
551 else /* if (keycode == ob_keycode(OB_KEY_UP)) */
552 dir
= OB_DIRECTION_NORTH
;
554 client_find_move_directional(moveresize_client
, dir
, &x
, &y
);
555 dx
= x
- moveresize_client
->area
.x
;
556 dy
= y
- moveresize_client
->area
.y
;
558 /* control means fine grained */
559 if (state
& modkeys_key_to_mask(OB_MODKEY_KEY_CONTROL
))
564 if (keycode
== ob_keycode(OB_KEY_RIGHT
))
566 else if (keycode
== ob_keycode(OB_KEY_LEFT
))
568 else if (keycode
== ob_keycode(OB_KEY_DOWN
))
570 else /* if (keycode == ob_keycode(OB_KEY_UP)) */
574 screen_pointer_pos(&opx
, &opy
);
575 XWarpPointer(ob_display
, None
, None
, 0, 0, 0, 0, dx
, dy
);
576 /* steal the motion events this causes */
577 XSync(ob_display
, FALSE
);
580 while (XCheckTypedEvent(ob_display
, MotionNotify
, &ce
));
582 screen_pointer_pos(&px
, &py
);
588 /* because the cursor moves even though the window does
589 not nessesarily (resistance), this adjusts where the curor
590 thinks it started so that it keeps up with where the window
592 start_x
+= (px
- opx
) - (cur_x
- ox
);
593 start_y
+= (py
- opy
) - (cur_y
- oy
);
596 static void resize_with_keys(gint keycode
, gint state
)
598 gint dw
= 0, dh
= 0, pdx
= 0, pdy
= 0, opx
, opy
, px
, py
;
599 gint dist
= 0, resist
= 0;
602 /* pick the edge if it needs to move */
603 if (keycode
== ob_keycode(OB_KEY_RIGHT
)) {
604 dir
= OB_DIRECTION_EAST
;
605 if (key_resize_edge
!= OB_DIRECTION_WEST
&&
606 key_resize_edge
!= OB_DIRECTION_EAST
)
608 key_resize_edge
= OB_DIRECTION_EAST
;
612 if (keycode
== ob_keycode(OB_KEY_LEFT
)) {
613 dir
= OB_DIRECTION_WEST
;
614 if (key_resize_edge
!= OB_DIRECTION_WEST
&&
615 key_resize_edge
!= OB_DIRECTION_EAST
)
617 key_resize_edge
= OB_DIRECTION_WEST
;
621 if (keycode
== ob_keycode(OB_KEY_UP
)) {
622 dir
= OB_DIRECTION_NORTH
;
623 if (key_resize_edge
!= OB_DIRECTION_NORTH
&&
624 key_resize_edge
!= OB_DIRECTION_SOUTH
)
626 key_resize_edge
= OB_DIRECTION_NORTH
;
630 if (keycode
== ob_keycode(OB_KEY_DOWN
)) {
631 dir
= OB_DIRECTION_SOUTH
;
632 if (key_resize_edge
!= OB_DIRECTION_NORTH
&&
633 key_resize_edge
!= OB_DIRECTION_SOUTH
)
635 key_resize_edge
= OB_DIRECTION_SOUTH
;
640 /* shift means jump to edge */
641 if (state
& modkeys_key_to_mask(OB_MODKEY_KEY_SHIFT
)) {
644 if (keycode
== ob_keycode(OB_KEY_RIGHT
))
645 dir
= OB_DIRECTION_EAST
;
646 else if (keycode
== ob_keycode(OB_KEY_LEFT
))
647 dir
= OB_DIRECTION_WEST
;
648 else if (keycode
== ob_keycode(OB_KEY_DOWN
))
649 dir
= OB_DIRECTION_SOUTH
;
650 else /* if (keycode == ob_keycode(OB_KEY_UP)) */
651 dir
= OB_DIRECTION_NORTH
;
653 client_find_resize_directional(moveresize_client
, key_resize_edge
,
654 key_resize_edge
== dir
,
656 dw
= w
- moveresize_client
->area
.width
;
657 dh
= h
- moveresize_client
->area
.height
;
661 /* control means fine grained */
662 if (moveresize_client
->size_inc
.width
> 1) {
663 distw
= moveresize_client
->size_inc
.width
;
666 else if (state
& modkeys_key_to_mask(OB_MODKEY_KEY_CONTROL
)) {
674 if (moveresize_client
->size_inc
.height
> 1) {
675 disth
= moveresize_client
->size_inc
.height
;
678 else if (state
& modkeys_key_to_mask(OB_MODKEY_KEY_CONTROL
)) {
687 if (key_resize_edge
== OB_DIRECTION_WEST
) {
688 if (dir
== OB_DIRECTION_WEST
)
691 dw
= -(dist
= distw
);
693 else if (key_resize_edge
== OB_DIRECTION_EAST
) {
694 if (dir
== OB_DIRECTION_EAST
)
697 dw
= -(dist
= distw
);
699 else if (key_resize_edge
== OB_DIRECTION_NORTH
) {
700 if (dir
== OB_DIRECTION_NORTH
)
703 dh
= -(dist
= disth
);
705 else /*if (key_resize_edge == OB_DIRECTION_SOUTH)*/ {
706 if (dir
== OB_DIRECTION_SOUTH
)
709 dh
= -(dist
= disth
);
713 calc_resize(TRUE
, resist
, &dw
, &dh
, dir
);
714 if (key_resize_edge
== OB_DIRECTION_WEST
)
716 else if (key_resize_edge
== OB_DIRECTION_NORTH
)
721 /* how to move the pointer to keep up with the change */
722 if (key_resize_edge
== OB_DIRECTION_WEST
)
724 else if (key_resize_edge
== OB_DIRECTION_EAST
)
726 else if (key_resize_edge
== OB_DIRECTION_NORTH
)
728 else if (key_resize_edge
== OB_DIRECTION_SOUTH
)
731 screen_pointer_pos(&opx
, &opy
);
732 XWarpPointer(ob_display
, None
, None
, 0, 0, 0, 0, pdx
, pdy
);
733 /* steal the motion events this causes */
734 XSync(ob_display
, FALSE
);
737 while (XCheckTypedEvent(ob_display
, MotionNotify
, &ce
));
739 screen_pointer_pos(&px
, &py
);
743 /* because the cursor moves even though the window does
744 not nessesarily (resistance), this adjusts where the cursor
745 thinks it started so that it keeps up with where the window
747 start_x
+= (px
- opx
) - dw
;
748 start_y
+= (py
- opy
) - dh
;
752 gboolean
moveresize_event(XEvent
*e
)
754 gboolean used
= FALSE
;
756 if (!moveresize_in_progress
) return FALSE
;
758 if (e
->type
== ButtonPress
) {
760 start_x
= e
->xbutton
.x_root
;
761 start_y
= e
->xbutton
.y_root
;
762 button
= e
->xbutton
.button
; /* this will end it now */
764 used
= e
->xbutton
.button
== button
;
765 } else if (e
->type
== ButtonRelease
) {
766 if (!button
|| e
->xbutton
.button
== button
) {
767 moveresize_end(FALSE
);
770 } else if (e
->type
== MotionNotify
) {
772 cur_x
= start_cx
+ e
->xmotion
.x_root
- start_x
;
773 cur_y
= start_cy
+ e
->xmotion
.y_root
- start_y
;
775 do_edge_warp(e
->xmotion
.x_root
, e
->xmotion
.y_root
);
780 if (corner
== prop_atoms
.net_wm_moveresize_size_topleft
) {
781 dw
= -(e
->xmotion
.x_root
- start_x
);
782 dh
= -(e
->xmotion
.y_root
- start_y
);
783 dir
= OB_DIRECTION_NORTHWEST
;
784 } else if (corner
== prop_atoms
.net_wm_moveresize_size_top
) {
786 dh
= -(e
->xmotion
.y_root
- start_y
);
787 dir
= OB_DIRECTION_NORTH
;
788 } else if (corner
== prop_atoms
.net_wm_moveresize_size_topright
) {
789 dw
= (e
->xmotion
.x_root
- start_x
);
790 dh
= -(e
->xmotion
.y_root
- start_y
);
791 dir
= OB_DIRECTION_NORTHEAST
;
792 } else if (corner
== prop_atoms
.net_wm_moveresize_size_right
) {
793 dw
= (e
->xmotion
.x_root
- start_x
);
795 dir
= OB_DIRECTION_EAST
;
797 prop_atoms
.net_wm_moveresize_size_bottomright
) {
798 dw
= (e
->xmotion
.x_root
- start_x
);
799 dh
= (e
->xmotion
.y_root
- start_y
);
800 dir
= OB_DIRECTION_SOUTHEAST
;
801 } else if (corner
== prop_atoms
.net_wm_moveresize_size_bottom
) {
803 dh
= (e
->xmotion
.y_root
- start_y
);
804 dir
= OB_DIRECTION_SOUTH
;
806 prop_atoms
.net_wm_moveresize_size_bottomleft
) {
807 dw
= -(e
->xmotion
.x_root
- start_x
);
808 dh
= (e
->xmotion
.y_root
- start_y
);
809 dir
= OB_DIRECTION_SOUTHWEST
;
810 } else if (corner
== prop_atoms
.net_wm_moveresize_size_left
) {
811 dw
= -(e
->xmotion
.x_root
- start_x
);
813 dir
= OB_DIRECTION_WEST
;
814 } else if (corner
== prop_atoms
.net_wm_moveresize_size_keyboard
) {
815 dw
= (e
->xmotion
.x_root
- start_x
);
816 dh
= (e
->xmotion
.y_root
- start_y
);
817 dir
= OB_DIRECTION_SOUTHEAST
;
819 g_assert_not_reached();
821 dw
-= cur_w
- start_cw
;
822 dh
-= cur_h
- start_ch
;
824 calc_resize(FALSE
, 0, &dw
, &dh
, dir
);
828 if (corner
== prop_atoms
.net_wm_moveresize_size_topleft
||
829 corner
== prop_atoms
.net_wm_moveresize_size_left
||
830 corner
== prop_atoms
.net_wm_moveresize_size_bottomleft
)
834 if (corner
== prop_atoms
.net_wm_moveresize_size_topleft
||
835 corner
== prop_atoms
.net_wm_moveresize_size_top
||
836 corner
== prop_atoms
.net_wm_moveresize_size_topright
)
844 } else if (e
->type
== KeyPress
) {
845 if (e
->xkey
.keycode
== ob_keycode(OB_KEY_ESCAPE
)) {
846 moveresize_end(TRUE
);
848 } else if (e
->xkey
.keycode
== ob_keycode(OB_KEY_RETURN
)) {
849 moveresize_end(FALSE
);
851 } else if (e
->xkey
.keycode
== ob_keycode(OB_KEY_RIGHT
) ||
852 e
->xkey
.keycode
== ob_keycode(OB_KEY_LEFT
) ||
853 e
->xkey
.keycode
== ob_keycode(OB_KEY_DOWN
) ||
854 e
->xkey
.keycode
== ob_keycode(OB_KEY_UP
))
856 if (corner
== prop_atoms
.net_wm_moveresize_size_keyboard
) {
857 resize_with_keys(e
->xkey
.keycode
, e
->xkey
.state
);
859 } else if (corner
== prop_atoms
.net_wm_moveresize_move_keyboard
) {
860 move_with_keys(e
->xkey
.keycode
, e
->xkey
.state
);
866 else if (e
->type
== extensions_sync_event_basep
+ XSyncAlarmNotify
)
868 waiting_for_sync
= FALSE
; /* we got our sync... */
869 do_resize(); /* ...so try resize if there is more change pending */