2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
/* Mutter window groups */
|
2002-08-12 17:32:13 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Red Hat Inc.
|
2004-02-22 20:48:29 -05:00
|
|
|
* Copyright (C) 2003 Rob Adams
|
2002-08-12 17:32:13 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2002-10-26 23:03:32 -04:00
|
|
|
#include <config.h>
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/util.h>
|
2002-11-30 22:58:04 -05:00
|
|
|
#include "group-private.h"
|
|
|
|
#include "group-props.h"
|
2009-01-15 10:37:48 -05:00
|
|
|
#include "window-private.h"
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/window.h>
|
2002-08-12 17:32:13 -04:00
|
|
|
|
|
|
|
static MetaGroup*
|
|
|
|
meta_group_new (MetaDisplay *display,
|
|
|
|
Window group_leader)
|
|
|
|
{
|
|
|
|
MetaGroup *group;
|
2002-11-30 22:58:04 -05:00
|
|
|
#define N_INITIAL_PROPS 3
|
|
|
|
Atom initial_props[N_INITIAL_PROPS];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
g_assert (N_INITIAL_PROPS == (int) G_N_ELEMENTS (initial_props));
|
|
|
|
|
2002-08-12 17:32:13 -04:00
|
|
|
group = g_new0 (MetaGroup, 1);
|
|
|
|
|
|
|
|
group->display = display;
|
|
|
|
group->windows = NULL;
|
|
|
|
group->group_leader = group_leader;
|
|
|
|
group->refcount = 1; /* owned by caller, hash table has only weak ref */
|
|
|
|
|
|
|
|
if (display->groups_by_leader == NULL)
|
|
|
|
display->groups_by_leader = g_hash_table_new (meta_unsigned_long_hash,
|
|
|
|
meta_unsigned_long_equal);
|
|
|
|
|
|
|
|
g_assert (g_hash_table_lookup (display->groups_by_leader, &group_leader) == NULL);
|
|
|
|
|
|
|
|
g_hash_table_insert (display->groups_by_leader,
|
|
|
|
&group->group_leader,
|
|
|
|
group);
|
2002-11-30 22:58:04 -05:00
|
|
|
|
|
|
|
/* Fill these in the order we want them to be gotten */
|
|
|
|
i = 0;
|
2008-05-02 14:49:01 -04:00
|
|
|
initial_props[i++] = display->atom_WM_CLIENT_MACHINE;
|
|
|
|
initial_props[i++] = display->atom__NET_WM_PID;
|
|
|
|
initial_props[i++] = display->atom__NET_STARTUP_ID;
|
2002-11-30 22:58:04 -05:00
|
|
|
g_assert (N_INITIAL_PROPS == i);
|
|
|
|
|
|
|
|
meta_group_reload_properties (group, initial_props, N_INITIAL_PROPS);
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_GROUPS,
|
|
|
|
"Created new group with leader 0x%lx\n",
|
|
|
|
group->group_leader);
|
2002-08-12 17:32:13 -04:00
|
|
|
|
|
|
|
return group;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_group_unref (MetaGroup *group)
|
|
|
|
{
|
|
|
|
g_return_if_fail (group->refcount > 0);
|
|
|
|
|
|
|
|
group->refcount -= 1;
|
|
|
|
if (group->refcount == 0)
|
|
|
|
{
|
2002-11-30 22:58:04 -05:00
|
|
|
meta_topic (META_DEBUG_GROUPS,
|
|
|
|
"Destroying group with leader 0x%lx\n",
|
|
|
|
group->group_leader);
|
|
|
|
|
2002-08-12 17:32:13 -04:00
|
|
|
g_assert (group->display->groups_by_leader != NULL);
|
|
|
|
|
|
|
|
g_hash_table_remove (group->display->groups_by_leader,
|
|
|
|
&group->group_leader);
|
|
|
|
|
|
|
|
/* mop up hash table, this is how it gets freed on display close */
|
|
|
|
if (g_hash_table_size (group->display->groups_by_leader) == 0)
|
|
|
|
{
|
|
|
|
g_hash_table_destroy (group->display->groups_by_leader);
|
|
|
|
group->display->groups_by_leader = NULL;
|
|
|
|
}
|
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
g_free (group->wm_client_machine);
|
|
|
|
g_free (group->startup_id);
|
|
|
|
|
2002-08-12 17:32:13 -04:00
|
|
|
g_free (group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* meta_window_get_group: (skip)
|
|
|
|
*
|
|
|
|
*/
|
2002-08-12 17:32:13 -04:00
|
|
|
MetaGroup*
|
|
|
|
meta_window_get_group (MetaWindow *window)
|
|
|
|
{
|
2002-10-27 09:45:29 -05:00
|
|
|
if (window->unmanaging)
|
|
|
|
return NULL;
|
2003-06-04 15:15:46 -04:00
|
|
|
|
|
|
|
return window->group;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_compute_group (MetaWindow* window)
|
|
|
|
{
|
|
|
|
MetaGroup *group;
|
2006-03-30 14:22:38 -05:00
|
|
|
MetaWindow *ancestor;
|
2002-08-12 17:32:13 -04:00
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
/* use window->xwindow if no window->xgroup_leader */
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
group = NULL;
|
2002-08-12 17:32:13 -04:00
|
|
|
|
2006-03-30 14:22:38 -05:00
|
|
|
/* Determine the ancestor of the window; its group setting will override the
|
|
|
|
* normal grouping rules; see bug 328211.
|
|
|
|
*/
|
|
|
|
ancestor = meta_window_find_root_ancestor (window);
|
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
if (window->display->groups_by_leader)
|
|
|
|
{
|
2006-03-30 14:22:38 -05:00
|
|
|
if (ancestor != window)
|
|
|
|
group = ancestor->group;
|
2006-02-27 17:19:11 -05:00
|
|
|
else if (window->xgroup_leader != None)
|
2003-06-04 15:15:46 -04:00
|
|
|
group = g_hash_table_lookup (window->display->groups_by_leader,
|
|
|
|
&window->xgroup_leader);
|
|
|
|
else
|
|
|
|
group = g_hash_table_lookup (window->display->groups_by_leader,
|
|
|
|
&window->xwindow);
|
|
|
|
}
|
2002-08-12 17:32:13 -04:00
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
if (group != NULL)
|
|
|
|
{
|
|
|
|
window->group = group;
|
|
|
|
group->refcount += 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-30 14:22:38 -05:00
|
|
|
if (ancestor != window && ancestor->xgroup_leader != None)
|
2006-02-27 17:19:11 -05:00
|
|
|
group = meta_group_new (window->display,
|
2006-03-30 14:22:38 -05:00
|
|
|
ancestor->xgroup_leader);
|
2006-02-27 17:19:11 -05:00
|
|
|
else if (window->xgroup_leader != None)
|
2003-06-04 15:15:46 -04:00
|
|
|
group = meta_group_new (window->display,
|
|
|
|
window->xgroup_leader);
|
2002-08-12 17:32:13 -04:00
|
|
|
else
|
2003-06-04 15:15:46 -04:00
|
|
|
group = meta_group_new (window->display,
|
|
|
|
window->xwindow);
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
window->group = group;
|
|
|
|
}
|
2002-08-12 17:32:13 -04:00
|
|
|
|
2006-03-30 14:22:38 -05:00
|
|
|
window->group->windows = g_slist_prepend (window->group->windows, window);
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
meta_topic (META_DEBUG_GROUPS,
|
|
|
|
"Adding %s to group with leader 0x%lx\n",
|
|
|
|
window->desc, group->group_leader);
|
2002-08-12 17:32:13 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
static void
|
|
|
|
remove_window_from_group (MetaWindow *window)
|
2002-08-12 17:32:13 -04:00
|
|
|
{
|
2003-06-04 15:15:46 -04:00
|
|
|
if (window->group != NULL)
|
2002-08-12 17:32:13 -04:00
|
|
|
{
|
2002-11-30 22:58:04 -05:00
|
|
|
meta_topic (META_DEBUG_GROUPS,
|
|
|
|
"Removing %s from group with leader 0x%lx\n",
|
2003-06-04 15:15:46 -04:00
|
|
|
window->desc, window->group->group_leader);
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2003-06-04 15:15:46 -04:00
|
|
|
window->group->windows =
|
|
|
|
g_slist_remove (window->group->windows,
|
2002-08-12 17:32:13 -04:00
|
|
|
window);
|
2003-06-04 15:15:46 -04:00
|
|
|
meta_group_unref (window->group);
|
|
|
|
window->group = NULL;
|
2002-08-12 17:32:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
void
|
|
|
|
meta_window_group_leader_changed (MetaWindow *window)
|
|
|
|
{
|
|
|
|
remove_window_from_group (window);
|
2003-06-04 15:15:46 -04:00
|
|
|
meta_window_compute_group (window);
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_shutdown_group (MetaWindow *window)
|
|
|
|
{
|
|
|
|
remove_window_from_group (window);
|
|
|
|
}
|
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* meta_display_lookup_group: (skip)
|
|
|
|
*
|
|
|
|
*/
|
2002-08-12 17:32:13 -04:00
|
|
|
MetaGroup*
|
|
|
|
meta_display_lookup_group (MetaDisplay *display,
|
|
|
|
Window group_leader)
|
|
|
|
{
|
|
|
|
MetaGroup *group;
|
|
|
|
|
|
|
|
group = NULL;
|
|
|
|
|
|
|
|
if (display->groups_by_leader)
|
|
|
|
group = g_hash_table_lookup (display->groups_by_leader,
|
|
|
|
&group_leader);
|
|
|
|
|
|
|
|
return group;
|
|
|
|
}
|
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* meta_group_list_windows:
|
|
|
|
* @group: A #MetaGroup
|
|
|
|
*
|
|
|
|
* Returns: (transfer container) (element-type Meta.Window): List of windows
|
|
|
|
*/
|
2002-08-12 17:32:13 -04:00
|
|
|
GSList*
|
|
|
|
meta_group_list_windows (MetaGroup *group)
|
|
|
|
{
|
|
|
|
return g_slist_copy (group->windows);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_group_update_layers (MetaGroup *group)
|
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
GSList *frozen_stacks;
|
|
|
|
|
|
|
|
if (group->windows == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
frozen_stacks = NULL;
|
|
|
|
tmp = group->windows;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
MetaWindow *window = tmp->data;
|
|
|
|
|
|
|
|
/* we end up freezing the same stack a lot of times,
|
|
|
|
* but doesn't hurt anything. have to handle
|
|
|
|
* groups that span 2 screens.
|
|
|
|
*/
|
|
|
|
meta_stack_freeze (window->screen->stack);
|
|
|
|
frozen_stacks = g_slist_prepend (frozen_stacks, window->screen->stack);
|
|
|
|
|
|
|
|
meta_stack_update_layer (window->screen->stack,
|
|
|
|
window);
|
|
|
|
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = frozen_stacks;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
meta_stack_thaw (tmp->data);
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (frozen_stacks);
|
|
|
|
}
|
2002-11-30 22:58:04 -05:00
|
|
|
|
|
|
|
const char*
|
|
|
|
meta_group_get_startup_id (MetaGroup *group)
|
|
|
|
{
|
|
|
|
return group->startup_id;
|
|
|
|
}
|
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* meta_group_property_notify: (skip)
|
|
|
|
*
|
|
|
|
*/
|
2002-11-30 22:58:04 -05:00
|
|
|
gboolean
|
|
|
|
meta_group_property_notify (MetaGroup *group,
|
|
|
|
XEvent *event)
|
|
|
|
{
|
|
|
|
meta_group_reload_property (group,
|
|
|
|
event->xproperty.atom);
|
|
|
|
|
|
|
|
return TRUE;
|
2003-06-04 15:15:46 -04:00
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
2009-01-15 10:21:43 -05:00
|
|
|
|
|
|
|
int
|
|
|
|
meta_group_get_size (MetaGroup *group)
|
|
|
|
{
|
|
|
|
if (!group)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return group->refcount;
|
|
|
|
}
|
|
|
|
|