mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
Don't lower newly mapped windows when they're denied focus, if they are
2004-10-25 Elijah Newren <newren@math.utah.edu> Don't lower newly mapped windows when they're denied focus, if they are transients of the focused window. Instead, defocus the currently focused window. (fixes #151996). (Also, reenable focus stealing prevention and do a small spacing cleanup) * src/window-props.c (init_net_startup_id): fix spacing * src/window.c (window_takes_focus_on_map): re-enable focus stealing prevention, (meta_window_show): if the new window is denied focus and is a transient of the currently focused window, defocus the currently focused window but keep the transient on top; remove some old code about transients and focus; make sure that EnterNotify events won't accidentally focus the new window.
This commit is contained in:
parent
8b26849517
commit
2a5689911f
18
ChangeLog
18
ChangeLog
@ -1,3 +1,21 @@
|
|||||||
|
2004-10-25 Elijah Newren <newren@math.utah.edu>
|
||||||
|
|
||||||
|
Don't lower newly mapped windows when they're denied focus, if
|
||||||
|
they are transients of the focused window. Instead, defocus the
|
||||||
|
currently focused window. (fixes #151996).
|
||||||
|
|
||||||
|
(Also, reenable focus stealing prevention and do a small spacing
|
||||||
|
cleanup)
|
||||||
|
|
||||||
|
* src/window-props.c (init_net_startup_id): fix spacing
|
||||||
|
|
||||||
|
* src/window.c (window_takes_focus_on_map): re-enable focus
|
||||||
|
stealing prevention, (meta_window_show): if the new window is
|
||||||
|
denied focus and is a transient of the currently focused window,
|
||||||
|
defocus the currently focused window but keep the transient on
|
||||||
|
top; remove some old code about transients and focus; make sure
|
||||||
|
that EnterNotify events won't accidentally focus the new window.
|
||||||
|
|
||||||
2004-10-25 Elijah Newren <newren@math.utah.edu>
|
2004-10-25 Elijah Newren <newren@math.utah.edu>
|
||||||
|
|
||||||
Fix the alt-tab order--if the most recently used window is not
|
Fix the alt-tab order--if the most recently used window is not
|
||||||
|
53
src/window.c
53
src/window.c
@ -1611,9 +1611,6 @@ window_takes_focus_on_map (MetaWindow *window)
|
|||||||
case META_WINDOW_NORMAL:
|
case META_WINDOW_NORMAL:
|
||||||
case META_WINDOW_DIALOG:
|
case META_WINDOW_DIALOG:
|
||||||
case META_WINDOW_MODAL_DIALOG:
|
case META_WINDOW_MODAL_DIALOG:
|
||||||
/* Disable the focus-stealing-prevention stuff for now; see #149028 */
|
|
||||||
return TRUE;
|
|
||||||
|
|
||||||
meta_topic (META_DEBUG_STARTUP,
|
meta_topic (META_DEBUG_STARTUP,
|
||||||
"COMPARISON:\n"
|
"COMPARISON:\n"
|
||||||
" net_wm_user_time_set : %d\n"
|
" net_wm_user_time_set : %d\n"
|
||||||
@ -1707,10 +1704,29 @@ meta_window_show (MetaWindow *window)
|
|||||||
takes_focus_on_map = window_takes_focus_on_map (window);
|
takes_focus_on_map = window_takes_focus_on_map (window);
|
||||||
|
|
||||||
if ( (!takes_focus_on_map) && (window->display->focus_window != NULL) )
|
if ( (!takes_focus_on_map) && (window->display->focus_window != NULL) )
|
||||||
|
{
|
||||||
|
|
||||||
|
if (meta_window_is_ancestor_of_transient (window->display->focus_window,
|
||||||
|
window))
|
||||||
|
{
|
||||||
|
/* This happens for error dialogs or alerts; these need to remain on
|
||||||
|
* top, but it would be confusing to have its ancestor remain
|
||||||
|
* focused.
|
||||||
|
*/
|
||||||
|
meta_topic (META_DEBUG_STARTUP,
|
||||||
|
"The focus window %s is an ancestor of the newly mapped "
|
||||||
|
"window %s which isn't being focused. Unfocusing the "
|
||||||
|
"ancestor.\n",
|
||||||
|
window->display->focus_window->desc, window->desc);
|
||||||
|
|
||||||
|
meta_display_focus_the_no_focus_window (window->display, meta_display_get_current_time_roundtrip (window->display));
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
meta_window_stack_just_below (window, window->display->focus_window);
|
meta_window_stack_just_below (window, window->display->focus_window);
|
||||||
ensure_mru_position_after (window, window->display->focus_window);
|
ensure_mru_position_after (window, window->display->focus_window);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!window->placed)
|
if (!window->placed)
|
||||||
{
|
{
|
||||||
@ -1789,32 +1805,23 @@ meta_window_show (MetaWindow *window)
|
|||||||
|
|
||||||
if (did_placement)
|
if (did_placement)
|
||||||
{
|
{
|
||||||
if (window->xtransient_for != None)
|
|
||||||
{
|
|
||||||
MetaWindow *parent;
|
|
||||||
|
|
||||||
parent =
|
|
||||||
meta_display_lookup_x_window (window->display,
|
|
||||||
window->xtransient_for);
|
|
||||||
|
|
||||||
if (parent && parent->has_focus &&
|
|
||||||
(window->input || window->take_focus))
|
|
||||||
{
|
|
||||||
meta_topic (META_DEBUG_FOCUS,
|
|
||||||
"Focusing transient window '%s' since parent had focus\n",
|
|
||||||
window->desc);
|
|
||||||
meta_window_focus (window,
|
|
||||||
meta_display_get_current_time (window->display));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (takes_focus_on_map)
|
if (takes_focus_on_map)
|
||||||
{
|
{
|
||||||
meta_window_focus (window,
|
meta_window_focus (window,
|
||||||
meta_display_get_current_time (window->display));
|
meta_display_get_current_time_roundtrip (window->display));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
window->wm_state_demands_attention = TRUE;
|
window->wm_state_demands_attention = TRUE;
|
||||||
|
|
||||||
|
/* Prevent EnterNotify events in sloppy/mouse focus from
|
||||||
|
* erroneously focusing the window that had been denied
|
||||||
|
* focus. FIXME: This introduces a race; I have a couple
|
||||||
|
* ideas for a better way to accomplish the same thing, but
|
||||||
|
* they're more involved so do it this way for now.
|
||||||
|
*/
|
||||||
|
meta_display_increment_focus_sentinel (window->display);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (did_show)
|
if (did_show)
|
||||||
|
Loading…
Reference in New Issue
Block a user