make Alt+button2 do a resize

2002-05-09  Havoc Pennington  <hp@redhat.com>

	* src/display.c (event_callback): make Alt+button2 do a resize
This commit is contained in:
Havoc Pennington 2002-05-09 21:22:01 +00:00 committed by Havoc Pennington
parent 8f5c12d76d
commit 6d2c558bd8
2 changed files with 35 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-05-09 Havoc Pennington <hp@redhat.com>
* src/display.c (event_callback): make Alt+button2 do a resize
2002-05-08 Anders Carlsson <andersca@gnu.org>
* src/fixedtip.c (meta_fixed_tip_show):

View File

@ -952,7 +952,37 @@ event_callback (XEvent *event,
}
else if (event->xbutton.button == 2)
{
begin_move = TRUE;
if (window->has_resize_func)
{
gboolean north;
gboolean west;
int root_x, root_y;
MetaGrabOp op;
meta_window_get_position (window, &root_x, &root_y);
west = event->xbutton.x_root < (root_x + window->rect.width / 2);
north = event->xbutton.y_root < (root_y + window->rect.height / 2);
if (west && north)
op = META_GRAB_OP_RESIZING_NW;
else if (west)
op = META_GRAB_OP_RESIZING_SW;
else if (north)
op = META_GRAB_OP_RESIZING_NE;
else
op = META_GRAB_OP_RESIZING_SE;
meta_display_begin_grab_op (display,
window,
op,
TRUE,
event->xbutton.button,
0,
event->xbutton.time,
event->xbutton.x_root,
event->xbutton.y_root);
}
}
else if (event->xbutton.button == 3)
{