split into "see if we should be showing" and "actually show/hide"
2002-11-03 Havoc Pennington <hp@pobox.com> * src/window.c (meta_window_calc_showing): split into "see if we should be showing" and "actually show/hide" functions (idle_calc_showing): rework to first unmap all newly-hidden windows from bottom to top then map all newly-showing windows from top to bottom resulting in fewer exposes, #95220
This commit is contained in:
parent
ee84fbb81f
commit
1d0b5ef660
@ -1,3 +1,11 @@
|
|||||||
|
2002-11-03 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
|
* src/window.c (meta_window_calc_showing): split into "see if we
|
||||||
|
should be showing" and "actually show/hide" functions
|
||||||
|
(idle_calc_showing): rework to first unmap all newly-hidden
|
||||||
|
windows from bottom to top then map all newly-showing windows from
|
||||||
|
top to bottom resulting in fewer exposes, #95220
|
||||||
|
|
||||||
2002-11-03 Havoc Pennington <hp@pobox.com>
|
2002-11-03 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
* src/theme.c (meta_frame_layout_calc_geometry): fix from Garrett
|
* src/theme.c (meta_frame_layout_calc_geometry): fix from Garrett
|
||||||
|
101
src/window.c
101
src/window.c
@ -1106,12 +1106,12 @@ meta_window_visible_on_workspace (MetaWindow *window,
|
|||||||
meta_workspace_contains_window (workspace, window);
|
meta_workspace_contains_window (workspace, window);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static gboolean
|
||||||
meta_window_calc_showing (MetaWindow *window)
|
window_should_be_showing (MetaWindow *window)
|
||||||
{
|
{
|
||||||
gboolean showing, on_workspace;
|
gboolean showing, on_workspace;
|
||||||
|
|
||||||
meta_verbose ("Calc showing for window %s\n", window->desc);
|
meta_verbose ("Should be showing for window %s\n", window->desc);
|
||||||
|
|
||||||
/* 1. See if we're on the workspace */
|
/* 1. See if we're on the workspace */
|
||||||
|
|
||||||
@ -1179,10 +1179,24 @@ meta_window_calc_showing (MetaWindow *window)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return showing;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
implement_showing (MetaWindow *window,
|
||||||
|
gboolean showing)
|
||||||
|
{
|
||||||
/* Actually show/hide the window */
|
/* Actually show/hide the window */
|
||||||
|
meta_verbose ("Implement showing = %d for window %s\n", window->desc,
|
||||||
|
showing);
|
||||||
|
|
||||||
if (!showing)
|
if (!showing)
|
||||||
{
|
{
|
||||||
|
gboolean on_workspace;
|
||||||
|
|
||||||
|
on_workspace = meta_window_visible_on_workspace (window,
|
||||||
|
window->screen->active_workspace);
|
||||||
|
|
||||||
/* Really this effects code should probably
|
/* Really this effects code should probably
|
||||||
* be in meta_window_hide so the window->mapped
|
* be in meta_window_hide so the window->mapped
|
||||||
* test isn't duplicated here. Anyhow, we animate
|
* test isn't duplicated here. Anyhow, we animate
|
||||||
@ -1226,6 +1240,11 @@ meta_window_calc_showing (MetaWindow *window)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
meta_window_calc_showing (MetaWindow *window)
|
||||||
|
{
|
||||||
|
implement_showing (window, window_should_be_showing (window));
|
||||||
|
}
|
||||||
|
|
||||||
static guint calc_showing_idle = 0;
|
static guint calc_showing_idle = 0;
|
||||||
static GSList *calc_showing_pending = NULL;
|
static GSList *calc_showing_pending = NULL;
|
||||||
@ -1248,6 +1267,9 @@ idle_calc_showing (gpointer data)
|
|||||||
{
|
{
|
||||||
GSList *tmp;
|
GSList *tmp;
|
||||||
GSList *copy;
|
GSList *copy;
|
||||||
|
GSList *should_show;
|
||||||
|
GSList *should_hide;
|
||||||
|
GSList *unplaced;
|
||||||
|
|
||||||
meta_topic (META_DEBUG_WINDOW_STATE,
|
meta_topic (META_DEBUG_WINDOW_STATE,
|
||||||
"Clearing the calc_showing queue\n");
|
"Clearing the calc_showing queue\n");
|
||||||
@ -1263,11 +1285,14 @@ idle_calc_showing (gpointer data)
|
|||||||
|
|
||||||
destroying_windows_disallowed += 1;
|
destroying_windows_disallowed += 1;
|
||||||
|
|
||||||
/* sort them from bottom to top, so we map the
|
/* We map windows from top to bottom and unmap from bottom to
|
||||||
* bottom windows first, so that placement (e.g. cascading)
|
* top, to avoid extra expose events. The exception is
|
||||||
* works properly
|
* for unplaced windows, which have to be mapped from bottom to
|
||||||
|
* top so placement works.
|
||||||
*/
|
*/
|
||||||
copy = g_slist_sort (copy, stackcmp);
|
should_show = NULL;
|
||||||
|
should_hide = NULL;
|
||||||
|
unplaced = NULL;
|
||||||
|
|
||||||
tmp = copy;
|
tmp = copy;
|
||||||
while (tmp != NULL)
|
while (tmp != NULL)
|
||||||
@ -1276,8 +1301,66 @@ idle_calc_showing (gpointer data)
|
|||||||
|
|
||||||
window = tmp->data;
|
window = tmp->data;
|
||||||
|
|
||||||
|
if (!window->placed)
|
||||||
|
unplaced = g_slist_prepend (unplaced, window);
|
||||||
|
else if (window_should_be_showing (window))
|
||||||
|
should_show = g_slist_prepend (should_show, window);
|
||||||
|
else
|
||||||
|
should_hide = g_slist_prepend (should_hide, window);
|
||||||
|
|
||||||
|
tmp = tmp->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* bottom to top */
|
||||||
|
unplaced = g_slist_sort (unplaced, stackcmp);
|
||||||
|
should_hide = g_slist_sort (should_hide, stackcmp);
|
||||||
|
/* top to bottom */
|
||||||
|
should_show = g_slist_sort (should_show, stackcmp);
|
||||||
|
should_show = g_slist_reverse (should_show);
|
||||||
|
|
||||||
|
tmp = unplaced;
|
||||||
|
while (tmp != NULL)
|
||||||
|
{
|
||||||
|
MetaWindow *window;
|
||||||
|
|
||||||
|
window = tmp->data;
|
||||||
|
|
||||||
meta_window_calc_showing (window);
|
meta_window_calc_showing (window);
|
||||||
|
|
||||||
|
tmp = tmp->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmp = should_hide;
|
||||||
|
while (tmp != NULL)
|
||||||
|
{
|
||||||
|
MetaWindow *window;
|
||||||
|
|
||||||
|
window = tmp->data;
|
||||||
|
|
||||||
|
implement_showing (window, FALSE);
|
||||||
|
|
||||||
|
tmp = tmp->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmp = should_show;
|
||||||
|
while (tmp != NULL)
|
||||||
|
{
|
||||||
|
MetaWindow *window;
|
||||||
|
|
||||||
|
window = tmp->data;
|
||||||
|
|
||||||
|
implement_showing (window, TRUE);
|
||||||
|
|
||||||
|
tmp = tmp->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmp = copy;
|
||||||
|
while (tmp != NULL)
|
||||||
|
{
|
||||||
|
MetaWindow *window;
|
||||||
|
|
||||||
|
window = tmp->data;
|
||||||
|
|
||||||
/* important to set this here for reentrancy -
|
/* important to set this here for reentrancy -
|
||||||
* if we queue a window again while it's in "copy",
|
* if we queue a window again while it's in "copy",
|
||||||
* then queue_calc_showing will just return since
|
* then queue_calc_showing will just return since
|
||||||
@ -1290,6 +1373,10 @@ idle_calc_showing (gpointer data)
|
|||||||
|
|
||||||
g_slist_free (copy);
|
g_slist_free (copy);
|
||||||
|
|
||||||
|
g_slist_free (unplaced);
|
||||||
|
g_slist_free (should_show);
|
||||||
|
g_slist_free (should_hide);
|
||||||
|
|
||||||
destroying_windows_disallowed -= 1;
|
destroying_windows_disallowed -= 1;
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user