2006-10-01 22:30:10 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2008-06-13 23:10:32 +00:00
|
|
|
/**
|
|
|
|
* \file window-props.c MetaWindow property handling
|
|
|
|
*
|
|
|
|
* A system which can inspect sets of properties of given windows
|
|
|
|
* and take appropriate action given their values.
|
|
|
|
*
|
|
|
|
* Note that all the meta_window_reload_propert* functions require a
|
|
|
|
* round trip to the server.
|
|
|
|
*
|
2009-01-29 14:32:31 +00:00
|
|
|
* The guts of this system are in meta_display_init_window_prop_hooks().
|
|
|
|
* Reading this function will give you insight into how this all fits
|
|
|
|
* together.
|
2008-06-13 23:10:32 +00:00
|
|
|
*/
|
2002-11-03 23:42:21 +00:00
|
|
|
|
|
|
|
/*
|
2003-02-28 01:24:44 +00:00
|
|
|
* Copyright (C) 2001, 2002, 2003 Red Hat, Inc.
|
2005-10-08 19:38:54 +00:00
|
|
|
* Copyright (C) 2004, 2005 Elijah Newren
|
2009-01-29 14:32:31 +00:00
|
|
|
* Copyright (C) 2009 Thomas Thurman
|
2002-11-03 23:42:21 +00: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.
|
|
|
|
*/
|
|
|
|
|
2008-02-27 04:39:10 +00:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#define _SVID_SOURCE /* for gethostname() */
|
|
|
|
|
2002-11-03 23:42:21 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include "window-props.h"
|
2011-03-06 00:29:12 +00:00
|
|
|
#include <meta/errors.h>
|
2002-11-03 23:42:21 +00:00
|
|
|
#include "xprops.h"
|
2011-03-06 00:29:12 +00:00
|
|
|
#include "frame.h"
|
|
|
|
#include <meta/group.h>
|
2002-11-03 23:42:21 +00:00
|
|
|
#include <X11/Xatom.h>
|
2005-11-23 17:08:03 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
2006-01-16 17:37:53 +00:00
|
|
|
#ifndef HOST_NAME_MAX
|
|
|
|
/* Solaris headers apparently don't define this so do so manually; #326745 */
|
|
|
|
#define HOST_NAME_MAX 255
|
|
|
|
#endif
|
2002-11-03 23:42:21 +00:00
|
|
|
|
|
|
|
typedef void (* ReloadValueFunc) (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial);
|
2002-11-03 23:42:21 +00:00
|
|
|
|
2009-06-14 12:37:57 +00:00
|
|
|
struct _MetaWindowPropHooks
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
|
|
|
Atom property;
|
2009-01-29 14:32:31 +00:00
|
|
|
MetaPropValueType type;
|
2002-11-03 23:42:21 +00:00
|
|
|
ReloadValueFunc reload_func;
|
2009-06-14 12:37:57 +00:00
|
|
|
gboolean load_initially;
|
|
|
|
gboolean include_override_redirect;
|
|
|
|
};
|
2002-11-03 23:42:21 +00:00
|
|
|
|
2009-06-14 12:37:57 +00:00
|
|
|
static void init_prop_value (MetaWindow *window,
|
2009-06-15 17:24:43 +00:00
|
|
|
MetaWindowPropHooks *hooks,
|
|
|
|
MetaPropValue *value);
|
|
|
|
static void reload_prop_value (MetaWindow *window,
|
|
|
|
MetaWindowPropHooks *hooks,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial);
|
2002-11-03 23:42:21 +00:00
|
|
|
static MetaWindowPropHooks* find_hooks (MetaDisplay *display,
|
|
|
|
Atom property);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_reload_property (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
Atom property,
|
|
|
|
gboolean initial)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
2009-01-27 03:53:07 +00:00
|
|
|
meta_window_reload_properties (window, &property, 1, initial);
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_reload_properties (MetaWindow *window,
|
|
|
|
const Atom *properties,
|
2009-01-27 03:53:07 +00:00
|
|
|
int n_properties,
|
|
|
|
gboolean initial)
|
2007-03-31 05:19:41 +00:00
|
|
|
{
|
|
|
|
meta_window_reload_properties_from_xwindow (window,
|
|
|
|
window->xwindow,
|
|
|
|
properties,
|
2009-01-27 03:53:07 +00:00
|
|
|
n_properties,
|
|
|
|
initial);
|
2007-03-31 05:19:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_reload_property_from_xwindow (MetaWindow *window,
|
|
|
|
Window xwindow,
|
2009-01-27 03:53:07 +00:00
|
|
|
Atom property,
|
|
|
|
gboolean initial)
|
2007-03-31 05:19:41 +00:00
|
|
|
{
|
2009-01-27 03:53:07 +00:00
|
|
|
meta_window_reload_properties_from_xwindow (window, xwindow, &property, 1,
|
|
|
|
initial);
|
2007-03-31 05:19:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_reload_properties_from_xwindow (MetaWindow *window,
|
|
|
|
Window xwindow,
|
|
|
|
const Atom *properties,
|
2009-01-27 03:53:07 +00:00
|
|
|
int n_properties,
|
|
|
|
gboolean initial)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
MetaPropValue *values;
|
|
|
|
|
|
|
|
g_return_if_fail (properties != NULL);
|
|
|
|
g_return_if_fail (n_properties > 0);
|
|
|
|
|
|
|
|
values = g_new0 (MetaPropValue, n_properties);
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < n_properties)
|
|
|
|
{
|
2009-06-15 17:24:43 +00:00
|
|
|
MetaWindowPropHooks *hooks = find_hooks (window->display, properties[i]);
|
2009-06-14 12:37:57 +00:00
|
|
|
init_prop_value (window, hooks, &values[i]);
|
2002-11-03 23:42:21 +00:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
2007-03-31 05:19:41 +00:00
|
|
|
meta_prop_get_values (window->display, xwindow,
|
2002-11-03 23:42:21 +00:00
|
|
|
values, n_properties);
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < n_properties)
|
|
|
|
{
|
2009-06-15 17:24:43 +00:00
|
|
|
MetaWindowPropHooks *hooks = find_hooks (window->display, properties[i]);
|
|
|
|
reload_prop_value (window, hooks, &values[i], initial);
|
2002-11-03 23:42:21 +00:00
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_prop_free_values (values, n_properties);
|
|
|
|
|
|
|
|
g_free (values);
|
|
|
|
}
|
|
|
|
|
2009-06-14 12:37:57 +00:00
|
|
|
void
|
|
|
|
meta_window_load_initial_properties (MetaWindow *window)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
MetaPropValue *values;
|
|
|
|
int n_properties = 0;
|
|
|
|
|
|
|
|
values = g_new0 (MetaPropValue, window->display->n_prop_hooks);
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
for (i = 0; i < window->display->n_prop_hooks; i++)
|
|
|
|
{
|
|
|
|
MetaWindowPropHooks *hooks = &window->display->prop_hooks_table[i];
|
|
|
|
if (hooks->load_initially)
|
|
|
|
{
|
|
|
|
init_prop_value (window, hooks, &values[j]);
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n_properties = j;
|
|
|
|
|
|
|
|
meta_prop_get_values (window->display, window->xwindow,
|
|
|
|
values, n_properties);
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
for (i = 0; i < window->display->n_prop_hooks; i++)
|
|
|
|
{
|
|
|
|
MetaWindowPropHooks *hooks = &window->display->prop_hooks_table[i];
|
|
|
|
if (hooks->load_initially)
|
|
|
|
{
|
|
|
|
/* If we didn't actually manage to load anything then we don't need
|
|
|
|
* to call the reload function; this is different from a notification
|
|
|
|
* where disappearance of a previously present value is significant.
|
|
|
|
*/
|
|
|
|
if (values[j].type != META_PROP_VALUE_INVALID)
|
|
|
|
reload_prop_value (window, hooks, &values[j], TRUE);
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_prop_free_values (values, n_properties);
|
|
|
|
|
|
|
|
g_free (values);
|
|
|
|
}
|
|
|
|
|
2002-11-03 23:42:21 +00:00
|
|
|
/* Fill in the MetaPropValue used to get the value of "property" */
|
|
|
|
static void
|
2009-06-14 12:37:57 +00:00
|
|
|
init_prop_value (MetaWindow *window,
|
2009-06-15 17:24:43 +00:00
|
|
|
MetaWindowPropHooks *hooks,
|
|
|
|
MetaPropValue *value)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
2009-06-14 12:37:57 +00:00
|
|
|
if (!hooks || hooks->type == META_PROP_VALUE_INVALID ||
|
|
|
|
(window->override_redirect && !hooks->include_override_redirect))
|
2009-01-29 14:32:31 +00:00
|
|
|
{
|
2009-06-15 17:24:43 +00:00
|
|
|
value->type = META_PROP_VALUE_INVALID;
|
|
|
|
value->atom = None;
|
2009-01-29 14:32:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
value->type = hooks->type;
|
2009-06-15 17:24:43 +00:00
|
|
|
value->atom = hooks->property;
|
2009-01-29 14:32:31 +00:00
|
|
|
}
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-06-15 17:24:43 +00:00
|
|
|
reload_prop_value (MetaWindow *window,
|
|
|
|
MetaWindowPropHooks *hooks,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
2009-06-14 12:37:57 +00:00
|
|
|
if (hooks && hooks->reload_func != NULL &&
|
|
|
|
!(window->override_redirect && !hooks->include_override_redirect))
|
2009-01-27 03:53:07 +00:00
|
|
|
(* hooks->reload_func) (window, value, initial);
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_client_machine (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
|
|
|
g_free (window->wm_client_machine);
|
|
|
|
window->wm_client_machine = NULL;
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
window->wm_client_machine = g_strdup (value->v.str);
|
|
|
|
|
|
|
|
meta_verbose ("Window has client machine \"%s\"\n",
|
|
|
|
window->wm_client_machine ? window->wm_client_machine : "unset");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-01-27 05:03:06 +00:00
|
|
|
complain_about_broken_client (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
meta_warning ("Broken client! Window %s changed client leader window or SM client ID\n",
|
|
|
|
window->desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_net_wm_window_type (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
meta_window_update_net_wm_type (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_icon (MetaWindow *window,
|
|
|
|
Atom atom)
|
|
|
|
{
|
|
|
|
meta_icon_cache_property_changed (&window->icon_cache,
|
|
|
|
window->display,
|
|
|
|
atom);
|
|
|
|
meta_window_queue(window, META_QUEUE_UPDATE_ICON);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_net_wm_icon (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
reload_icon (window, window->display->atom__NET_WM_ICON);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_kwm_win_icon (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
reload_icon (window, window->display->atom__KWM_WIN_ICON);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_struts (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
meta_window_update_struts (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_window_role (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
2009-01-27 05:03:06 +00:00
|
|
|
meta_window_update_role (window);
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_net_wm_pid (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-03 23:42:21 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
gulong cardinal = (int) value->v.cardinal;
|
|
|
|
|
|
|
|
if (cardinal <= 0)
|
2006-01-20 22:03:56 +00:00
|
|
|
meta_warning (_("Application set a bogus _NET_WM_PID %lu\n"),
|
2002-11-03 23:42:21 +00:00
|
|
|
cardinal);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->net_wm_pid = cardinal;
|
|
|
|
meta_verbose ("Window has _NET_WM_PID %d\n",
|
|
|
|
window->net_wm_pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 15:47:05 +00:00
|
|
|
static void
|
|
|
|
reload_net_wm_user_time (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 15:47:05 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
gulong cardinal = value->v.cardinal;
|
Big patch to cover about 6 different issues in order to correct rare
2005-02-20 Elijah Newren <newren@gmail.com>
Big patch to cover about 6 different issues in order to correct
rare problems with timestamps (make sure window selected in
tasklist actually gets focus, sanity check timestamps to avoid
rogue apps hosing the system, correct the updating of
net_wm_user_time, correctly handle timestamps of 0 when comparing
xserver timestamps for those who have had their systems up for
over 25 days or so, add some debugging information to verbose
logs, some code cleanups). Fixes all issues listed in #167358.
* src/display.h: (struct _MetaDisplay): clarify comment on
last_focus_time, introduce a new variable--last_user_time,
(XSERVER_TIME_IS_BEFORE macro): put this functionality into a
separate macro and then introduce a new macro with this name that
uses the old one but adds additional special-case checks for
timestamps that are 0, (comment to
meta_display_set_input_focus_window): add information about how
last_user_time should be used in this function
* src/display.c (santiy_check_timestamps): new function,
(meta_display_open): intialize display->last_user_time,
(meta_display_get_current_time_roundtrip): use the timestamp,
which is known to be good, in order to sanity_check_timestamps,
(event_callback): use the new meta_window_ste_user_time() function
in order to correct problems, use the timestamp of KeyPress and
ButtonPress events, which are known to be good, in order to
sanity_check_timestamps, (timestamp_too_old): new function for
common behavior of meta_display_focus_the_no_focus_window and
meta_display_set_input_focus_window, with added checking for
display->last_user_time in addition to display->last_focus_time,
(meta_display_set_input_focus_window): replace some of the code
with a call to timestamp_too_old(),
(meta_display_focus_the_no_focus_window): replace some of th ecode
with a call to timestamp_too_old()
* src/window.h: (meta_window_set_user_time): new function to
abstract the many things that need to be done when updating the
net_wm_user_time of any window
* src/window.c: (meta_window_activate): add debugging spew, make
sure the comparison is made with last_user_time NOT
last_focus_time, use meta_window_set_user_time() function in order
to correct problems, (meta_window_client_message): add a newline
to a debugging message to make them easier to read,
(meta_window_set_user_time): new function
* src/window-props.c (reload_net_wm_user_time): use the new
meta_window_ste_user_time() function in order to correct problems
2005-02-20 17:14:16 +00:00
|
|
|
meta_window_set_user_time (window, cardinal);
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 15:47:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-31 05:19:41 +00:00
|
|
|
static void
|
|
|
|
reload_net_wm_user_time_window (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2007-03-31 05:19:41 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
/* Unregister old NET_WM_USER_TIME_WINDOW */
|
|
|
|
if (window->user_time_window != None)
|
|
|
|
{
|
|
|
|
/* See the comment to the meta_display_register_x_window call below. */
|
|
|
|
meta_display_unregister_x_window (window->display,
|
|
|
|
window->user_time_window);
|
|
|
|
/* Don't get events on not-managed windows */
|
|
|
|
XSelectInput (window->display->xdisplay,
|
|
|
|
window->user_time_window,
|
|
|
|
NoEventMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Obtain the new NET_WM_USER_TIME_WINDOW and register it */
|
|
|
|
window->user_time_window = value->v.xwindow;
|
|
|
|
if (window->user_time_window != None)
|
|
|
|
{
|
|
|
|
/* Kind of a hack; display.c:event_callback() ignores events
|
|
|
|
* for unknown windows. We make window->user_time_window
|
|
|
|
* known by registering it with window (despite the fact
|
|
|
|
* that window->xwindow is already registered with window).
|
|
|
|
* This basically means that property notifies to either the
|
|
|
|
* window->user_time_window or window->xwindow will be
|
|
|
|
* treated identically and will result in functions for
|
|
|
|
* window being called to update it. Maybe we should ignore
|
|
|
|
* any property notifies to window->user_time_window other
|
2008-05-02 18:49:01 +00:00
|
|
|
* than atom__NET_WM_USER_TIME ones, but I just don't care
|
2007-03-31 05:19:41 +00:00
|
|
|
* and it's not specified in the spec anyway.
|
|
|
|
*/
|
|
|
|
meta_display_register_x_window (window->display,
|
|
|
|
&window->user_time_window,
|
|
|
|
window);
|
|
|
|
/* Just listen for property notify events */
|
|
|
|
XSelectInput (window->display->xdisplay,
|
|
|
|
window->user_time_window,
|
|
|
|
PropertyChangeMask);
|
|
|
|
|
|
|
|
/* Manually load the _NET_WM_USER_TIME field from the given window
|
|
|
|
* at this time as well. If the user_time_window ever broadens in
|
|
|
|
* scope, we'll probably want to load all relevant properties here.
|
|
|
|
*/
|
|
|
|
meta_window_reload_property_from_xwindow (
|
|
|
|
window,
|
2007-11-09 18:57:29 +00:00
|
|
|
window->user_time_window,
|
2009-01-27 03:53:07 +00:00
|
|
|
window->display->atom__NET_WM_USER_TIME,
|
|
|
|
initial);
|
2007-03-31 05:19:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-03 18:13:45 +00:00
|
|
|
#define MAX_TITLE_LENGTH 512
|
|
|
|
|
2005-11-23 17:08:03 +00:00
|
|
|
/**
|
|
|
|
* Called by set_window_title and set_icon_title to set the value of
|
|
|
|
* *target to title. It required and atom is set, it will update the
|
|
|
|
* appropriate property.
|
|
|
|
*
|
|
|
|
* Returns TRUE if a new title was set.
|
|
|
|
*/
|
|
|
|
static gboolean
|
2006-05-05 01:10:20 +00:00
|
|
|
set_title_text (MetaWindow *window,
|
|
|
|
gboolean previous_was_modified,
|
|
|
|
const char *title,
|
|
|
|
Atom atom,
|
|
|
|
char **target)
|
2002-11-04 00:19:08 +00:00
|
|
|
{
|
2005-11-23 17:08:03 +00:00
|
|
|
char hostname[HOST_NAME_MAX + 1];
|
|
|
|
gboolean modified = FALSE;
|
2002-11-04 00:19:08 +00:00
|
|
|
|
2005-11-23 17:08:03 +00:00
|
|
|
if (!target)
|
|
|
|
return FALSE;
|
2002-11-04 00:19:08 +00:00
|
|
|
|
2005-11-23 17:08:03 +00:00
|
|
|
g_free (*target);
|
|
|
|
|
|
|
|
if (!title)
|
|
|
|
*target = g_strdup ("");
|
|
|
|
else if (g_utf8_strlen (title, MAX_TITLE_LENGTH + 1) > MAX_TITLE_LENGTH)
|
2005-10-03 18:13:45 +00:00
|
|
|
{
|
2005-11-23 17:08:03 +00:00
|
|
|
*target = meta_g_utf8_strndup (title, MAX_TITLE_LENGTH);
|
|
|
|
modified = TRUE;
|
|
|
|
}
|
|
|
|
/* if WM_CLIENT_MACHINE indicates this machine is on a remote host
|
|
|
|
* lets place that hostname in the title */
|
|
|
|
else if (window->wm_client_machine &&
|
|
|
|
!gethostname (hostname, HOST_NAME_MAX + 1) &&
|
|
|
|
strcmp (hostname, window->wm_client_machine))
|
|
|
|
{
|
2006-03-12 21:04:56 +00:00
|
|
|
*target = g_strdup_printf (_("%s (on %s)"),
|
2005-11-23 17:08:03 +00:00
|
|
|
title, window->wm_client_machine);
|
|
|
|
modified = TRUE;
|
2005-10-03 18:13:45 +00:00
|
|
|
}
|
2005-11-23 17:08:03 +00:00
|
|
|
else
|
|
|
|
*target = g_strdup (title);
|
|
|
|
|
|
|
|
if (modified && atom != None)
|
|
|
|
meta_prop_set_utf8_string_hint (window->display,
|
2006-05-05 01:10:20 +00:00
|
|
|
window->xwindow,
|
|
|
|
atom, *target);
|
|
|
|
|
|
|
|
/* Bug 330671 -- Don't forget to clear _NET_WM_VISIBLE_(ICON_)NAME */
|
|
|
|
if (!modified && previous_was_modified)
|
2006-10-01 21:36:10 +00:00
|
|
|
{
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
XDeleteProperty (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
atom);
|
2010-10-25 18:44:30 +00:00
|
|
|
meta_error_trap_pop (window->display);
|
2006-10-01 21:36:10 +00:00
|
|
|
}
|
2005-11-23 17:08:03 +00:00
|
|
|
|
|
|
|
return modified;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_window_title (MetaWindow *window,
|
|
|
|
const char *title)
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
2006-05-05 01:10:20 +00:00
|
|
|
gboolean modified =
|
|
|
|
set_title_text (window,
|
|
|
|
window->using_net_wm_visible_name,
|
|
|
|
title,
|
2008-05-02 18:49:01 +00:00
|
|
|
window->display->atom__NET_WM_VISIBLE_NAME,
|
2006-05-05 01:10:20 +00:00
|
|
|
&window->title);
|
|
|
|
window->using_net_wm_visible_name = modified;
|
2002-11-04 00:19:08 +00:00
|
|
|
|
|
|
|
/* strndup is a hack since GNU libc has broken %.10s */
|
|
|
|
str = g_strndup (window->title, 10);
|
|
|
|
g_free (window->desc);
|
|
|
|
window->desc = g_strdup_printf ("0x%lx (%s)", window->xwindow, str);
|
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
if (window->frame)
|
|
|
|
meta_ui_set_frame_title (window->screen->ui,
|
|
|
|
window->frame->xwindow,
|
|
|
|
window->title);
|
2009-08-21 16:38:30 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (window), "title");
|
2002-11-04 00:19:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_net_wm_name (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-04 00:19:08 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
set_window_title (window, value->v.str);
|
|
|
|
window->using_net_wm_name = TRUE;
|
|
|
|
|
|
|
|
meta_verbose ("Using _NET_WM_NAME for new title of %s: \"%s\"\n",
|
|
|
|
window->desc, window->title);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_window_title (window, NULL);
|
|
|
|
window->using_net_wm_name = FALSE;
|
2009-01-27 03:53:07 +00:00
|
|
|
if (!initial)
|
|
|
|
meta_window_reload_property (window, XA_WM_NAME, FALSE);
|
2002-11-04 00:19:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_name (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-04 00:19:08 +00:00
|
|
|
{
|
|
|
|
if (window->using_net_wm_name)
|
|
|
|
{
|
|
|
|
meta_verbose ("Ignoring WM_NAME \"%s\" as _NET_WM_NAME is set\n",
|
|
|
|
value->v.str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
set_window_title (window, value->v.str);
|
|
|
|
|
|
|
|
meta_verbose ("Using WM_NAME for new title of %s: \"%s\"\n",
|
|
|
|
window->desc, window->title);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_window_title (window, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-18 10:12:17 +00:00
|
|
|
static void
|
|
|
|
reload_mutter_hints (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
char *new_hints = value->v.str;
|
|
|
|
char *old_hints = window->mutter_hints;
|
|
|
|
gboolean changed = FALSE;
|
|
|
|
|
|
|
|
if (new_hints)
|
|
|
|
{
|
|
|
|
if (!old_hints || strcmp (new_hints, old_hints))
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (old_hints)
|
|
|
|
changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (changed)
|
|
|
|
{
|
|
|
|
g_free (old_hints);
|
|
|
|
|
|
|
|
if (new_hints)
|
|
|
|
window->mutter_hints = g_strdup (new_hints);
|
|
|
|
else
|
|
|
|
window->mutter_hints = NULL;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (window), "mutter-hints");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (window->mutter_hints)
|
|
|
|
{
|
|
|
|
g_free (window->mutter_hints);
|
|
|
|
window->mutter_hints = NULL;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (window), "mutter-hints");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-04 00:19:08 +00:00
|
|
|
static void
|
|
|
|
set_icon_title (MetaWindow *window,
|
|
|
|
const char *title)
|
|
|
|
{
|
2006-05-05 01:10:20 +00:00
|
|
|
gboolean modified =
|
|
|
|
set_title_text (window,
|
|
|
|
window->using_net_wm_visible_icon_name,
|
|
|
|
title,
|
2008-05-02 18:49:01 +00:00
|
|
|
window->display->atom__NET_WM_VISIBLE_ICON_NAME,
|
2006-05-05 01:10:20 +00:00
|
|
|
&window->icon_name);
|
|
|
|
window->using_net_wm_visible_icon_name = modified;
|
2002-11-04 00:19:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_net_wm_icon_name (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-04 00:19:08 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
set_icon_title (window, value->v.str);
|
|
|
|
window->using_net_wm_icon_name = TRUE;
|
|
|
|
|
|
|
|
meta_verbose ("Using _NET_WM_ICON_NAME for new title of %s: \"%s\"\n",
|
|
|
|
window->desc, window->title);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_icon_title (window, NULL);
|
|
|
|
window->using_net_wm_icon_name = FALSE;
|
2009-01-27 03:53:07 +00:00
|
|
|
if (!initial)
|
|
|
|
meta_window_reload_property (window, XA_WM_ICON_NAME, FALSE);
|
2002-11-04 00:19:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_icon_name (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-04 00:19:08 +00:00
|
|
|
{
|
|
|
|
if (window->using_net_wm_icon_name)
|
|
|
|
{
|
|
|
|
meta_verbose ("Ignoring WM_ICON_NAME \"%s\" as _NET_WM_ICON_NAME is set\n",
|
|
|
|
value->v.str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
set_icon_title (window, value->v.str);
|
|
|
|
|
|
|
|
meta_verbose ("Using WM_ICON_NAME for new title of %s: \"%s\"\n",
|
|
|
|
window->desc, window->title);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_icon_title (window, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
static void
|
|
|
|
reload_net_wm_state (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* We know this is only an initial window creation,
|
|
|
|
* clients don't change the property.
|
|
|
|
*/
|
|
|
|
|
2009-01-27 05:03:06 +00:00
|
|
|
if (!initial) {
|
|
|
|
/* no, they DON'T change the property */
|
|
|
|
meta_verbose ("Ignoring _NET_WM_STATE: we should be the one who set "
|
|
|
|
"the property in the first place\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->shaded = FALSE;
|
|
|
|
window->maximized_horizontally = FALSE;
|
|
|
|
window->maximized_vertically = FALSE;
|
2010-01-20 15:59:07 +00:00
|
|
|
window->fullscreen = FALSE;
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_modal = FALSE;
|
|
|
|
window->wm_state_skip_taskbar = FALSE;
|
|
|
|
window->wm_state_skip_pager = FALSE;
|
|
|
|
window->wm_state_above = FALSE;
|
|
|
|
window->wm_state_below = FALSE;
|
|
|
|
window->wm_state_demands_attention = FALSE;
|
|
|
|
|
|
|
|
if (value->type == META_PROP_VALUE_INVALID)
|
|
|
|
return;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < value->v.atom_list.n_atoms)
|
|
|
|
{
|
2008-05-02 18:49:01 +00:00
|
|
|
if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_SHADED)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->shaded = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_MAXIMIZED_HORZ)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->maximize_horizontally_after_placement = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_MAXIMIZED_VERT)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->maximize_vertically_after_placement = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_HIDDEN)
|
2006-10-01 21:59:09 +00:00
|
|
|
window->minimize_after_placement = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_MODAL)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_modal = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_SKIP_TASKBAR)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_skip_taskbar = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_SKIP_PAGER)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_skip_pager = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_FULLSCREEN)
|
2010-01-20 15:59:07 +00:00
|
|
|
window->fullscreen_after_placement = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_ABOVE)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_above = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_BELOW)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_below = TRUE;
|
2008-05-02 18:49:01 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_DEMANDS_ATTENTION)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->wm_state_demands_attention = TRUE;
|
2008-10-23 04:09:14 +00:00
|
|
|
else if (value->v.atom_list.atoms[i] == window->display->atom__NET_WM_STATE_STICKY)
|
2011-02-28 10:41:23 +00:00
|
|
|
window->on_all_workspaces_requested = TRUE;
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_verbose ("Reloaded _NET_WM_STATE for %s\n",
|
|
|
|
window->desc);
|
|
|
|
|
|
|
|
meta_window_recalc_window_type (window);
|
Fix initial setting of _NET_WM_STATE on new windows
When reload_net_wm_state() is called at startup to read the initial
value of _NET_WM_STATE, it was calling recalc_window_type(), but not
recalc_features(), which meant that, eg, meta->skip_taskbar would
never get initialized from meta->wm_state_skip_taskbar, which meant
that next time mutter went to update the window's _NET_WM_STATE, it
would overwrite the app-specified initial values. Fix that.
(In metacity, this bug is masked by the fact that recalc_features()
gets called when reading the intial value of WM_NORMAL_HINTS, which
comes after _NET_WM_STATE in metacity's prop_hooks_table. In mutter,
the table got reordered at some point, exposing the bug.)
https://bugzilla.gnome.org/show_bug.cgi?id=624360
2011-03-09 13:43:14 +00:00
|
|
|
meta_window_recalc_features (window);
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_mwm_hints (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
{
|
|
|
|
MotifWmHints *hints;
|
2009-02-11 12:16:41 +00:00
|
|
|
gboolean old_decorated = window->decorated;
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
|
|
|
|
window->mwm_decorated = TRUE;
|
|
|
|
window->mwm_border_only = FALSE;
|
|
|
|
window->mwm_has_close_func = TRUE;
|
|
|
|
window->mwm_has_minimize_func = TRUE;
|
|
|
|
window->mwm_has_maximize_func = TRUE;
|
|
|
|
window->mwm_has_move_func = TRUE;
|
|
|
|
window->mwm_has_resize_func = TRUE;
|
|
|
|
|
|
|
|
if (value->type == META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s has no MWM hints\n", window->desc);
|
|
|
|
meta_window_recalc_features (window);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hints = value->v.motif_hints;
|
|
|
|
|
|
|
|
/* We support those MWM hints deemed non-stupid */
|
|
|
|
|
|
|
|
meta_verbose ("Window %s has MWM hints\n",
|
|
|
|
window->desc);
|
|
|
|
|
|
|
|
if (hints->flags & MWM_HINTS_DECORATIONS)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s sets MWM_HINTS_DECORATIONS 0x%lx\n",
|
|
|
|
window->desc, hints->decorations);
|
|
|
|
|
|
|
|
if (hints->decorations == 0)
|
|
|
|
window->mwm_decorated = FALSE;
|
|
|
|
/* some input methods use this */
|
|
|
|
else if (hints->decorations == MWM_DECOR_BORDER)
|
|
|
|
window->mwm_border_only = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
meta_verbose ("Decorations flag unset\n");
|
|
|
|
|
|
|
|
if (hints->flags & MWM_HINTS_FUNCTIONS)
|
|
|
|
{
|
|
|
|
gboolean toggle_value;
|
|
|
|
|
|
|
|
meta_verbose ("Window %s sets MWM_HINTS_FUNCTIONS 0x%lx\n",
|
|
|
|
window->desc, hints->functions);
|
|
|
|
|
|
|
|
/* If _ALL is specified, then other flags indicate what to turn off;
|
|
|
|
* if ALL is not specified, flags are what to turn on.
|
|
|
|
* at least, I think so
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((hints->functions & MWM_FUNC_ALL) == 0)
|
|
|
|
{
|
|
|
|
toggle_value = TRUE;
|
|
|
|
|
|
|
|
meta_verbose ("Window %s disables all funcs then reenables some\n",
|
|
|
|
window->desc);
|
|
|
|
window->mwm_has_close_func = FALSE;
|
|
|
|
window->mwm_has_minimize_func = FALSE;
|
|
|
|
window->mwm_has_maximize_func = FALSE;
|
|
|
|
window->mwm_has_move_func = FALSE;
|
|
|
|
window->mwm_has_resize_func = FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s enables all funcs then disables some\n",
|
|
|
|
window->desc);
|
|
|
|
toggle_value = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((hints->functions & MWM_FUNC_CLOSE) != 0)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s toggles close via MWM hints\n",
|
|
|
|
window->desc);
|
|
|
|
window->mwm_has_close_func = toggle_value;
|
|
|
|
}
|
|
|
|
if ((hints->functions & MWM_FUNC_MINIMIZE) != 0)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s toggles minimize via MWM hints\n",
|
|
|
|
window->desc);
|
|
|
|
window->mwm_has_minimize_func = toggle_value;
|
|
|
|
}
|
|
|
|
if ((hints->functions & MWM_FUNC_MAXIMIZE) != 0)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s toggles maximize via MWM hints\n",
|
|
|
|
window->desc);
|
|
|
|
window->mwm_has_maximize_func = toggle_value;
|
|
|
|
}
|
|
|
|
if ((hints->functions & MWM_FUNC_MOVE) != 0)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s toggles move via MWM hints\n",
|
|
|
|
window->desc);
|
|
|
|
window->mwm_has_move_func = toggle_value;
|
|
|
|
}
|
|
|
|
if ((hints->functions & MWM_FUNC_RESIZE) != 0)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s toggles resize via MWM hints\n",
|
|
|
|
window->desc);
|
|
|
|
window->mwm_has_resize_func = toggle_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
meta_verbose ("Functions flag unset\n");
|
|
|
|
|
|
|
|
meta_window_recalc_features (window);
|
|
|
|
|
|
|
|
/* We do all this anyhow at the end of meta_window_new() */
|
|
|
|
if (!window->constructing)
|
|
|
|
{
|
|
|
|
if (window->decorated)
|
|
|
|
meta_window_ensure_frame (window);
|
|
|
|
else
|
|
|
|
meta_window_destroy_frame (window);
|
|
|
|
|
Refactor thrice-duplicated queue code in window.c. Closes #376760.
2007-06-10 Thomas Thurman <thomas@thurman.org.uk>
Refactor thrice-duplicated queue code in window.c. Closes #376760.
* src/window.c (meta_window_queue, meta_window_unqueue):
New functions.
* src/window.[ch] (meta_window_unqueue_*, meta_window_queue_*):
Removed functions.
* src/window.c (meta_window_new_with_attrs, meta_window_free,
meta_window_flush_calc_showing, queue_calc_showing_func,
meta_window_minimize, meta_window_unminimize, meta_window_maximize,
meta_window_make_fullscreen, meta_window_shade,
meta_window_unshade, meta_window_move_resize_internal,
window_stick_impl, window_unstick_impl,
meta_window_client_message, process_property_notify): Modified to
use new queueing functions.
* src/window.c (idle_move_resize, idle_update_icon,
idle_calc_showing): update to receive queue number from pointer.
* src/window.h (MetaQueueType): new enum.
* src/window.h (MetaWindow): *_queued replaced with is_in_queue
bitfield.
* src/core.c (meta_core_queue_frame_resize):
* src/display.c (event_callback,
meta_display_queue_retheme_all_windows): Using new queueing functions.
* src/frame.c (meta_window_destroy_frame): Using new queueing functions.
* src/screen.c (queue_resize, meta_screen_resize_func,
queue_windows_showing): Using new queueing functions.
* src/window-props.c (reload_mwm_hints, reload_wm_hints,
reload_transient_for): Using new queueing functions.
* src/workspace.c (meta_workspace_add_window,
meta_workspace_remove_window, meta_workspace_queue_calc_showing,
meta_workspace_invalidate_work_area): Using new queueing functions.
svn path=/trunk/; revision=3236
2007-06-11 01:15:33 +00:00
|
|
|
meta_window_queue (window,
|
|
|
|
META_QUEUE_MOVE_RESIZE |
|
|
|
|
/* because ensure/destroy frame may unmap: */
|
|
|
|
META_QUEUE_CALC_SHOWING);
|
2009-02-11 12:16:41 +00:00
|
|
|
|
|
|
|
if (old_decorated != window->decorated)
|
|
|
|
g_object_notify (G_OBJECT (window), "decorated");
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_class (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
{
|
|
|
|
if (window->res_class)
|
|
|
|
g_free (window->res_class);
|
|
|
|
if (window->res_name)
|
|
|
|
g_free (window->res_name);
|
|
|
|
|
|
|
|
window->res_class = NULL;
|
|
|
|
window->res_name = NULL;
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
if (value->v.class_hint.res_name)
|
|
|
|
window->res_name = g_strdup (value->v.class_hint.res_name);
|
|
|
|
|
|
|
|
if (value->v.class_hint.res_class)
|
|
|
|
window->res_class = g_strdup (value->v.class_hint.res_class);
|
2011-03-03 09:01:04 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (window), "wm-class");
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
meta_verbose ("Window %s class: '%s' name: '%s'\n",
|
|
|
|
window->desc,
|
|
|
|
window->res_class ? window->res_class : "none",
|
|
|
|
window->res_name ? window->res_name : "none");
|
|
|
|
}
|
|
|
|
|
2002-11-21 05:02:38 +00:00
|
|
|
static void
|
|
|
|
reload_net_wm_desktop (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-11-21 05:02:38 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
window->initial_workspace_set = TRUE;
|
|
|
|
window->initial_workspace = value->v.cardinal;
|
|
|
|
meta_topic (META_DEBUG_PLACEMENT,
|
|
|
|
"Read initial workspace prop %d for %s\n",
|
|
|
|
window->initial_workspace, window->desc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-01 03:58:04 +00:00
|
|
|
static void
|
|
|
|
reload_net_startup_id (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-12-01 03:58:04 +00:00
|
|
|
{
|
2006-08-07 18:08:27 +00:00
|
|
|
guint32 timestamp = window->net_wm_user_time;
|
|
|
|
MetaWorkspace *workspace = NULL;
|
|
|
|
|
2002-12-01 03:58:04 +00:00
|
|
|
g_free (window->startup_id);
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
window->startup_id = g_strdup (value->v.str);
|
|
|
|
else
|
|
|
|
window->startup_id = NULL;
|
2006-08-07 18:08:27 +00:00
|
|
|
|
|
|
|
/* Update timestamp and workspace on a running window */
|
|
|
|
if (!window->constructing)
|
|
|
|
{
|
|
|
|
window->initial_timestamp_set = 0;
|
|
|
|
window->initial_workspace_set = 0;
|
|
|
|
|
2007-06-18 02:37:14 +00:00
|
|
|
if (meta_screen_apply_startup_properties (window->screen, window))
|
|
|
|
{
|
2006-08-07 18:08:27 +00:00
|
|
|
|
2007-06-18 02:37:14 +00:00
|
|
|
if (window->initial_timestamp_set)
|
|
|
|
timestamp = window->initial_timestamp;
|
|
|
|
if (window->initial_workspace_set)
|
|
|
|
workspace = meta_screen_get_workspace_by_index (window->screen, window->initial_workspace);
|
2006-08-07 18:08:27 +00:00
|
|
|
|
2007-06-18 02:37:14 +00:00
|
|
|
meta_window_activate_with_workspace (window, timestamp, workspace);
|
|
|
|
}
|
2006-08-07 18:08:27 +00:00
|
|
|
}
|
2002-12-01 03:58:04 +00:00
|
|
|
|
|
|
|
meta_verbose ("New _NET_STARTUP_ID \"%s\" for %s\n",
|
|
|
|
window->startup_id ? window->startup_id : "unset",
|
|
|
|
window->desc);
|
|
|
|
}
|
|
|
|
|
2002-12-10 03:23:04 +00:00
|
|
|
static void
|
|
|
|
reload_update_counter (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2002-12-10 03:23:04 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_XSYNC
|
|
|
|
XSyncCounter counter = value->v.xcounter;
|
|
|
|
|
Fix bug 143333, support for update counter spec, and 109362, schedule
Sat Jun 19 02:21:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
Fix bug 143333, support for update counter spec, and 109362,
schedule compensation events when events are ignored.
* src/display.c (meta_display_open): Add _NET_WM_SYNC_REQUEST and
_NET_WM_SYNC_REQUEST_COUNTER atoms. Remove the old
METACITY_SYNC_COUNTER stuff.
(meta_display_begin_op): Setup the sync counter
* src/xprops.c, src/xprops.h, src/window-props.c, src/display.h:
Add new atoms.
* src/window.c (send_sync_request): new function.
(meta_window_move_resize_internal): send a sync request before
resizing.
(check_move_resize_frequence): Rework logic to also check the SYNC
case. If an event is ignored return the remaining time.
(update_resize_timeout): Timeout that gets called when a
compensation event is scheduled.
(uddate_resize): schedule compensation events when an event is
ignored.
(meta_window_handle_mouse_grap_op_event): When an alarm is
received and sync was turned off, turn it back on.
* src/window.h (struct MetaWindow) Add some variables
2004-06-19 00:45:24 +00:00
|
|
|
window->sync_request_counter = counter;
|
|
|
|
meta_verbose ("Window has _NET_WM_SYNC_REQUEST_COUNTER 0x%lx\n",
|
|
|
|
window->sync_request_counter);
|
2002-12-10 03:23:04 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-28 01:24:44 +00:00
|
|
|
#define FLAG_TOGGLED_ON(old,new,flag) \
|
|
|
|
(((old)->flags & (flag)) == 0 && \
|
|
|
|
((new)->flags & (flag)) != 0)
|
|
|
|
|
|
|
|
#define FLAG_TOGGLED_OFF(old,new,flag) \
|
|
|
|
(((old)->flags & (flag)) != 0 && \
|
|
|
|
((new)->flags & (flag)) == 0)
|
|
|
|
|
|
|
|
#define FLAG_CHANGED(old,new,flag) \
|
|
|
|
(FLAG_TOGGLED_ON(old,new,flag) || FLAG_TOGGLED_OFF(old,new,flag))
|
|
|
|
|
|
|
|
static void
|
|
|
|
spew_size_hints_differences (const XSizeHints *old,
|
|
|
|
const XSizeHints *new)
|
|
|
|
{
|
|
|
|
if (FLAG_CHANGED (old, new, USPosition))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: USPosition now %s\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, USPosition) ? "set" : "unset");
|
|
|
|
if (FLAG_CHANGED (old, new, USSize))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: USSize now %s\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, USSize) ? "set" : "unset");
|
|
|
|
if (FLAG_CHANGED (old, new, PPosition))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PPosition now %s\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PPosition) ? "set" : "unset");
|
|
|
|
if (FLAG_CHANGED (old, new, PSize))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PSize now %s\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PSize) ? "set" : "unset");
|
|
|
|
if (FLAG_CHANGED (old, new, PMinSize))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PMinSize now %s (%d x %d -> %d x %d)\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PMinSize) ? "set" : "unset",
|
|
|
|
old->min_width, old->min_height,
|
|
|
|
new->min_width, new->min_height);
|
|
|
|
if (FLAG_CHANGED (old, new, PMaxSize))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PMaxSize now %s (%d x %d -> %d x %d)\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PMaxSize) ? "set" : "unset",
|
|
|
|
old->max_width, old->max_height,
|
|
|
|
new->max_width, new->max_height);
|
|
|
|
if (FLAG_CHANGED (old, new, PResizeInc))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PResizeInc now %s (width_inc %d -> %d height_inc %d -> %d)\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PResizeInc) ? "set" : "unset",
|
|
|
|
old->width_inc, new->width_inc,
|
|
|
|
old->height_inc, new->height_inc);
|
|
|
|
if (FLAG_CHANGED (old, new, PAspect))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PAspect now %s (min %d/%d -> %d/%d max %d/%d -> %d/%d)\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PAspect) ? "set" : "unset",
|
|
|
|
old->min_aspect.x, old->min_aspect.y,
|
|
|
|
new->min_aspect.x, new->min_aspect.y,
|
|
|
|
old->max_aspect.x, old->max_aspect.y,
|
|
|
|
new->max_aspect.x, new->max_aspect.y);
|
|
|
|
if (FLAG_CHANGED (old, new, PBaseSize))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PBaseSize now %s (%d x %d -> %d x %d)\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PBaseSize) ? "set" : "unset",
|
|
|
|
old->base_width, old->base_height,
|
|
|
|
new->base_width, new->base_height);
|
|
|
|
if (FLAG_CHANGED (old, new, PWinGravity))
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "XSizeHints: PWinGravity now %s (%d -> %d)\n",
|
|
|
|
FLAG_TOGGLED_ON (old, new, PWinGravity) ? "set" : "unset",
|
|
|
|
old->win_gravity, new->win_gravity);
|
|
|
|
}
|
|
|
|
|
2003-04-26 17:40:32 +00:00
|
|
|
void
|
|
|
|
meta_set_normal_hints (MetaWindow *window,
|
2007-04-04 21:54:56 +00:00
|
|
|
XSizeHints *hints)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
|
|
|
int x, y, w, h;
|
2007-04-04 21:54:56 +00:00
|
|
|
double minr, maxr;
|
|
|
|
/* Some convenience vars */
|
|
|
|
int minw, minh, maxw, maxh; /* min/max width/height */
|
|
|
|
int basew, baseh, winc, hinc; /* base width/height, width/height increment */
|
|
|
|
|
2003-04-26 17:40:32 +00:00
|
|
|
/* Save the last ConfigureRequest, which we put here.
|
|
|
|
* Values here set in the hints are supposed to
|
|
|
|
* be ignored.
|
|
|
|
*/
|
|
|
|
x = window->size_hints.x;
|
|
|
|
y = window->size_hints.y;
|
|
|
|
w = window->size_hints.width;
|
|
|
|
h = window->size_hints.height;
|
|
|
|
|
|
|
|
/* as far as I can tell, value->v.size_hints.flags is just to
|
|
|
|
* check whether we had old-style normal hints without gravity,
|
|
|
|
* base size as returned by XGetNormalHints(), so we don't
|
|
|
|
* really use it as we fixup window->size_hints to have those
|
|
|
|
* fields if they're missing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When the window is first created, NULL hints will
|
|
|
|
* be passed in which will initialize all of the fields
|
|
|
|
* as if flags were zero
|
|
|
|
*/
|
|
|
|
if (hints)
|
|
|
|
window->size_hints = *hints;
|
|
|
|
else
|
|
|
|
window->size_hints.flags = 0;
|
|
|
|
|
|
|
|
/* Put back saved ConfigureRequest. */
|
|
|
|
window->size_hints.x = x;
|
|
|
|
window->size_hints.y = y;
|
|
|
|
window->size_hints.width = w;
|
|
|
|
window->size_hints.height = h;
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Get base size hints */
|
2003-04-26 17:40:32 +00:00
|
|
|
if (window->size_hints.flags & PBaseSize)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Window %s sets base size %d x %d\n",
|
2007-04-04 21:54:56 +00:00
|
|
|
window->desc,
|
|
|
|
window->size_hints.base_width,
|
|
|
|
window->size_hints.base_height);
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
|
|
|
else if (window->size_hints.flags & PMinSize)
|
|
|
|
{
|
|
|
|
window->size_hints.base_width = window->size_hints.min_width;
|
|
|
|
window->size_hints.base_height = window->size_hints.min_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.base_width = 0;
|
|
|
|
window->size_hints.base_height = 0;
|
|
|
|
}
|
|
|
|
window->size_hints.flags |= PBaseSize;
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Get min size hints */
|
2003-04-26 17:40:32 +00:00
|
|
|
if (window->size_hints.flags & PMinSize)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Window %s sets min size %d x %d\n",
|
2007-04-04 21:54:56 +00:00
|
|
|
window->desc,
|
|
|
|
window->size_hints.min_width,
|
|
|
|
window->size_hints.min_height);
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
|
|
|
else if (window->size_hints.flags & PBaseSize)
|
|
|
|
{
|
|
|
|
window->size_hints.min_width = window->size_hints.base_width;
|
|
|
|
window->size_hints.min_height = window->size_hints.base_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.min_width = 0;
|
|
|
|
window->size_hints.min_height = 0;
|
|
|
|
}
|
|
|
|
window->size_hints.flags |= PMinSize;
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Get max size hints */
|
2003-04-26 17:40:32 +00:00
|
|
|
if (window->size_hints.flags & PMaxSize)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Window %s sets max size %d x %d\n",
|
2007-04-04 21:54:56 +00:00
|
|
|
window->desc,
|
|
|
|
window->size_hints.max_width,
|
|
|
|
window->size_hints.max_height);
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.max_width = G_MAXINT;
|
|
|
|
window->size_hints.max_height = G_MAXINT;
|
|
|
|
window->size_hints.flags |= PMaxSize;
|
|
|
|
}
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Get resize increment hints */
|
|
|
|
if (window->size_hints.flags & PResizeInc)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
2007-04-04 21:54:56 +00:00
|
|
|
"Window %s sets resize width inc: %d height inc: %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.width_inc,
|
|
|
|
window->size_hints.height_inc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.width_inc = 1;
|
|
|
|
window->size_hints.height_inc = 1;
|
|
|
|
window->size_hints.flags |= PResizeInc;
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Get aspect ratio hints */
|
|
|
|
if (window->size_hints.flags & PAspect)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
2007-04-04 21:54:56 +00:00
|
|
|
"Window %s sets min_aspect: %d/%d max_aspect: %d/%d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.min_aspect.x,
|
|
|
|
window->size_hints.min_aspect.y,
|
|
|
|
window->size_hints.max_aspect.x,
|
|
|
|
window->size_hints.max_aspect.y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.min_aspect.x = 1;
|
|
|
|
window->size_hints.min_aspect.y = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.x = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.y = 1;
|
|
|
|
window->size_hints.flags |= PAspect;
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Get gravity hint */
|
|
|
|
if (window->size_hints.flags & PWinGravity)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Window %s sets gravity %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.win_gravity);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s doesn't set gravity, using NW\n",
|
|
|
|
window->desc);
|
|
|
|
window->size_hints.win_gravity = NorthWestGravity;
|
|
|
|
window->size_hints.flags |= PWinGravity;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** Lots of sanity checking ***/
|
|
|
|
|
|
|
|
/* Verify all min & max hints are at least 1 pixel */
|
2003-04-26 17:40:32 +00:00
|
|
|
if (window->size_hints.min_width < 1)
|
|
|
|
{
|
2007-04-04 21:54:56 +00:00
|
|
|
/* someone is on crack */
|
2003-04-26 17:40:32 +00:00
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
2007-04-04 21:54:56 +00:00
|
|
|
"Window %s sets min width to 0, which makes no sense\n",
|
|
|
|
window->desc);
|
2003-04-26 17:40:32 +00:00
|
|
|
window->size_hints.min_width = 1;
|
|
|
|
}
|
|
|
|
if (window->size_hints.max_width < 1)
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
2007-04-04 21:54:56 +00:00
|
|
|
"Window %s sets max width to 0, which makes no sense\n",
|
|
|
|
window->desc);
|
2003-04-26 17:40:32 +00:00
|
|
|
window->size_hints.max_width = 1;
|
|
|
|
}
|
|
|
|
if (window->size_hints.min_height < 1)
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
2007-04-04 21:54:56 +00:00
|
|
|
"Window %s sets min height to 0, which makes no sense\n",
|
|
|
|
window->desc);
|
2003-04-26 17:40:32 +00:00
|
|
|
window->size_hints.min_height = 1;
|
|
|
|
}
|
|
|
|
if (window->size_hints.max_height < 1)
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
2007-04-04 21:54:56 +00:00
|
|
|
"Window %s sets max height to 0, which makes no sense\n",
|
|
|
|
window->desc);
|
2003-04-26 17:40:32 +00:00
|
|
|
window->size_hints.max_height = 1;
|
|
|
|
}
|
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Verify size increment hints are at least 1 pixel */
|
|
|
|
if (window->size_hints.width_inc < 1)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
2007-04-04 21:54:56 +00:00
|
|
|
/* app authors find so many ways to smoke crack */
|
|
|
|
window->size_hints.width_inc = 1;
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Corrected 0 width_inc to 1\n");
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
2007-04-04 21:54:56 +00:00
|
|
|
if (window->size_hints.height_inc < 1)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
2007-04-04 21:54:56 +00:00
|
|
|
/* another cracksmoker */
|
2003-04-26 17:40:32 +00:00
|
|
|
window->size_hints.height_inc = 1;
|
2007-04-04 21:54:56 +00:00
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Corrected 0 height_inc to 1\n");
|
|
|
|
}
|
|
|
|
/* divide by 0 cracksmokers; note that x & y in (min|max)_aspect are
|
|
|
|
* numerator & denominator
|
|
|
|
*/
|
|
|
|
if (window->size_hints.min_aspect.y < 1)
|
|
|
|
window->size_hints.min_aspect.y = 1;
|
|
|
|
if (window->size_hints.max_aspect.y < 1)
|
|
|
|
window->size_hints.max_aspect.y = 1;
|
|
|
|
|
|
|
|
minw = window->size_hints.min_width; minh = window->size_hints.min_height;
|
|
|
|
maxw = window->size_hints.max_width; maxh = window->size_hints.max_height;
|
|
|
|
basew = window->size_hints.base_width; baseh = window->size_hints.base_height;
|
|
|
|
winc = window->size_hints.width_inc; hinc = window->size_hints.height_inc;
|
|
|
|
|
|
|
|
/* Make sure min and max size hints are consistent with the base + increment
|
|
|
|
* size hints. If they're not, it's not a real big deal, but it means the
|
|
|
|
* effective min and max size are more restrictive than the application
|
|
|
|
* specified values.
|
|
|
|
*/
|
|
|
|
if ((minw - basew) % winc != 0)
|
|
|
|
{
|
|
|
|
/* Take advantage of integer division throwing away the remainder... */
|
|
|
|
window->size_hints.min_width = basew + ((minw - basew)/winc + 1)*winc;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s has width_inc (%d) that does not evenly divide "
|
|
|
|
"min_width - base_width (%d - %d); thus effective "
|
|
|
|
"min_width is really %d\n",
|
|
|
|
window->desc,
|
|
|
|
winc, minw, basew, window->size_hints.min_width);
|
|
|
|
minw = window->size_hints.min_width;
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
2007-04-04 21:54:56 +00:00
|
|
|
if (maxw != G_MAXINT && (maxw - basew) % winc != 0)
|
|
|
|
{
|
|
|
|
/* Take advantage of integer division throwing away the remainder... */
|
|
|
|
window->size_hints.max_width = basew + ((maxw - basew)/winc)*winc;
|
2003-04-26 17:40:32 +00:00
|
|
|
|
2007-04-04 21:54:56 +00:00
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s has width_inc (%d) that does not evenly divide "
|
|
|
|
"max_width - base_width (%d - %d); thus effective "
|
|
|
|
"max_width is really %d\n",
|
|
|
|
window->desc,
|
|
|
|
winc, maxw, basew, window->size_hints.max_width);
|
|
|
|
maxw = window->size_hints.max_width;
|
|
|
|
}
|
|
|
|
if ((minh - baseh) % hinc != 0)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Take advantage of integer division throwing away the remainder... */
|
|
|
|
window->size_hints.min_height = baseh + ((minh - baseh)/hinc + 1)*hinc;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s has height_inc (%d) that does not evenly divide "
|
|
|
|
"min_height - base_height (%d - %d); thus effective "
|
|
|
|
"min_height is really %d\n",
|
|
|
|
window->desc,
|
|
|
|
hinc, minh, baseh, window->size_hints.min_height);
|
|
|
|
minh = window->size_hints.min_height;
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
2007-04-04 21:54:56 +00:00
|
|
|
if (maxh != G_MAXINT && (maxh - baseh) % hinc != 0)
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
2007-04-04 21:54:56 +00:00
|
|
|
/* Take advantage of integer division throwing away the remainder... */
|
|
|
|
window->size_hints.max_height = baseh + ((maxh - baseh)/hinc)*hinc;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s has height_inc (%d) that does not evenly divide "
|
|
|
|
"max_height - base_height (%d - %d); thus effective "
|
|
|
|
"max_height is really %d\n",
|
|
|
|
window->desc,
|
|
|
|
hinc, maxh, baseh, window->size_hints.max_height);
|
|
|
|
maxh = window->size_hints.max_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* make sure maximum size hints are compatible with minimum size hints; min
|
|
|
|
* size hints take precedence.
|
|
|
|
*/
|
|
|
|
if (window->size_hints.max_width < window->size_hints.min_width)
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s sets max width %d less than min width %d, "
|
|
|
|
"disabling resize\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.max_width,
|
|
|
|
window->size_hints.min_width);
|
|
|
|
maxw = window->size_hints.max_width = window->size_hints.min_width;
|
|
|
|
}
|
|
|
|
if (window->size_hints.max_height < window->size_hints.min_height)
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s sets max height %d less than min height %d, "
|
|
|
|
"disabling resize\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.max_height,
|
|
|
|
window->size_hints.min_height);
|
|
|
|
maxh = window->size_hints.max_height = window->size_hints.min_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure the aspect ratio hints are sane. */
|
|
|
|
minr = window->size_hints.min_aspect.x /
|
|
|
|
(double)window->size_hints.min_aspect.y;
|
|
|
|
maxr = window->size_hints.max_aspect.x /
|
|
|
|
(double)window->size_hints.max_aspect.y;
|
|
|
|
if (minr > maxr)
|
|
|
|
{
|
|
|
|
/* another cracksmoker; not even minimally (self) consistent */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s sets min aspect ratio larger than max aspect "
|
|
|
|
"ratio; disabling aspect ratio constraints.\n",
|
|
|
|
window->desc);
|
2003-04-26 17:40:32 +00:00
|
|
|
window->size_hints.min_aspect.x = 1;
|
|
|
|
window->size_hints.min_aspect.y = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.x = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.y = 1;
|
|
|
|
}
|
2007-04-04 21:54:56 +00:00
|
|
|
else /* check consistency of aspect ratio hints with other hints */
|
2003-04-26 17:40:32 +00:00
|
|
|
{
|
2007-04-04 21:54:56 +00:00
|
|
|
if (minh > 0 && minr > (maxw / (double)minh))
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s sets min aspect ratio larger than largest "
|
|
|
|
"aspect ratio possible given min/max size constraints; "
|
|
|
|
"disabling min aspect ratio constraint.\n",
|
|
|
|
window->desc);
|
|
|
|
window->size_hints.min_aspect.x = 1;
|
|
|
|
window->size_hints.min_aspect.y = G_MAXINT;
|
|
|
|
}
|
|
|
|
if (maxr < (minw / (double)maxh))
|
|
|
|
{
|
|
|
|
/* another cracksmoker */
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY,
|
|
|
|
"Window %s sets max aspect ratio smaller than smallest "
|
|
|
|
"aspect ratio possible given min/max size constraints; "
|
|
|
|
"disabling max aspect ratio constraint.\n",
|
|
|
|
window->desc);
|
|
|
|
window->size_hints.max_aspect.x = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.y = 1;
|
|
|
|
}
|
|
|
|
/* FIXME: Would be nice to check that aspect ratios are
|
|
|
|
* consistent with base and size increment constraints.
|
|
|
|
*/
|
2003-04-26 17:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-28 01:24:44 +00:00
|
|
|
static void
|
|
|
|
reload_normal_hints (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2003-02-28 01:24:44 +00:00
|
|
|
{
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
XSizeHints old_hints;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_GEOMETRY, "Updating WM_NORMAL_HINTS for %s\n", window->desc);
|
|
|
|
|
|
|
|
old_hints = window->size_hints;
|
|
|
|
|
2003-04-26 17:40:32 +00:00
|
|
|
meta_set_normal_hints (window, value->v.size_hints.hints);
|
2003-02-28 01:24:44 +00:00
|
|
|
|
|
|
|
spew_size_hints_differences (&old_hints, &window->size_hints);
|
|
|
|
|
|
|
|
meta_window_recalc_features (window);
|
|
|
|
|
2009-01-27 03:53:07 +00:00
|
|
|
if (!initial)
|
|
|
|
meta_window_queue(window, META_QUEUE_MOVE_RESIZE);
|
2003-02-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_protocols (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2003-02-28 01:24:44 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
window->take_focus = FALSE;
|
|
|
|
window->delete_window = FALSE;
|
|
|
|
window->net_wm_ping = FALSE;
|
|
|
|
|
|
|
|
if (value->type == META_PROP_VALUE_INVALID)
|
|
|
|
return;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < value->v.atom_list.n_atoms)
|
|
|
|
{
|
|
|
|
if (value->v.atom_list.atoms[i] ==
|
2008-05-02 18:49:01 +00:00
|
|
|
window->display->atom_WM_TAKE_FOCUS)
|
2003-02-28 01:24:44 +00:00
|
|
|
window->take_focus = TRUE;
|
|
|
|
else if (value->v.atom_list.atoms[i] ==
|
2008-05-02 18:49:01 +00:00
|
|
|
window->display->atom_WM_DELETE_WINDOW)
|
2003-02-28 01:24:44 +00:00
|
|
|
window->delete_window = TRUE;
|
|
|
|
else if (value->v.atom_list.atoms[i] ==
|
2008-05-02 18:49:01 +00:00
|
|
|
window->display->atom__NET_WM_PING)
|
2003-02-28 01:24:44 +00:00
|
|
|
window->net_wm_ping = TRUE;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_verbose ("New _NET_STARTUP_ID \"%s\" for %s\n",
|
|
|
|
window->startup_id ? window->startup_id : "unset",
|
|
|
|
window->desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reload_wm_hints (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
2003-02-28 01:24:44 +00:00
|
|
|
{
|
|
|
|
Window old_group_leader;
|
2009-11-20 08:51:19 +00:00
|
|
|
gboolean old_urgent;
|
|
|
|
|
2003-02-28 01:24:44 +00:00
|
|
|
old_group_leader = window->xgroup_leader;
|
2009-11-20 08:51:19 +00:00
|
|
|
old_urgent = window->wm_hints_urgent;
|
2003-02-28 01:24:44 +00:00
|
|
|
|
|
|
|
/* Fill in defaults */
|
|
|
|
window->input = TRUE;
|
|
|
|
window->initially_iconic = FALSE;
|
|
|
|
window->xgroup_leader = None;
|
|
|
|
window->wm_hints_pixmap = None;
|
|
|
|
window->wm_hints_mask = None;
|
2009-11-20 08:51:19 +00:00
|
|
|
window->wm_hints_urgent = FALSE;
|
|
|
|
|
2003-02-28 01:24:44 +00:00
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
const XWMHints *hints = value->v.wm_hints;
|
|
|
|
|
|
|
|
if (hints->flags & InputHint)
|
|
|
|
window->input = hints->input;
|
|
|
|
|
|
|
|
if (hints->flags & StateHint)
|
|
|
|
window->initially_iconic = (hints->initial_state == IconicState);
|
|
|
|
|
|
|
|
if (hints->flags & WindowGroupHint)
|
|
|
|
window->xgroup_leader = hints->window_group;
|
|
|
|
|
|
|
|
if (hints->flags & IconPixmapHint)
|
|
|
|
window->wm_hints_pixmap = hints->icon_pixmap;
|
|
|
|
|
|
|
|
if (hints->flags & IconMaskHint)
|
|
|
|
window->wm_hints_mask = hints->icon_mask;
|
2009-11-20 08:51:19 +00:00
|
|
|
|
|
|
|
if (hints->flags & XUrgencyHint)
|
|
|
|
window->wm_hints_urgent = TRUE;
|
|
|
|
|
2003-02-28 01:24:44 +00:00
|
|
|
meta_verbose ("Read WM_HINTS input: %d iconic: %d group leader: 0x%lx pixmap: 0x%lx mask: 0x%lx\n",
|
|
|
|
window->input, window->initially_iconic,
|
|
|
|
window->xgroup_leader,
|
|
|
|
window->wm_hints_pixmap,
|
|
|
|
window->wm_hints_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->xgroup_leader != old_group_leader)
|
|
|
|
{
|
|
|
|
meta_verbose ("Window %s changed its group leader to 0x%lx\n",
|
|
|
|
window->desc, window->xgroup_leader);
|
|
|
|
|
|
|
|
meta_window_group_leader_changed (window);
|
|
|
|
}
|
|
|
|
|
2009-11-20 08:51:19 +00:00
|
|
|
/*
|
|
|
|
* Do not emit urgency notification on the inital property load
|
|
|
|
*/
|
|
|
|
if (!initial && (window->wm_hints_urgent != old_urgent))
|
|
|
|
g_object_notify (G_OBJECT (window), "urgent");
|
|
|
|
|
2009-11-17 10:24:18 +00:00
|
|
|
/*
|
|
|
|
* Do not emit signal for the initial property load, let the constructor to
|
|
|
|
* take care of it once the MetaWindow is fully constructed.
|
|
|
|
*
|
|
|
|
* Only emit if the property is both changed and set.
|
|
|
|
*/
|
|
|
|
if (!initial && window->wm_hints_urgent && !old_urgent)
|
|
|
|
g_signal_emit_by_name (window->display, "window-marked-urgent", window);
|
|
|
|
|
2003-02-28 01:24:44 +00:00
|
|
|
meta_icon_cache_property_changed (&window->icon_cache,
|
|
|
|
window->display,
|
|
|
|
XA_WM_HINTS);
|
|
|
|
|
Refactor thrice-duplicated queue code in window.c. Closes #376760.
2007-06-10 Thomas Thurman <thomas@thurman.org.uk>
Refactor thrice-duplicated queue code in window.c. Closes #376760.
* src/window.c (meta_window_queue, meta_window_unqueue):
New functions.
* src/window.[ch] (meta_window_unqueue_*, meta_window_queue_*):
Removed functions.
* src/window.c (meta_window_new_with_attrs, meta_window_free,
meta_window_flush_calc_showing, queue_calc_showing_func,
meta_window_minimize, meta_window_unminimize, meta_window_maximize,
meta_window_make_fullscreen, meta_window_shade,
meta_window_unshade, meta_window_move_resize_internal,
window_stick_impl, window_unstick_impl,
meta_window_client_message, process_property_notify): Modified to
use new queueing functions.
* src/window.c (idle_move_resize, idle_update_icon,
idle_calc_showing): update to receive queue number from pointer.
* src/window.h (MetaQueueType): new enum.
* src/window.h (MetaWindow): *_queued replaced with is_in_queue
bitfield.
* src/core.c (meta_core_queue_frame_resize):
* src/display.c (event_callback,
meta_display_queue_retheme_all_windows): Using new queueing functions.
* src/frame.c (meta_window_destroy_frame): Using new queueing functions.
* src/screen.c (queue_resize, meta_screen_resize_func,
queue_windows_showing): Using new queueing functions.
* src/window-props.c (reload_mwm_hints, reload_wm_hints,
reload_transient_for): Using new queueing functions.
* src/workspace.c (meta_workspace_add_window,
meta_workspace_remove_window, meta_workspace_queue_calc_showing,
meta_workspace_invalidate_work_area): Using new queueing functions.
svn path=/trunk/; revision=3236
2007-06-11 01:15:33 +00:00
|
|
|
meta_window_queue (window, META_QUEUE_UPDATE_ICON | META_QUEUE_MOVE_RESIZE);
|
2003-02-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
static void
|
|
|
|
reload_transient_for (MetaWindow *window,
|
2009-01-27 03:53:07 +00:00
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
{
|
2011-05-06 09:09:04 +00:00
|
|
|
MetaWindow *parent = NULL;
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
Window transient_for, old_transient_for;
|
2011-05-06 09:09:04 +00:00
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
2011-05-06 09:09:04 +00:00
|
|
|
{
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
transient_for = value->v.xwindow;
|
|
|
|
|
|
|
|
parent = meta_display_lookup_x_window (window->display, transient_for);
|
2011-05-06 09:09:04 +00:00
|
|
|
if (!parent)
|
|
|
|
{
|
|
|
|
meta_warning (_("Invalid WM_TRANSIENT_FOR window 0x%lx specified "
|
|
|
|
"for %s.\n"),
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
transient_for, window->desc);
|
|
|
|
transient_for = None;
|
2011-05-06 09:09:04 +00:00
|
|
|
}
|
|
|
|
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
/* Make sure there is not a loop */
|
|
|
|
while (parent)
|
2011-05-06 09:09:04 +00:00
|
|
|
{
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
if (parent == window)
|
|
|
|
{
|
|
|
|
meta_warning (_("WM_TRANSIENT_FOR window 0x%lx for %s "
|
|
|
|
"would create loop.\n"),
|
|
|
|
transient_for, window->desc);
|
|
|
|
transient_for = None;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent = meta_display_lookup_x_window (parent->display,
|
|
|
|
parent->xtransient_for);
|
2011-05-06 09:09:04 +00:00
|
|
|
}
|
2006-04-19 20:55:49 +00:00
|
|
|
}
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
else
|
|
|
|
transient_for = None;
|
|
|
|
|
|
|
|
if (transient_for == window->xtransient_for)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (meta_window_appears_focused (window) && window->xtransient_for != None)
|
|
|
|
meta_window_propagate_focus_appearance (window, FALSE);
|
|
|
|
|
|
|
|
old_transient_for = window->xtransient_for;
|
|
|
|
window->xtransient_for = transient_for;
|
2006-04-19 20:55:49 +00:00
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
window->transient_parent_is_root_window =
|
|
|
|
window->xtransient_for == window->screen->xroot;
|
|
|
|
|
|
|
|
if (window->xtransient_for != None)
|
|
|
|
meta_verbose ("Window %s transient for 0x%lx (root = %d)\n", window->desc,
|
|
|
|
window->xtransient_for, window->transient_parent_is_root_window);
|
|
|
|
else
|
|
|
|
meta_verbose ("Window %s is not transient\n", window->desc);
|
2003-02-28 01:24:44 +00:00
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
/* may now be a dialog */
|
|
|
|
meta_window_recalc_window_type (window);
|
|
|
|
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 14:14:52 +00:00
|
|
|
if (!window->constructing)
|
|
|
|
{
|
|
|
|
/* If the window attaches, detaches, or changes attached
|
|
|
|
* parents, we need to destroy the MetaWindow and let a new one
|
|
|
|
* be created (which happens as a side effect of
|
|
|
|
* meta_window_unmanage()). The condition below is correct
|
|
|
|
* because we know window->xtransient_for has changed.
|
|
|
|
*/
|
|
|
|
if (window->attached || meta_window_should_attach_to_parent (window))
|
|
|
|
{
|
|
|
|
guint32 timestamp;
|
|
|
|
|
|
|
|
window->xtransient_for = old_transient_for;
|
|
|
|
timestamp = meta_display_get_current_time_roundtrip (window->display);
|
|
|
|
meta_window_unmanage (window, timestamp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
/* update stacking constraints */
|
2009-06-15 18:31:04 +00:00
|
|
|
if (!window->override_redirect)
|
|
|
|
meta_stack_update_transient (window->screen->stack, window);
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
|
|
|
|
/* possibly change its group. We treat being a window's transient as
|
|
|
|
* equivalent to making it your group leader, to work around shortcomings
|
|
|
|
* in programs such as xmms-- see #328211.
|
|
|
|
*/
|
|
|
|
if (window->xtransient_for != None &&
|
|
|
|
window->xgroup_leader != None &&
|
|
|
|
window->xtransient_for != window->xgroup_leader)
|
|
|
|
meta_window_group_leader_changed (window);
|
|
|
|
|
2009-06-15 22:25:07 +00:00
|
|
|
if (!window->constructing && !window->override_redirect)
|
Refactor thrice-duplicated queue code in window.c. Closes #376760.
2007-06-10 Thomas Thurman <thomas@thurman.org.uk>
Refactor thrice-duplicated queue code in window.c. Closes #376760.
* src/window.c (meta_window_queue, meta_window_unqueue):
New functions.
* src/window.[ch] (meta_window_unqueue_*, meta_window_queue_*):
Removed functions.
* src/window.c (meta_window_new_with_attrs, meta_window_free,
meta_window_flush_calc_showing, queue_calc_showing_func,
meta_window_minimize, meta_window_unminimize, meta_window_maximize,
meta_window_make_fullscreen, meta_window_shade,
meta_window_unshade, meta_window_move_resize_internal,
window_stick_impl, window_unstick_impl,
meta_window_client_message, process_property_notify): Modified to
use new queueing functions.
* src/window.c (idle_move_resize, idle_update_icon,
idle_calc_showing): update to receive queue number from pointer.
* src/window.h (MetaQueueType): new enum.
* src/window.h (MetaWindow): *_queued replaced with is_in_queue
bitfield.
* src/core.c (meta_core_queue_frame_resize):
* src/display.c (event_callback,
meta_display_queue_retheme_all_windows): Using new queueing functions.
* src/frame.c (meta_window_destroy_frame): Using new queueing functions.
* src/screen.c (queue_resize, meta_screen_resize_func,
queue_windows_showing): Using new queueing functions.
* src/window-props.c (reload_mwm_hints, reload_wm_hints,
reload_transient_for): Using new queueing functions.
* src/workspace.c (meta_workspace_add_window,
meta_workspace_remove_window, meta_workspace_queue_calc_showing,
meta_workspace_invalidate_work_area): Using new queueing functions.
svn path=/trunk/; revision=3236
2007-06-11 01:15:33 +00:00
|
|
|
meta_window_queue (window, META_QUEUE_MOVE_RESIZE);
|
2011-03-25 01:36:47 +00:00
|
|
|
|
2011-04-13 21:08:12 +00:00
|
|
|
if (meta_window_appears_focused (window) && window->xtransient_for != None)
|
2011-03-25 01:36:47 +00:00
|
|
|
meta_window_propagate_focus_appearance (window, TRUE);
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
}
|
|
|
|
|
2011-03-19 09:31:25 +00:00
|
|
|
static void
|
|
|
|
reload_gtk_theme_variant (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
char *requested_variant = NULL;
|
|
|
|
char *current_variant = window->gtk_theme_variant;
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
requested_variant = value->v.str;
|
|
|
|
meta_verbose ("Requested \"%s\" theme variant for window %s.\n",
|
|
|
|
requested_variant, window->desc);
|
|
|
|
}
|
|
|
|
|
2011-11-25 23:42:41 +00:00
|
|
|
if (g_strcmp0 (requested_variant, current_variant) != 0)
|
2011-03-19 09:31:25 +00:00
|
|
|
{
|
|
|
|
g_free (current_variant);
|
|
|
|
|
2011-11-25 23:42:41 +00:00
|
|
|
window->gtk_theme_variant = g_strdup (requested_variant);
|
2011-03-20 21:56:08 +00:00
|
|
|
|
|
|
|
if (window->frame)
|
|
|
|
meta_ui_update_frame_style (window->screen->ui, window->frame->xwindow);
|
2011-03-19 09:31:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-07 10:45:56 +00:00
|
|
|
static void
|
|
|
|
reload_gtk_hide_titlebar_when_maximized (MetaWindow *window,
|
|
|
|
MetaPropValue *value,
|
|
|
|
gboolean initial)
|
|
|
|
{
|
|
|
|
gboolean requested_value = FALSE;
|
|
|
|
gboolean current_value = window->hide_titlebar_when_maximized;
|
|
|
|
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID)
|
|
|
|
{
|
|
|
|
requested_value = ((int) value->v.cardinal == 1);
|
|
|
|
meta_verbose ("Request to hide titlebar for window %s.\n", window->desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (requested_value == current_value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
window->hide_titlebar_when_maximized = requested_value;
|
|
|
|
|
|
|
|
if (META_WINDOW_MAXIMIZED (window))
|
|
|
|
{
|
|
|
|
meta_window_queue (window, META_QUEUE_MOVE_RESIZE);
|
|
|
|
|
|
|
|
if (window->frame)
|
|
|
|
meta_ui_update_frame_style (window->screen->ui, window->frame->xwindow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-17 18:27:10 +00:00
|
|
|
#define RELOAD_STRING(var_name, propname) \
|
|
|
|
static void \
|
|
|
|
reload_ ## var_name (MetaWindow *window, \
|
|
|
|
MetaPropValue *value, \
|
|
|
|
gboolean initial) \
|
|
|
|
{ \
|
|
|
|
g_free (window->var_name); \
|
|
|
|
\
|
|
|
|
if (value->type != META_PROP_VALUE_INVALID) \
|
|
|
|
window->var_name = g_strdup (value->v.str); \
|
|
|
|
else \
|
|
|
|
window->var_name = NULL; \
|
|
|
|
\
|
|
|
|
g_object_notify (G_OBJECT (window), propname); \
|
|
|
|
}
|
2011-12-05 17:52:35 +00:00
|
|
|
|
2012-01-17 18:27:10 +00:00
|
|
|
RELOAD_STRING (gtk_unique_bus_name, "gtk-unique-bus-name")
|
|
|
|
RELOAD_STRING (gtk_application_id, "gtk-application-id")
|
|
|
|
RELOAD_STRING (gtk_application_object_path, "gtk-application-object-path")
|
|
|
|
RELOAD_STRING (gtk_window_object_path, "gtk-window-object-path")
|
|
|
|
RELOAD_STRING (gtk_app_menu_object_path, "gtk-app-menu-object-path")
|
|
|
|
RELOAD_STRING (gtk_menubar_object_path, "gtk-menubar-object-path")
|
2011-12-05 17:52:35 +00:00
|
|
|
|
2012-01-17 18:27:10 +00:00
|
|
|
#undef RELOAD_STRING
|
2011-12-05 17:52:35 +00:00
|
|
|
|
2009-01-29 14:32:31 +00:00
|
|
|
/**
|
|
|
|
* Initialises the property hooks system. Each row in the table named "hooks"
|
|
|
|
* represents an action to take when a property is found on a newly-created
|
|
|
|
* window, or when a property changes its value.
|
|
|
|
*
|
|
|
|
* The first column shows which atom the row concerns.
|
|
|
|
* The second gives the type of the property data. The property will be
|
|
|
|
* queried for its new value, unless the type is given as
|
|
|
|
* META_PROP_VALUE_INVALID, in which case nothing will be queried.
|
|
|
|
* The third column gives the name of a callback which gets called with the
|
|
|
|
* new value. (If the new value was not retrieved because the second column
|
|
|
|
* was META_PROP_VALUE_INVALID, the callback still gets called anyway.)
|
|
|
|
* This value may be NULL, in which case no callback will be called.
|
|
|
|
*/
|
2002-11-03 23:42:21 +00:00
|
|
|
void
|
|
|
|
meta_display_init_window_prop_hooks (MetaDisplay *display)
|
|
|
|
{
|
2009-06-14 12:37:57 +00:00
|
|
|
/* INIT: load initially
|
|
|
|
* O-R: fetch for override-redirect windows
|
|
|
|
*
|
|
|
|
* The ordering here is significant for the properties we load
|
|
|
|
* initially: they are roughly ordered in the order we want them to
|
|
|
|
* be gotten. We want to get window name and class first so we can
|
|
|
|
* use them in error messages and such. However, name is modified
|
|
|
|
* depending on wm_client_machine, so push it slightly sooner.
|
|
|
|
*
|
|
|
|
* For override-redirect windows, we pay attention to:
|
|
|
|
*
|
|
|
|
* - properties that identify the window: useful for debugging
|
|
|
|
* purposes.
|
|
|
|
* - NET_WM_WINDOW_TYPE: can be used to do appropriate handling
|
|
|
|
* for different types of override-redirect windows.
|
|
|
|
*/
|
|
|
|
MetaWindowPropHooks hooks[] = { /* INIT O-R */
|
|
|
|
{ display->atom_WM_CLIENT_MACHINE, META_PROP_VALUE_STRING, reload_wm_client_machine, TRUE, TRUE },
|
|
|
|
{ display->atom__NET_WM_NAME, META_PROP_VALUE_UTF8, reload_net_wm_name, TRUE, TRUE },
|
|
|
|
{ XA_WM_CLASS, META_PROP_VALUE_CLASS_HINT, reload_wm_class, TRUE, TRUE },
|
|
|
|
{ display->atom__NET_WM_PID, META_PROP_VALUE_CARDINAL, reload_net_wm_pid, TRUE, TRUE },
|
|
|
|
{ XA_WM_NAME, META_PROP_VALUE_TEXT_PROPERTY, reload_wm_name, TRUE, TRUE },
|
2010-01-18 10:12:17 +00:00
|
|
|
{ display->atom__MUTTER_HINTS, META_PROP_VALUE_TEXT_PROPERTY, reload_mutter_hints, TRUE, TRUE },
|
2009-06-14 12:37:57 +00:00
|
|
|
{ display->atom__NET_WM_ICON_NAME, META_PROP_VALUE_UTF8, reload_net_wm_icon_name, TRUE, FALSE },
|
|
|
|
{ XA_WM_ICON_NAME, META_PROP_VALUE_TEXT_PROPERTY, reload_wm_icon_name, TRUE, FALSE },
|
|
|
|
{ display->atom__NET_WM_DESKTOP, META_PROP_VALUE_CARDINAL, reload_net_wm_desktop, TRUE, FALSE },
|
|
|
|
{ display->atom__NET_STARTUP_ID, META_PROP_VALUE_UTF8, reload_net_startup_id, TRUE, FALSE },
|
|
|
|
{ display->atom__NET_WM_SYNC_REQUEST_COUNTER, META_PROP_VALUE_SYNC_COUNTER, reload_update_counter, TRUE, FALSE },
|
|
|
|
{ XA_WM_NORMAL_HINTS, META_PROP_VALUE_SIZE_HINTS, reload_normal_hints, TRUE, FALSE },
|
|
|
|
{ display->atom_WM_PROTOCOLS, META_PROP_VALUE_ATOM_LIST, reload_wm_protocols, TRUE, FALSE },
|
|
|
|
{ XA_WM_HINTS, META_PROP_VALUE_WM_HINTS, reload_wm_hints, TRUE, FALSE },
|
|
|
|
{ display->atom__NET_WM_USER_TIME, META_PROP_VALUE_CARDINAL, reload_net_wm_user_time, TRUE, FALSE },
|
|
|
|
{ display->atom__NET_WM_STATE, META_PROP_VALUE_ATOM_LIST, reload_net_wm_state, TRUE, FALSE },
|
|
|
|
{ display->atom__MOTIF_WM_HINTS, META_PROP_VALUE_MOTIF_HINTS, reload_mwm_hints, TRUE, FALSE },
|
|
|
|
{ XA_WM_TRANSIENT_FOR, META_PROP_VALUE_WINDOW, reload_transient_for, TRUE, FALSE },
|
2011-03-19 09:31:25 +00:00
|
|
|
{ display->atom__GTK_THEME_VARIANT, META_PROP_VALUE_UTF8, reload_gtk_theme_variant, TRUE, FALSE },
|
2011-10-07 10:45:56 +00:00
|
|
|
{ display->atom__GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED, META_PROP_VALUE_CARDINAL, reload_gtk_hide_titlebar_when_maximized, TRUE, FALSE },
|
2012-01-17 18:27:10 +00:00
|
|
|
{ display->atom__GTK_APPLICATION_ID, META_PROP_VALUE_UTF8, reload_gtk_application_id, TRUE, FALSE },
|
|
|
|
{ display->atom__GTK_UNIQUE_BUS_NAME, META_PROP_VALUE_UTF8, reload_gtk_unique_bus_name, TRUE, FALSE },
|
|
|
|
{ display->atom__GTK_APPLICATION_OBJECT_PATH, META_PROP_VALUE_UTF8, reload_gtk_application_object_path, TRUE, FALSE },
|
|
|
|
{ display->atom__GTK_WINDOW_OBJECT_PATH, META_PROP_VALUE_UTF8, reload_gtk_window_object_path, TRUE, FALSE },
|
|
|
|
{ display->atom__GTK_APP_MENU_OBJECT_PATH, META_PROP_VALUE_UTF8, reload_gtk_app_menu_object_path, TRUE, FALSE },
|
|
|
|
{ display->atom__GTK_MENUBAR_OBJECT_PATH, META_PROP_VALUE_UTF8, reload_gtk_menubar_object_path, TRUE, FALSE },
|
2009-06-14 12:37:57 +00:00
|
|
|
{ display->atom__NET_WM_USER_TIME_WINDOW, META_PROP_VALUE_WINDOW, reload_net_wm_user_time_window, TRUE, FALSE },
|
|
|
|
{ display->atom_WM_STATE, META_PROP_VALUE_INVALID, NULL, FALSE, FALSE },
|
|
|
|
{ display->atom__NET_WM_ICON, META_PROP_VALUE_INVALID, reload_net_wm_icon, FALSE, FALSE },
|
|
|
|
{ display->atom__KWM_WIN_ICON, META_PROP_VALUE_INVALID, reload_kwm_win_icon, FALSE, FALSE },
|
|
|
|
{ display->atom__NET_WM_ICON_GEOMETRY, META_PROP_VALUE_INVALID, NULL, FALSE, FALSE },
|
|
|
|
{ display->atom_WM_CLIENT_LEADER, META_PROP_VALUE_INVALID, complain_about_broken_client, FALSE, FALSE },
|
|
|
|
{ display->atom_SM_CLIENT_ID, META_PROP_VALUE_INVALID, complain_about_broken_client, FALSE, FALSE },
|
|
|
|
{ display->atom_WM_WINDOW_ROLE, META_PROP_VALUE_INVALID, reload_wm_window_role, FALSE, FALSE },
|
|
|
|
{ display->atom__NET_WM_WINDOW_TYPE, META_PROP_VALUE_INVALID, reload_net_wm_window_type, FALSE, TRUE },
|
|
|
|
{ display->atom__NET_WM_STRUT, META_PROP_VALUE_INVALID, reload_struts, FALSE, FALSE },
|
|
|
|
{ display->atom__NET_WM_STRUT_PARTIAL, META_PROP_VALUE_INVALID, reload_struts, FALSE, FALSE },
|
2009-01-29 14:32:31 +00:00
|
|
|
{ 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
MetaWindowPropHooks *table = g_memdup (hooks, sizeof (hooks)),
|
|
|
|
*cursor = table;
|
2002-11-03 23:42:21 +00:00
|
|
|
|
|
|
|
g_assert (display->prop_hooks == NULL);
|
|
|
|
|
2009-01-29 14:32:31 +00:00
|
|
|
display->prop_hooks_table = (gpointer) table;
|
|
|
|
display->prop_hooks = g_hash_table_new (NULL, NULL);
|
deleted and moved into window-props.c (meta_window_new_with_attrs): added
2006-03-25 Thomas Thurman <thomas@thurman.org.uk>
* src/window.c, src/window.h (update_net_wm_state,
update_mwm_hints, update_wm_class, update_transient_for):
deleted and moved into window-props.c
(meta_window_new_with_attrs): added constructing field
and four new initial properties (as above)
(meta_window_recalc_features,
meta_window_recalc_window_type): new functions
* src/window-props.c (init_net_wm_state, reload_net_wm_state
init_mwm_hints, reload_mwm_hints, init_wm_class,
reload_mwm_class, init_transient_for, reload_transient_for):
new functions, moved in from window.c
(meta_display_init_window_prop_hooks): initialise new properties
2006-03-25 22:57:22 +00:00
|
|
|
|
2009-01-29 14:32:31 +00:00
|
|
|
while (cursor->property)
|
2008-05-04 17:57:11 +00:00
|
|
|
{
|
2009-06-14 12:37:57 +00:00
|
|
|
/* Doing initial loading doesn't make sense if we just want notification */
|
|
|
|
g_assert (!(hooks->load_initially && hooks->type == META_PROP_VALUE_INVALID));
|
|
|
|
|
2009-01-29 14:32:31 +00:00
|
|
|
/* Atoms are safe to use with GINT_TO_POINTER because it's safe with
|
|
|
|
* anything 32 bits or less, and atoms are 32 bits with the top three
|
|
|
|
* bits clear. (Scheifler & Gettys, 2e, p372)
|
|
|
|
*/
|
|
|
|
g_hash_table_insert (display->prop_hooks,
|
|
|
|
GINT_TO_POINTER (cursor->property),
|
|
|
|
cursor);
|
|
|
|
cursor++;
|
2008-05-04 17:57:11 +00:00
|
|
|
}
|
2009-06-14 12:37:57 +00:00
|
|
|
display->n_prop_hooks = cursor - table;
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_display_free_window_prop_hooks (MetaDisplay *display)
|
|
|
|
{
|
2009-01-29 14:32:31 +00:00
|
|
|
g_hash_table_unref (display->prop_hooks);
|
2002-11-03 23:42:21 +00:00
|
|
|
display->prop_hooks = NULL;
|
2009-01-29 14:32:31 +00:00
|
|
|
|
|
|
|
g_free (display->prop_hooks_table);
|
2009-02-01 20:47:33 +00:00
|
|
|
display->prop_hooks_table = NULL;
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static MetaWindowPropHooks*
|
|
|
|
find_hooks (MetaDisplay *display,
|
|
|
|
Atom property)
|
|
|
|
{
|
2009-01-29 14:32:31 +00:00
|
|
|
return g_hash_table_lookup (display->prop_hooks,
|
|
|
|
GINT_TO_POINTER (property));
|
2002-11-03 23:42:21 +00:00
|
|
|
}
|