2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
2005-10-08 15:38:54 -04:00
|
|
|
* Copyright (C) 2005 Elijah Newren
|
2001-05-30 11:36:31 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2013-03-11 11:52:36 -04:00
|
|
|
/**
|
|
|
|
* SECTION:util
|
|
|
|
* @title: Utility functions
|
|
|
|
* @short_description: Miscellaneous utility functions
|
|
|
|
*/
|
|
|
|
|
2008-02-26 23:39:10 -05:00
|
|
|
#define _GNU_SOURCE
|
2008-11-23 13:53:55 -05:00
|
|
|
#define _POSIX_C_SOURCE 200112L /* for fdopen() */
|
2008-02-26 23:39:10 -05:00
|
|
|
|
2002-03-04 21:43:22 -05:00
|
|
|
#include <config.h>
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/common.h>
|
2013-09-11 04:18:53 -04:00
|
|
|
#include "util-private.h"
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/main.h>
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2009-09-25 15:47:22 -04:00
|
|
|
#include <clutter/clutter.h> /* For clutter_threads_add_repaint_func() */
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
#include <stdio.h>
|
2001-05-30 23:30:58 -04:00
|
|
|
#include <stdlib.h>
|
2001-09-10 23:54:54 -04:00
|
|
|
#include <unistd.h>
|
2002-03-04 21:43:22 -05:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2006-01-13 16:36:10 -05:00
|
|
|
#include <X11/Xlib.h> /* must explicitly be included for Solaris; #326746 */
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
#include <X11/Xutil.h> /* Just for the definition of the various gravities */
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2010-07-12 07:14:26 -04:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2010-06-02 09:26:53 -04:00
|
|
|
static void
|
|
|
|
meta_topic_real_valist (MetaDebugTopic topic,
|
|
|
|
const char *format,
|
|
|
|
va_list args);
|
2010-07-12 07:14:26 -04:00
|
|
|
#endif
|
2010-06-02 09:26:53 -04:00
|
|
|
|
|
|
|
static gint verbose_topics = 0;
|
2001-05-31 02:42:58 -04:00
|
|
|
static gboolean is_debugging = FALSE;
|
2002-06-08 19:55:27 -04:00
|
|
|
static gboolean replace_current = FALSE;
|
2001-06-10 15:23:28 -04:00
|
|
|
static int no_prefix = 0;
|
2013-05-02 19:57:28 -04:00
|
|
|
static gboolean is_wayland_compositor = FALSE;
|
2002-12-08 21:53:16 -05:00
|
|
|
|
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 01:47:51 -04:00
|
|
|
static FILE* logfile = NULL;
|
|
|
|
|
|
|
|
static void
|
|
|
|
ensure_logfile (void)
|
|
|
|
{
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
if (logfile == NULL && g_getenv ("MUTTER_USE_LOGFILE"))
|
2001-06-11 01:47:51 -04:00
|
|
|
{
|
2002-03-04 21:43:22 -05:00
|
|
|
char *filename = NULL;
|
|
|
|
char *tmpl;
|
|
|
|
int fd;
|
|
|
|
GError *err;
|
2001-06-11 01:47:51 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
tmpl = g_strdup_printf ("mutter-%d-debug-log-XXXXXX",
|
2002-03-04 21:43:22 -05:00
|
|
|
(int) getpid ());
|
2001-09-10 22:57:05 -04:00
|
|
|
|
2002-03-04 21:43:22 -05:00
|
|
|
err = NULL;
|
|
|
|
fd = g_file_open_tmp (tmpl,
|
|
|
|
&filename,
|
|
|
|
&err);
|
2001-06-11 01:47:51 -04:00
|
|
|
|
2002-03-04 21:43:22 -05:00
|
|
|
g_free (tmpl);
|
|
|
|
|
|
|
|
if (err != NULL)
|
|
|
|
{
|
2013-09-11 04:37:36 -04:00
|
|
|
meta_warning ("Failed to open debug log: %s\n",
|
2002-03-04 21:43:22 -05:00
|
|
|
err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
logfile = fdopen (fd, "w");
|
|
|
|
|
2001-06-11 01:47:51 -04:00
|
|
|
if (logfile == NULL)
|
2002-03-04 21:43:22 -05:00
|
|
|
{
|
2013-09-11 04:37:36 -04:00
|
|
|
meta_warning ("Failed to fdopen() log file %s: %s\n",
|
2002-03-04 21:43:22 -05:00
|
|
|
filename, strerror (errno));
|
|
|
|
close (fd);
|
|
|
|
}
|
2001-06-11 01:47:51 -04:00
|
|
|
else
|
2002-03-04 21:43:22 -05:00
|
|
|
{
|
2013-09-11 04:37:36 -04:00
|
|
|
g_printerr ("Opened log file %s\n", filename);
|
2002-03-04 21:43:22 -05:00
|
|
|
}
|
2001-06-11 01:47:51 -04:00
|
|
|
|
2002-03-04 21:43:22 -05:00
|
|
|
g_free (filename);
|
2001-06-11 01:47:51 -04:00
|
|
|
}
|
|
|
|
}
|
2002-12-08 21:53:16 -05:00
|
|
|
#endif
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_is_verbose (void)
|
|
|
|
{
|
2010-06-02 09:26:53 -04:00
|
|
|
return verbose_topics != 0;
|
2001-05-30 11:36:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_set_verbose (gboolean setting)
|
|
|
|
{
|
2002-12-08 14:17:17 -05:00
|
|
|
#ifndef WITH_VERBOSE_MODE
|
|
|
|
if (setting)
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
meta_fatal (_("Mutter was compiled without support for verbose mode\n"));
|
2008-02-14 23:37:39 -05:00
|
|
|
#else
|
2001-06-11 01:47:51 -04:00
|
|
|
if (setting)
|
|
|
|
ensure_logfile ();
|
2008-02-14 23:37:39 -05:00
|
|
|
#endif
|
2010-06-02 09:26:53 -04:00
|
|
|
|
|
|
|
if (setting)
|
|
|
|
meta_add_verbose_topic (META_DEBUG_VERBOSE);
|
|
|
|
else
|
|
|
|
meta_remove_verbose_topic (META_DEBUG_VERBOSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_add_verbose_topic:
|
|
|
|
* @topic: Topic for which logging will be started
|
|
|
|
*
|
|
|
|
* Ensure log messages for the given topic @topic
|
|
|
|
* will be printed.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_add_verbose_topic (MetaDebugTopic topic)
|
|
|
|
{
|
|
|
|
if (verbose_topics == META_DEBUG_VERBOSE)
|
|
|
|
return;
|
|
|
|
if (topic == META_DEBUG_VERBOSE)
|
|
|
|
verbose_topics = META_DEBUG_VERBOSE;
|
|
|
|
else
|
|
|
|
verbose_topics |= topic;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_remove_verbose_topic:
|
|
|
|
* @topic: Topic for which logging will be stopped
|
|
|
|
*
|
|
|
|
* Stop printing log messages for the given topic @topic. Note
|
|
|
|
* that this method does not stack with meta_add_verbose_topic();
|
|
|
|
* i.e. if two calls to meta_add_verbose_topic() for the same
|
|
|
|
* topic are made, one call to meta_remove_verbose_topic() will
|
|
|
|
* remove it.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_remove_verbose_topic (MetaDebugTopic topic)
|
|
|
|
{
|
|
|
|
if (topic == META_DEBUG_VERBOSE)
|
|
|
|
verbose_topics = 0;
|
|
|
|
else
|
|
|
|
verbose_topics &= ~topic;
|
2001-05-30 11:36:31 -04:00
|
|
|
}
|
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
gboolean
|
|
|
|
meta_is_debugging (void)
|
|
|
|
{
|
|
|
|
return is_debugging;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_set_debugging (gboolean setting)
|
|
|
|
{
|
2008-02-14 23:37:39 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 01:47:51 -04:00
|
|
|
if (setting)
|
|
|
|
ensure_logfile ();
|
2008-02-14 23:37:39 -05:00
|
|
|
#endif
|
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
is_debugging = setting;
|
|
|
|
}
|
|
|
|
|
2002-06-08 19:55:27 -04:00
|
|
|
gboolean
|
|
|
|
meta_get_replace_current_wm (void)
|
|
|
|
{
|
|
|
|
return replace_current;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_set_replace_current_wm (gboolean setting)
|
|
|
|
{
|
|
|
|
replace_current = setting;
|
|
|
|
}
|
|
|
|
|
2013-05-02 19:57:28 -04:00
|
|
|
gboolean
|
|
|
|
meta_is_wayland_compositor (void)
|
|
|
|
{
|
|
|
|
return is_wayland_compositor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_set_is_wayland_compositor (gboolean value)
|
|
|
|
{
|
|
|
|
is_wayland_compositor = value;
|
|
|
|
}
|
|
|
|
|
2005-10-03 14:13:45 -04:00
|
|
|
char *
|
|
|
|
meta_g_utf8_strndup (const gchar *src,
|
|
|
|
gsize n)
|
|
|
|
{
|
|
|
|
const gchar *s = src;
|
|
|
|
while (n && *s)
|
|
|
|
{
|
|
|
|
s = g_utf8_next_char (s);
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_strndup (src, s - src);
|
|
|
|
}
|
|
|
|
|
2002-08-24 16:54:23 -04:00
|
|
|
static int
|
|
|
|
utf8_fputs (const char *str,
|
|
|
|
FILE *f)
|
|
|
|
{
|
|
|
|
char *l;
|
2002-11-30 22:58:04 -05:00
|
|
|
int retval;
|
|
|
|
|
2002-08-24 16:54:23 -04:00
|
|
|
l = g_locale_from_utf8 (str, -1, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
if (l == NULL)
|
2002-11-30 22:58:04 -05:00
|
|
|
retval = fputs (str, f); /* just print it anyway, better than nothing */
|
2002-08-24 16:54:23 -04:00
|
|
|
else
|
2002-11-30 22:58:04 -05:00
|
|
|
retval = fputs (l, f);
|
2002-08-24 16:54:23 -04:00
|
|
|
|
|
|
|
g_free (l);
|
2002-11-30 22:58:04 -05:00
|
|
|
|
|
|
|
return retval;
|
2002-08-24 16:54:23 -04:00
|
|
|
}
|
|
|
|
|
2011-08-30 12:54:49 -04:00
|
|
|
/**
|
|
|
|
* meta_free_gslist_and_elements: (skip)
|
2013-02-15 13:42:08 -05:00
|
|
|
* @list_to_deep_free: list to deep free
|
2011-08-30 15:12:09 -04:00
|
|
|
*
|
2011-08-30 12:54:49 -04:00
|
|
|
*/
|
Patch from Carlo Wood to fix handling of unidirectional maximization and
2007-04-02 Elijah Newren <newren gmail com>
Patch from Carlo Wood to fix handling of unidirectional
maximization and partial struts. #358311.
* src/constraints.c (constrain_maximization):
determine target size for unidirectionally maximized windows by
determining how far they can be maximized without hitting
orthogonal struts. Avoids weird "empty spaces".
* src/boxes.[ch] (meta_rectangle_expand_to_avoiding_struts):
new function
2007-04-02 Elijah Newren <newren gmail com>
Make the strut lists (stored in workspaces) record both the
rectangle and the side that the strut is on. Lots of code
cleanups relating to struts.
* src/boxes.h (struct MetaStrut):
new struct for struts
* src/window.[ch] (struct MetaStruts, struct MetaWindow,
meta_window_update_struts):
overhaul to make window's struts remember their side as well as
their rectangular location, and just use a list instead of several
copies of near-identical code for left/right/top/bottom (allowing
us to nuke MetaStruts struct as well)
* src/testboxes.c (new_meta_strut, get_strut_list):
* src/workspace.c (ensure_work_areas_validated):
* src/boxes.c (meta_rectangle_get_minimal_spanning_set_for_region,
meta_rectangle_expand_to_avoiding_struts,
get_disjoint_strut_rect_list_in_region, fix_up_edges,
meta_rectangle_find_onscreen_edges,
meta_rectangle_find_nonintersected_xinerama_edges):
modify to handle struts being rectangle + side instead of just rectangle
* src/workspace.c (ensure_work_areas_validated):
simplify strut list creation considerably given MetaWindow change,
modify work_area computations to take advantage of region
computations being done (makes the code shorter as well as more
robust against pathological cases).
* src/util.[ch] (meta_free_gslist_and_elements):
new convenience function
* src/common.h (enum MetaDirection):
* src/edge-resistance.c (movement_towards_edge):
* src/boxes.c (meta_rectangle_edge_aligns,
rectangle_and_edge_intersection, split_edge):
Add more MetaDirection fields for convenience
* src/boxes.h (enum FixedDirections):
* src/constraints.c (setup_constraint_info, place_window_if_needed):
add a FIXED_DIRECTION_NONE to the FixedDirections enum to make
code more clear
svn path=/trunk/; revision=3144
2007-04-02 23:41:10 -04:00
|
|
|
void
|
|
|
|
meta_free_gslist_and_elements (GSList *list_to_deep_free)
|
|
|
|
{
|
|
|
|
g_slist_foreach (list_to_deep_free,
|
|
|
|
(void (*)(gpointer,gpointer))&g_free, /* ew, for ugly */
|
|
|
|
NULL);
|
|
|
|
g_slist_free (list_to_deep_free);
|
|
|
|
}
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-05-30 11:36:31 -04:00
|
|
|
void
|
2002-12-08 14:17:17 -05:00
|
|
|
meta_debug_spew_real (const char *format, ...)
|
2001-05-30 11:36:31 -04:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 01:47:51 -04:00
|
|
|
FILE *out;
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
if (!is_debugging)
|
2001-05-30 11:36:31 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2001-06-11 01:47:51 -04:00
|
|
|
out = logfile ? logfile : stderr;
|
|
|
|
|
2001-06-10 15:23:28 -04:00
|
|
|
if (no_prefix == 0)
|
2013-09-11 04:37:36 -04:00
|
|
|
utf8_fputs ("Window manager: ", out);
|
2002-08-24 16:54:23 -04:00
|
|
|
utf8_fputs (str, out);
|
2001-06-21 02:08:35 -04:00
|
|
|
|
|
|
|
fflush (out);
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
g_free (str);
|
|
|
|
}
|
2002-12-08 14:17:17 -05:00
|
|
|
#endif /* WITH_VERBOSE_MODE */
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-05-30 11:36:31 -04:00
|
|
|
void
|
2002-12-08 14:17:17 -05:00
|
|
|
meta_verbose_real (const char *format, ...)
|
2001-05-30 11:36:31 -04:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, format);
|
2010-06-02 09:26:53 -04:00
|
|
|
meta_topic_real_valist (META_DEBUG_VERBOSE, format, args);
|
2001-05-30 11:36:31 -04:00
|
|
|
va_end (args);
|
|
|
|
}
|
2002-12-08 14:17:17 -05:00
|
|
|
#endif /* WITH_VERBOSE_MODE */
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2002-01-03 18:28:19 -05:00
|
|
|
static const char*
|
|
|
|
topic_name (MetaDebugTopic topic)
|
|
|
|
{
|
|
|
|
switch (topic)
|
|
|
|
{
|
|
|
|
case META_DEBUG_FOCUS:
|
|
|
|
return "FOCUS";
|
2002-02-07 22:34:26 -05:00
|
|
|
case META_DEBUG_WORKAREA:
|
|
|
|
return "WORKAREA";
|
|
|
|
case META_DEBUG_STACK:
|
|
|
|
return "STACK";
|
|
|
|
case META_DEBUG_THEMES:
|
|
|
|
return "THEMES";
|
|
|
|
case META_DEBUG_SM:
|
|
|
|
return "SM";
|
|
|
|
case META_DEBUG_EVENTS:
|
|
|
|
return "EVENTS";
|
|
|
|
case META_DEBUG_WINDOW_STATE:
|
|
|
|
return "WINDOW_STATE";
|
|
|
|
case META_DEBUG_WINDOW_OPS:
|
|
|
|
return "WINDOW_OPS";
|
|
|
|
case META_DEBUG_PLACEMENT:
|
|
|
|
return "PLACEMENT";
|
|
|
|
case META_DEBUG_GEOMETRY:
|
|
|
|
return "GEOMETRY";
|
2002-03-02 10:26:07 -05:00
|
|
|
case META_DEBUG_PING:
|
|
|
|
return "PING";
|
2002-04-21 15:35:02 -04:00
|
|
|
case META_DEBUG_XINERAMA:
|
|
|
|
return "XINERAMA";
|
2002-04-28 00:52:26 -04:00
|
|
|
case META_DEBUG_KEYBINDINGS:
|
|
|
|
return "KEYBINDINGS";
|
2002-10-21 17:44:35 -04:00
|
|
|
case META_DEBUG_SYNC:
|
|
|
|
return "SYNC";
|
|
|
|
case META_DEBUG_ERRORS:
|
|
|
|
return "ERRORS";
|
2002-10-25 19:35:50 -04:00
|
|
|
case META_DEBUG_STARTUP:
|
|
|
|
return "STARTUP";
|
2002-11-03 14:06:39 -05:00
|
|
|
case META_DEBUG_PREFS:
|
|
|
|
return "PREFS";
|
2002-11-30 22:58:04 -05:00
|
|
|
case META_DEBUG_GROUPS:
|
|
|
|
return "GROUPS";
|
2002-12-09 22:23:04 -05:00
|
|
|
case META_DEBUG_RESIZING:
|
|
|
|
return "RESIZING";
|
2003-01-05 02:51:02 -05:00
|
|
|
case META_DEBUG_SHAPES:
|
|
|
|
return "SHAPES";
|
2003-12-25 19:05:26 -05:00
|
|
|
case META_DEBUG_COMPOSITOR:
|
|
|
|
return "COMPOSITOR";
|
2006-03-16 21:55:21 -05:00
|
|
|
case META_DEBUG_EDGE_RESISTANCE:
|
|
|
|
return "EDGE_RESISTANCE";
|
2013-07-19 08:39:28 -04:00
|
|
|
case META_DEBUG_DBUS:
|
|
|
|
return "DBUS";
|
2010-06-02 09:26:53 -04:00
|
|
|
case META_DEBUG_VERBOSE:
|
|
|
|
return "VERBOSE";
|
2002-01-03 18:28:19 -05:00
|
|
|
}
|
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
return "WM";
|
2002-01-03 18:28:19 -05:00
|
|
|
}
|
|
|
|
|
2002-11-03 19:56:12 -05:00
|
|
|
static int sync_count = 0;
|
|
|
|
|
2010-06-02 09:26:53 -04:00
|
|
|
static void
|
|
|
|
meta_topic_real_valist (MetaDebugTopic topic,
|
|
|
|
const char *format,
|
|
|
|
va_list args)
|
2002-01-03 18:28:19 -05:00
|
|
|
{
|
|
|
|
gchar *str;
|
|
|
|
FILE *out;
|
|
|
|
|
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
|
2010-06-02 09:26:53 -04:00
|
|
|
if (verbose_topics == 0
|
|
|
|
|| (topic == META_DEBUG_VERBOSE && verbose_topics != META_DEBUG_VERBOSE)
|
|
|
|
|| (!(verbose_topics & topic)))
|
2002-01-03 18:28:19 -05:00
|
|
|
return;
|
2010-06-02 09:26:53 -04:00
|
|
|
|
2002-01-03 18:28:19 -05:00
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
|
|
|
|
out = logfile ? logfile : stderr;
|
|
|
|
|
|
|
|
if (no_prefix == 0)
|
|
|
|
fprintf (out, "%s: ", topic_name (topic));
|
2002-11-03 19:56:12 -05:00
|
|
|
|
|
|
|
if (topic == META_DEBUG_SYNC)
|
|
|
|
{
|
|
|
|
++sync_count;
|
|
|
|
fprintf (out, "%d: ", sync_count);
|
|
|
|
}
|
|
|
|
|
2002-08-24 16:54:23 -04:00
|
|
|
utf8_fputs (str, out);
|
2002-01-03 18:28:19 -05:00
|
|
|
|
|
|
|
fflush (out);
|
|
|
|
|
|
|
|
g_free (str);
|
|
|
|
}
|
2010-06-02 09:26:53 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_topic_real (MetaDebugTopic topic,
|
|
|
|
const char *format,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
meta_topic_real_valist (topic, format, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
2002-12-08 14:17:17 -05:00
|
|
|
#endif /* WITH_VERBOSE_MODE */
|
2002-01-03 18:28:19 -05:00
|
|
|
|
2001-05-30 23:30:58 -04:00
|
|
|
void
|
|
|
|
meta_bug (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 01:47:51 -04:00
|
|
|
FILE *out;
|
2001-05-30 23:30:58 -04:00
|
|
|
|
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2008-02-14 23:37:39 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 01:47:51 -04:00
|
|
|
out = logfile ? logfile : stderr;
|
2008-02-14 23:37:39 -05:00
|
|
|
#else
|
|
|
|
out = stderr;
|
|
|
|
#endif
|
|
|
|
|
2001-06-10 15:23:28 -04:00
|
|
|
if (no_prefix == 0)
|
2013-09-11 04:37:36 -04:00
|
|
|
utf8_fputs ("Bug in window manager: ", out);
|
2002-08-24 16:54:23 -04:00
|
|
|
utf8_fputs (str, out);
|
2001-06-21 02:08:35 -04:00
|
|
|
|
|
|
|
fflush (out);
|
2001-05-30 23:30:58 -04:00
|
|
|
|
|
|
|
g_free (str);
|
2002-07-23 15:12:02 -04:00
|
|
|
|
2001-05-30 23:30:58 -04:00
|
|
|
/* stop us in a debugger */
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
void
|
|
|
|
meta_warning (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 01:47:51 -04:00
|
|
|
FILE *out;
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2008-02-14 23:37:39 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 01:47:51 -04:00
|
|
|
out = logfile ? logfile : stderr;
|
2008-02-14 23:37:39 -05:00
|
|
|
#else
|
|
|
|
out = stderr;
|
|
|
|
#endif
|
|
|
|
|
2001-06-10 15:23:28 -04:00
|
|
|
if (no_prefix == 0)
|
2013-09-11 04:37:36 -04:00
|
|
|
utf8_fputs ("Window manager warning: ", out);
|
2002-08-24 16:54:23 -04:00
|
|
|
utf8_fputs (str, out);
|
2002-10-21 17:44:35 -04:00
|
|
|
|
|
|
|
fflush (out);
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
g_free (str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_fatal (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 01:47:51 -04:00
|
|
|
FILE *out;
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2008-02-14 23:37:39 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 01:47:51 -04:00
|
|
|
out = logfile ? logfile : stderr;
|
2008-02-14 23:37:39 -05:00
|
|
|
#else
|
|
|
|
out = stderr;
|
|
|
|
#endif
|
|
|
|
|
2001-06-10 15:23:28 -04:00
|
|
|
if (no_prefix == 0)
|
2013-09-11 04:37:36 -04:00
|
|
|
utf8_fputs ("Window manager error: ", out);
|
2002-08-24 16:54:23 -04:00
|
|
|
utf8_fputs (str, out);
|
2001-06-21 02:08:35 -04:00
|
|
|
|
|
|
|
fflush (out);
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
meta_exit (META_EXIT_ERROR);
|
|
|
|
}
|
2001-06-10 15:23:28 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_push_no_msg_prefix (void)
|
|
|
|
{
|
|
|
|
++no_prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_pop_no_msg_prefix (void)
|
|
|
|
{
|
|
|
|
g_return_if_fail (no_prefix > 0);
|
|
|
|
|
|
|
|
--no_prefix;
|
|
|
|
}
|
2002-01-27 21:09:12 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_exit (MetaExitCode code)
|
|
|
|
{
|
|
|
|
|
|
|
|
exit (code);
|
|
|
|
}
|
2002-08-12 17:32:13 -04:00
|
|
|
|
|
|
|
gint
|
|
|
|
meta_unsigned_long_equal (gconstpointer v1,
|
|
|
|
gconstpointer v2)
|
|
|
|
{
|
|
|
|
return *((const gulong*) v1) == *((const gulong*) v2);
|
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
meta_unsigned_long_hash (gconstpointer v)
|
|
|
|
{
|
|
|
|
gulong val = * (const gulong *) v;
|
|
|
|
|
|
|
|
/* I'm not sure this works so well. */
|
A load of fixes of issues reported by sparse. Closes bug #152849
2004-09-17 Kjartan Maraas <kmaraas@gnome.org>
* src/bell.c: (meta_bell_flash_screen):
* src/compositor.c:
* src/effects.c: (meta_effects_draw_box_animation):
* src/fixedtip.c: (meta_fixed_tip_show):
* src/frame.c: (find_argb_visual):
* src/frames.c: (unsigned_long_hash), (meta_frames_manage_window),
(meta_frames_apply_shapes):
* src/iconcache.c: (find_largest_sizes), (find_best_size):
* src/keybindings.c: (meta_spawn_command_line_async_on_screen):
* src/main.c: (main):
* src/menu.c: (meta_window_menu_new):
* src/prefs.c: (meta_prefs_get_visual_bell),
(meta_prefs_bell_is_audible), (meta_prefs_get_visual_bell_type),
(meta_prefs_get_action_double_click_titlebar),
(meta_prefs_get_auto_raise), (meta_prefs_get_auto_raise_delay),
(meta_prefs_get_reduced_resources):
* src/screen.c: (meta_create_offscreen_window):
* src/tabpopup.c: (meta_ui_tab_popup_get_selected):
* src/theme-parser.c: (meta_theme_load):
* src/theme.c: (meta_gtk_widget_get_font_desc):
* src/tools/metacity-mag.c: (mouse_press), (begin_area_grab):
* src/util.c: (meta_unsigned_long_hash): A load of fixes of issues
reported by sparse. Closes bug #152849
2004-09-16 19:18:22 -04:00
|
|
|
#if GLIB_SIZEOF_LONG > 4
|
2002-08-12 17:32:13 -04:00
|
|
|
return (guint) (val ^ (val >> 32));
|
|
|
|
#else
|
|
|
|
return val;
|
|
|
|
#endif
|
|
|
|
}
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
|
|
|
|
const char*
|
|
|
|
meta_gravity_to_string (int gravity)
|
|
|
|
{
|
|
|
|
switch (gravity)
|
|
|
|
{
|
|
|
|
case NorthWestGravity:
|
|
|
|
return "NorthWestGravity";
|
|
|
|
break;
|
|
|
|
case NorthGravity:
|
|
|
|
return "NorthGravity";
|
|
|
|
break;
|
|
|
|
case NorthEastGravity:
|
|
|
|
return "NorthEastGravity";
|
|
|
|
break;
|
|
|
|
case WestGravity:
|
|
|
|
return "WestGravity";
|
|
|
|
break;
|
|
|
|
case CenterGravity:
|
|
|
|
return "CenterGravity";
|
|
|
|
break;
|
|
|
|
case EastGravity:
|
|
|
|
return "EastGravity";
|
|
|
|
break;
|
|
|
|
case SouthWestGravity:
|
|
|
|
return "SouthWestGravity";
|
|
|
|
break;
|
|
|
|
case SouthGravity:
|
|
|
|
return "SouthGravity";
|
|
|
|
break;
|
|
|
|
case SouthEastGravity:
|
|
|
|
return "SouthEastGravity";
|
|
|
|
break;
|
|
|
|
case StaticGravity:
|
|
|
|
return "StaticGravity";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return "NorthWestGravity";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-11-08 13:51:56 -05:00
|
|
|
|
2012-08-28 09:28:11 -04:00
|
|
|
char*
|
|
|
|
meta_external_binding_name_for_action (guint keybinding_action)
|
|
|
|
{
|
|
|
|
return g_strdup_printf ("external-grab-%u", keybinding_action);
|
|
|
|
}
|
|
|
|
|
2012-09-19 08:29:06 -04:00
|
|
|
static gboolean
|
|
|
|
zenity_supports_option (const char *section, const char *option)
|
|
|
|
{
|
|
|
|
char *command, *out;
|
|
|
|
gboolean rv;
|
|
|
|
|
|
|
|
command = g_strdup_printf ("zenity %s", section);
|
|
|
|
g_spawn_command_line_sync (command, &out, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
rv = (out && strstr (out, option));
|
|
|
|
|
|
|
|
g_free (command);
|
|
|
|
g_free (out);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2011-05-02 14:38:13 -04:00
|
|
|
/* Command line arguments are passed in the locale encoding; in almost
|
|
|
|
* all cases, we'd hope that is UTF-8 and no conversion is necessary.
|
|
|
|
* If it's not UTF-8, then it's possible that the message isn't
|
|
|
|
* representable in the locale encoding.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
append_argument (GPtrArray *args,
|
|
|
|
const char *arg)
|
|
|
|
{
|
|
|
|
char *locale_arg = g_locale_from_utf8 (arg, -1, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
/* This is cheesy, but it's better to have a few ???'s in the dialog
|
|
|
|
* for an unresponsive application than no dialog at all appear */
|
|
|
|
if (!locale_arg)
|
|
|
|
locale_arg = g_strdup ("???");
|
|
|
|
|
|
|
|
g_ptr_array_add (args, locale_arg);
|
|
|
|
}
|
|
|
|
|
2011-08-30 12:54:49 -04:00
|
|
|
/**
|
|
|
|
* meta_show_dialog: (skip)
|
2013-02-15 13:42:08 -05:00
|
|
|
* @type: type of dialog
|
|
|
|
* @message: message
|
|
|
|
* @timeout: timeout
|
|
|
|
* @display: display
|
|
|
|
* @ok_text: text for Ok button
|
|
|
|
* @cancel_text: text for Cancel button
|
|
|
|
* @icon_name: icon name
|
|
|
|
* @transient_for: window XID of parent
|
|
|
|
* @columns: columns
|
|
|
|
* @entries: entries
|
2011-08-30 15:12:09 -04:00
|
|
|
*
|
2011-08-30 12:54:49 -04:00
|
|
|
*/
|
2009-05-05 09:57:58 -04:00
|
|
|
GPid
|
2008-11-08 13:51:56 -05:00
|
|
|
meta_show_dialog (const char *type,
|
|
|
|
const char *message,
|
|
|
|
const char *timeout,
|
2011-03-17 09:54:47 -04:00
|
|
|
const char *display,
|
2009-05-05 09:57:58 -04:00
|
|
|
const char *ok_text,
|
|
|
|
const char *cancel_text,
|
2012-09-18 16:57:26 -04:00
|
|
|
const char *icon_name,
|
2009-05-05 09:57:58 -04:00
|
|
|
const int transient_for,
|
|
|
|
GSList *columns,
|
|
|
|
GSList *entries)
|
2008-11-08 13:51:56 -05:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
2009-05-05 09:57:58 -04:00
|
|
|
GSList *tmp;
|
2008-11-08 13:51:56 -05:00
|
|
|
GPid child_pid;
|
2011-05-02 14:38:13 -04:00
|
|
|
GPtrArray *args;
|
|
|
|
|
|
|
|
args = g_ptr_array_new ();
|
|
|
|
|
|
|
|
append_argument (args, "zenity");
|
|
|
|
append_argument (args, type);
|
2013-07-29 04:12:24 -04:00
|
|
|
|
|
|
|
if (display)
|
|
|
|
{
|
|
|
|
append_argument (args, "--display");
|
|
|
|
append_argument (args, display);
|
|
|
|
}
|
|
|
|
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, "--class");
|
|
|
|
append_argument (args, "mutter-dialog");
|
|
|
|
append_argument (args, "--title");
|
2011-09-04 11:24:32 -04:00
|
|
|
append_argument (args, "");
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, "--text");
|
|
|
|
append_argument (args, message);
|
|
|
|
|
2008-11-08 13:51:56 -05:00
|
|
|
if (timeout)
|
|
|
|
{
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, "--timeout");
|
|
|
|
append_argument (args, timeout);
|
2008-11-08 13:51:56 -05:00
|
|
|
}
|
|
|
|
|
2009-05-05 09:57:58 -04:00
|
|
|
if (ok_text)
|
|
|
|
{
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, "--ok-label");
|
|
|
|
append_argument (args, ok_text);
|
2009-05-05 09:57:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cancel_text)
|
|
|
|
{
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, "--cancel-label");
|
|
|
|
append_argument (args, cancel_text);
|
2009-05-05 09:57:58 -04:00
|
|
|
}
|
2011-05-02 14:38:13 -04:00
|
|
|
|
2012-09-18 16:57:26 -04:00
|
|
|
if (icon_name)
|
|
|
|
{
|
2012-09-19 08:29:06 -04:00
|
|
|
char *option = g_strdup_printf ("--help%s", type + 1);
|
|
|
|
if (zenity_supports_option (option, "--icon-name"))
|
|
|
|
{
|
|
|
|
append_argument (args, "--icon-name");
|
|
|
|
append_argument (args, icon_name);
|
|
|
|
}
|
|
|
|
g_free (option);
|
2012-09-18 16:57:26 -04:00
|
|
|
}
|
|
|
|
|
2009-05-05 09:57:58 -04:00
|
|
|
tmp = columns;
|
|
|
|
while (tmp)
|
|
|
|
{
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, "--column");
|
|
|
|
append_argument (args, tmp->data);
|
2009-05-05 09:57:58 -04:00
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = entries;
|
|
|
|
while (tmp)
|
|
|
|
{
|
2011-05-02 14:38:13 -04:00
|
|
|
append_argument (args, tmp->data);
|
2009-05-05 09:57:58 -04:00
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
2011-05-02 14:38:13 -04:00
|
|
|
|
2009-05-05 09:57:58 -04:00
|
|
|
if (transient_for)
|
|
|
|
{
|
|
|
|
gchar *env = g_strdup_printf("%d", transient_for);
|
|
|
|
setenv ("WINDOWID", env, 1);
|
|
|
|
g_free (env);
|
2012-09-18 15:20:33 -04:00
|
|
|
|
2012-09-19 08:29:06 -04:00
|
|
|
if (zenity_supports_option ("--help-general", "--modal"))
|
|
|
|
append_argument (args, "--modal");
|
2009-05-05 09:57:58 -04:00
|
|
|
}
|
|
|
|
|
2012-09-18 15:20:33 -04:00
|
|
|
g_ptr_array_add (args, NULL); /* NULL-terminate */
|
|
|
|
|
2009-05-05 09:57:58 -04:00
|
|
|
g_spawn_async (
|
|
|
|
"/",
|
2011-05-02 14:38:13 -04:00
|
|
|
(gchar**) args->pdata,
|
2009-05-05 09:57:58 -04:00
|
|
|
NULL,
|
|
|
|
G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD,
|
|
|
|
NULL, NULL,
|
|
|
|
&child_pid,
|
|
|
|
&error
|
|
|
|
);
|
|
|
|
|
|
|
|
if (transient_for)
|
|
|
|
unsetenv ("WINDOWID");
|
2008-11-08 13:51:56 -05:00
|
|
|
|
2011-05-02 14:38:13 -04:00
|
|
|
g_ptr_array_free (args, TRUE);
|
2008-11-08 13:51:56 -05:00
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
meta_warning ("%s\n", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
2009-05-05 09:57:58 -04:00
|
|
|
|
|
|
|
return child_pid;
|
|
|
|
}
|
|
|
|
|
2009-09-25 15:47:22 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* Later functions: like idles but integrated with the Clutter repaint loop
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
static guint last_later_id = 0;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint id;
|
2011-03-29 15:18:57 -04:00
|
|
|
guint ref_count;
|
2009-09-25 15:47:22 -04:00
|
|
|
MetaLaterType when;
|
|
|
|
GSourceFunc func;
|
|
|
|
gpointer data;
|
|
|
|
GDestroyNotify notify;
|
|
|
|
int source;
|
|
|
|
gboolean run_once;
|
|
|
|
} MetaLater;
|
|
|
|
|
|
|
|
static GSList *laters = NULL;
|
|
|
|
/* This is a dummy timeline used to get the Clutter master clock running */
|
|
|
|
static ClutterTimeline *later_timeline;
|
|
|
|
static guint later_repaint_func = 0;
|
|
|
|
|
|
|
|
static void ensure_later_repaint_func (void);
|
|
|
|
|
2011-03-29 15:18:57 -04:00
|
|
|
static void
|
|
|
|
unref_later (MetaLater *later)
|
|
|
|
{
|
|
|
|
if (--later->ref_count == 0)
|
|
|
|
{
|
|
|
|
if (later->notify)
|
|
|
|
{
|
|
|
|
later->notify (later->data);
|
|
|
|
later->notify = NULL;
|
|
|
|
}
|
|
|
|
g_slice_free (MetaLater, later);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-25 15:47:22 -04:00
|
|
|
static void
|
|
|
|
destroy_later (MetaLater *later)
|
|
|
|
{
|
|
|
|
if (later->source)
|
2011-03-29 15:18:57 -04:00
|
|
|
{
|
|
|
|
g_source_remove (later->source);
|
|
|
|
later->source = 0;
|
|
|
|
}
|
|
|
|
later->func = NULL;
|
|
|
|
unref_later (later);
|
2009-09-25 15:47:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Used to sort the list of laters with the highest priority
|
|
|
|
* functions first.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
compare_laters (gconstpointer a,
|
|
|
|
gconstpointer b)
|
|
|
|
{
|
|
|
|
return ((const MetaLater *)a)->when - ((const MetaLater *)b)->when;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
run_repaint_laters (gpointer data)
|
|
|
|
{
|
2011-03-29 15:18:57 -04:00
|
|
|
GSList *laters_copy;
|
2009-09-25 15:47:22 -04:00
|
|
|
GSList *l;
|
|
|
|
gboolean keep_timeline_running = FALSE;
|
|
|
|
|
2011-03-29 15:18:57 -04:00
|
|
|
laters_copy = NULL;
|
|
|
|
for (l = laters; l; l = l->next)
|
2009-09-25 15:47:22 -04:00
|
|
|
{
|
|
|
|
MetaLater *later = l->data;
|
|
|
|
if (later->source == 0 ||
|
|
|
|
(later->when <= META_LATER_BEFORE_REDRAW && !later->run_once))
|
|
|
|
{
|
2011-03-29 15:18:57 -04:00
|
|
|
later->ref_count++;
|
|
|
|
laters_copy = g_slist_prepend (laters_copy, later);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
laters_copy = g_slist_reverse (laters_copy);
|
|
|
|
|
|
|
|
for (l = laters_copy; l; l = l->next)
|
|
|
|
{
|
|
|
|
MetaLater *later = l->data;
|
|
|
|
|
|
|
|
if (later->func && later->func (later->data))
|
|
|
|
{
|
|
|
|
if (later->source == 0)
|
|
|
|
keep_timeline_running = TRUE;
|
2009-09-25 15:47:22 -04:00
|
|
|
}
|
|
|
|
else
|
2011-03-29 15:18:57 -04:00
|
|
|
meta_later_remove (later->id);
|
|
|
|
unref_later (later);
|
2009-09-25 15:47:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!keep_timeline_running)
|
|
|
|
clutter_timeline_stop (later_timeline);
|
|
|
|
|
2011-03-29 15:18:57 -04:00
|
|
|
g_slist_free (laters_copy);
|
2009-09-25 15:47:22 -04:00
|
|
|
|
|
|
|
/* Just keep the repaint func around - it's cheap if the list is empty */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ensure_later_repaint_func (void)
|
|
|
|
{
|
|
|
|
if (!later_timeline)
|
2009-10-02 16:12:11 -04:00
|
|
|
later_timeline = clutter_timeline_new (G_MAXUINT);
|
2009-09-25 15:47:22 -04:00
|
|
|
|
|
|
|
if (later_repaint_func == 0)
|
|
|
|
later_repaint_func = clutter_threads_add_repaint_func (run_repaint_laters,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
/* Make sure the repaint function gets run */
|
|
|
|
clutter_timeline_start (later_timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
call_idle_later (gpointer data)
|
|
|
|
{
|
|
|
|
MetaLater *later = data;
|
|
|
|
|
|
|
|
if (!later->func (later->data))
|
|
|
|
{
|
2011-03-29 15:18:57 -04:00
|
|
|
meta_later_remove (later->id);
|
2009-09-25 15:47:22 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
later->run_once = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_later_add:
|
|
|
|
* @when: enumeration value determining the phase at which to run the callback
|
|
|
|
* @func: callback to run later
|
|
|
|
* @data: data to pass to the callback
|
|
|
|
* @notify: function to call to destroy @data when it is no longer in use, or %NULL
|
|
|
|
*
|
|
|
|
* Sets up a callback to be called at some later time. @when determines the
|
|
|
|
* particular later occasion at which it is called. This is much like g_idle_add(),
|
|
|
|
* except that the functions interact properly with clutter event handling.
|
|
|
|
* If a "later" function is added from a clutter event handler, and is supposed
|
|
|
|
* to be run before the stage is redrawn, it will be run before that redraw
|
|
|
|
* of the stage, not the next one.
|
|
|
|
*
|
|
|
|
* Return value: an integer ID (guaranteed to be non-zero) that can be used
|
|
|
|
* to cancel the callback and prevent it from being run.
|
|
|
|
*/
|
|
|
|
guint
|
|
|
|
meta_later_add (MetaLaterType when,
|
|
|
|
GSourceFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify notify)
|
|
|
|
{
|
|
|
|
MetaLater *later = g_slice_new0 (MetaLater);
|
|
|
|
|
|
|
|
later->id = ++last_later_id;
|
2011-03-29 15:18:57 -04:00
|
|
|
later->ref_count = 1;
|
2009-09-25 15:47:22 -04:00
|
|
|
later->when = when;
|
|
|
|
later->func = func;
|
|
|
|
later->data = data;
|
|
|
|
later->notify = notify;
|
|
|
|
|
|
|
|
laters = g_slist_insert_sorted (laters, later, compare_laters);
|
|
|
|
|
|
|
|
switch (when)
|
|
|
|
{
|
|
|
|
case META_LATER_RESIZE:
|
|
|
|
/* We add this one two ways - as a high-priority idle and as a
|
|
|
|
* repaint func. If we are in a clutter event callback, the repaint
|
|
|
|
* handler will get hit first, and we'll take care of this function
|
|
|
|
* there so it gets called before the stage is redrawn, even if
|
|
|
|
* we haven't gotten back to the main loop. Otherwise, the idle
|
|
|
|
* handler will get hit first and we want to call this function
|
|
|
|
* there so it will happen before GTK+ repaints.
|
|
|
|
*/
|
|
|
|
later->source = g_idle_add_full (META_PRIORITY_RESIZE, call_idle_later, later, NULL);
|
|
|
|
ensure_later_repaint_func ();
|
|
|
|
break;
|
2013-03-14 16:55:49 -04:00
|
|
|
case META_LATER_CALC_SHOWING:
|
|
|
|
case META_LATER_CHECK_FULLSCREEN:
|
|
|
|
case META_LATER_SYNC_STACK:
|
2009-09-25 15:47:22 -04:00
|
|
|
case META_LATER_BEFORE_REDRAW:
|
|
|
|
ensure_later_repaint_func ();
|
|
|
|
break;
|
|
|
|
case META_LATER_IDLE:
|
|
|
|
later->source = g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, call_idle_later, later, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return later->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_later_remove:
|
|
|
|
* @later_id: the integer ID returned from meta_later_add()
|
|
|
|
*
|
|
|
|
* Removes a callback added with meta_later_add()
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_later_remove (guint later_id)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
|
|
|
|
for (l = laters; l; l = l->next)
|
|
|
|
{
|
|
|
|
MetaLater *later = l->data;
|
|
|
|
if (later->id == later_id)
|
|
|
|
{
|
2011-10-21 15:34:43 -04:00
|
|
|
laters = g_slist_delete_link (laters, l);
|
2009-09-25 15:47:22 -04:00
|
|
|
/* If this was a "repaint func" later, we just let the
|
|
|
|
* repaint func run and get removed
|
|
|
|
*/
|
|
|
|
destroy_later (later);
|
2012-03-19 01:44:59 -04:00
|
|
|
return;
|
2009-09-25 15:47:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-08 13:51:56 -05:00
|
|
|
/* eof util.c */
|
|
|
|
|