mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
Handle crossing events during resizing. (#93384).
Mon Dec 9 22:09:56 2002 Soeren Sandmann <sandmann@daimi.au.dk> * src/display.c, src/window.c: Handle crossing events during resizing. (#93384).
This commit is contained in:
parent
a70fc3259f
commit
ba18c630b7
@ -1,3 +1,8 @@
|
|||||||
|
Mon Dec 9 22:09:56 2002 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
|
* src/display.c, src/window.c: Handle crossing events during
|
||||||
|
resizing. (#93384).
|
||||||
|
|
||||||
2002-12-09 Havoc Pennington <hp@redhat.com>
|
2002-12-09 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
* configure.in: 2.4.8
|
* configure.in: 2.4.8
|
||||||
|
@ -1252,6 +1252,12 @@ event_callback (XEvent *event,
|
|||||||
meta_window_handle_mouse_grab_op_event (window, event);
|
meta_window_handle_mouse_grab_op_event (window, event);
|
||||||
break;
|
break;
|
||||||
case EnterNotify:
|
case EnterNotify:
|
||||||
|
if (grab_op_is_mouse (display->grab_op) &&
|
||||||
|
display->grab_window == window)
|
||||||
|
{
|
||||||
|
meta_window_handle_mouse_grab_op_event (window, event);
|
||||||
|
break;
|
||||||
|
}
|
||||||
/* do this even if window->has_focus to avoid races */
|
/* do this even if window->has_focus to avoid races */
|
||||||
if (window && !serial_is_ignored (display, event->xany.serial) &&
|
if (window && !serial_is_ignored (display, event->xany.serial) &&
|
||||||
event->xcrossing.detail != NotifyInferior)
|
event->xcrossing.detail != NotifyInferior)
|
||||||
@ -1311,6 +1317,12 @@ event_callback (XEvent *event,
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case LeaveNotify:
|
case LeaveNotify:
|
||||||
|
if (grab_op_is_mouse (display->grab_op) &&
|
||||||
|
display->grab_window == window)
|
||||||
|
{
|
||||||
|
meta_window_handle_mouse_grab_op_event (window, event);
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (window)
|
if (window)
|
||||||
{
|
{
|
||||||
switch (meta_prefs_get_focus_mode ())
|
switch (meta_prefs_get_focus_mode ())
|
||||||
@ -2374,7 +2386,8 @@ meta_display_set_grab_op_cursor (MetaDisplay *display,
|
|||||||
cursor = xcursor_for_op (display, op);
|
cursor = xcursor_for_op (display, op);
|
||||||
|
|
||||||
#define GRAB_MASK (PointerMotionMask | PointerMotionHintMask | \
|
#define GRAB_MASK (PointerMotionMask | PointerMotionHintMask | \
|
||||||
ButtonPressMask | ButtonReleaseMask)
|
ButtonPressMask | ButtonReleaseMask | \
|
||||||
|
EnterWindowMask | LeaveWindowMask)
|
||||||
|
|
||||||
if (change_pointer)
|
if (change_pointer)
|
||||||
{
|
{
|
||||||
|
@ -6289,7 +6289,9 @@ meta_window_handle_mouse_grab_op_event (MetaWindow *window,
|
|||||||
|
|
||||||
meta_display_end_grab_op (window->display, event->xbutton.time);
|
meta_display_end_grab_op (window->display, event->xbutton.time);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EnterNotify:
|
||||||
|
case LeaveNotify:
|
||||||
case MotionNotify:
|
case MotionNotify:
|
||||||
switch (window->display->grab_op)
|
switch (window->display->grab_op)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user