2014-05-02 13:34:02 +00:00
|
|
|
/*
|
2001-05-30 15:36:31 +00:00
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
2005-10-08 19:38:54 +00:00
|
|
|
* Copyright (C) 2005 Elijah Newren
|
2014-05-02 13:34:02 +00:00
|
|
|
*
|
2001-05-30 15:36:31 +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.
|
2014-05-02 13:34:02 +00:00
|
|
|
*
|
2001-05-30 15:36:31 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-12 01:42:06 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2001-05-30 15:36:31 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-11 15:52:36 +00:00
|
|
|
/**
|
|
|
|
* SECTION:util
|
|
|
|
* @title: Utility functions
|
|
|
|
* @short_description: Miscellaneous utility functions
|
|
|
|
*/
|
|
|
|
|
2008-11-23 18:53:55 +00:00
|
|
|
#define _POSIX_C_SOURCE 200112L /* for fdopen() */
|
2008-02-27 04:39:10 +00:00
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "config.h"
|
2001-05-30 15:36:31 +00:00
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "core/util-private.h"
|
2009-09-25 19:47:22 +00:00
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
#include <stdio.h>
|
2001-05-31 03:30:58 +00:00
|
|
|
#include <stdlib.h>
|
2001-09-11 03:54:54 +00:00
|
|
|
#include <unistd.h>
|
2002-03-05 02:43:22 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2006-01-13 21:36:10 +00: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 14:58:50 +00:00
|
|
|
#include <X11/Xutil.h> /* Just for the definition of the various gravities */
|
2001-05-30 15:36:31 +00:00
|
|
|
|
2021-02-24 15:27:44 +00:00
|
|
|
#ifdef HAVE_SYS_PRCTL
|
|
|
|
#include <sys/prctl.h>
|
|
|
|
#endif
|
|
|
|
|
2021-05-10 17:58:32 +00:00
|
|
|
#include "clutter/clutter-mutter.h"
|
2020-02-17 17:32:35 +00:00
|
|
|
#include "cogl/cogl.h"
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "meta/common.h"
|
|
|
|
#include "meta/main.h"
|
|
|
|
|
2021-02-24 15:27:44 +00:00
|
|
|
static const GDebugKey meta_debug_keys[] = {
|
|
|
|
{ "focus", META_DEBUG_FOCUS },
|
|
|
|
{ "workarea", META_DEBUG_WORKAREA },
|
|
|
|
{ "stack", META_DEBUG_STACK },
|
|
|
|
{ "sm", META_DEBUG_SM },
|
|
|
|
{ "events", META_DEBUG_EVENTS },
|
|
|
|
{ "window-state", META_DEBUG_WINDOW_STATE },
|
|
|
|
{ "window-ops", META_DEBUG_WINDOW_OPS },
|
|
|
|
{ "geometry", META_DEBUG_GEOMETRY },
|
|
|
|
{ "placement", META_DEBUG_PLACEMENT },
|
|
|
|
{ "ping", META_DEBUG_PING },
|
|
|
|
{ "keybindings", META_DEBUG_KEYBINDINGS },
|
|
|
|
{ "sync", META_DEBUG_SYNC },
|
|
|
|
{ "startup", META_DEBUG_STARTUP },
|
|
|
|
{ "prefs", META_DEBUG_PREFS },
|
|
|
|
{ "groups", META_DEBUG_GROUPS },
|
|
|
|
{ "resizing", META_DEBUG_RESIZING },
|
|
|
|
{ "shapes", META_DEBUG_SHAPES },
|
|
|
|
{ "edge-resistance", META_DEBUG_EDGE_RESISTANCE },
|
|
|
|
{ "dbus", META_DEBUG_DBUS },
|
|
|
|
{ "input", META_DEBUG_INPUT },
|
|
|
|
{ "wayland", META_DEBUG_WAYLAND },
|
|
|
|
{ "kms", META_DEBUG_KMS },
|
|
|
|
{ "screen-cast", META_DEBUG_SCREEN_CAST },
|
|
|
|
{ "remote-desktop", META_DEBUG_REMOTE_DESKTOP },
|
2021-07-15 06:59:33 +00:00
|
|
|
{ "backend", META_DEBUG_BACKEND },
|
2021-04-30 12:34:31 +00:00
|
|
|
{ "render", META_DEBUG_RENDER },
|
2021-02-24 15:27:44 +00:00
|
|
|
};
|
|
|
|
|
2010-07-12 11:14:26 +00:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2010-06-02 13:26:53 +00:00
|
|
|
static void
|
|
|
|
meta_topic_real_valist (MetaDebugTopic topic,
|
|
|
|
const char *format,
|
2015-09-23 23:18:15 +00:00
|
|
|
va_list args) G_GNUC_PRINTF(2, 0);
|
2010-07-12 11:14:26 +00:00
|
|
|
#endif
|
2010-06-02 13:26:53 +00:00
|
|
|
|
2014-07-10 20:54:48 +00:00
|
|
|
static gint verbose_topics = 0;
|
2013-05-02 23:57:28 +00:00
|
|
|
static gboolean is_wayland_compositor = FALSE;
|
2020-08-10 13:58:02 +00:00
|
|
|
static int debug_paint_flags = 0;
|
2002-12-09 02:53:16 +00:00
|
|
|
|
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 05:47:51 +00: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 10:29:20 +00:00
|
|
|
if (logfile == NULL && g_getenv ("MUTTER_USE_LOGFILE"))
|
2001-06-11 05:47:51 +00:00
|
|
|
{
|
2002-03-05 02:43:22 +00:00
|
|
|
char *filename = NULL;
|
|
|
|
char *tmpl;
|
|
|
|
int fd;
|
|
|
|
GError *err;
|
2014-05-02 13:34:02 +00: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 10:29:20 +00:00
|
|
|
tmpl = g_strdup_printf ("mutter-%d-debug-log-XXXXXX",
|
2002-03-05 02:43:22 +00:00
|
|
|
(int) getpid ());
|
2001-09-11 02:57:05 +00:00
|
|
|
|
2002-03-05 02:43:22 +00:00
|
|
|
err = NULL;
|
|
|
|
fd = g_file_open_tmp (tmpl,
|
|
|
|
&filename,
|
|
|
|
&err);
|
2001-06-11 05:47:51 +00:00
|
|
|
|
2002-03-05 02:43:22 +00:00
|
|
|
g_free (tmpl);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-03-05 02:43:22 +00:00
|
|
|
if (err != NULL)
|
|
|
|
{
|
2020-10-02 15:47:22 +00:00
|
|
|
meta_warning ("Failed to open debug log: %s",
|
2002-03-05 02:43:22 +00:00
|
|
|
err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
return;
|
|
|
|
}
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-03-05 02:43:22 +00:00
|
|
|
logfile = fdopen (fd, "w");
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-06-11 05:47:51 +00:00
|
|
|
if (logfile == NULL)
|
2002-03-05 02:43:22 +00:00
|
|
|
{
|
2020-10-02 15:47:22 +00:00
|
|
|
meta_warning ("Failed to fdopen() log file %s: %s",
|
2002-03-05 02:43:22 +00:00
|
|
|
filename, strerror (errno));
|
|
|
|
close (fd);
|
|
|
|
}
|
2001-06-11 05:47:51 +00:00
|
|
|
else
|
2002-03-05 02:43:22 +00:00
|
|
|
{
|
2020-10-02 15:47:22 +00:00
|
|
|
g_printerr ("Opened log file %s", filename);
|
2002-03-05 02:43:22 +00:00
|
|
|
}
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-03-05 02:43:22 +00:00
|
|
|
g_free (filename);
|
2001-06-11 05:47:51 +00:00
|
|
|
}
|
|
|
|
}
|
2002-12-09 02:53:16 +00:00
|
|
|
#endif
|
2001-05-30 15:36:31 +00:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_is_verbose (void)
|
|
|
|
{
|
2010-06-02 13:26:53 +00:00
|
|
|
return verbose_topics != 0;
|
2001-05-30 15:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_set_verbose (gboolean setting)
|
|
|
|
{
|
2002-12-08 19:17:17 +00:00
|
|
|
#ifndef WITH_VERBOSE_MODE
|
|
|
|
if (setting)
|
2020-10-02 15:47:22 +00:00
|
|
|
meta_fatal (_("Mutter was compiled without support for verbose mode"));
|
2008-02-15 04:37:39 +00:00
|
|
|
#endif
|
2010-06-02 13:26:53 +00: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;
|
2020-10-01 13:05:17 +00:00
|
|
|
|
|
|
|
ensure_logfile ();
|
|
|
|
|
2010-06-02 13:26:53 +00:00
|
|
|
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 15:36:31 +00:00
|
|
|
}
|
|
|
|
|
2021-02-24 15:27:44 +00:00
|
|
|
void
|
|
|
|
meta_init_debug_utils (void)
|
|
|
|
{
|
|
|
|
const char *debug_env;
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PRCTL
|
|
|
|
prctl (PR_SET_DUMPABLE, 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (g_getenv ("MUTTER_VERBOSE"))
|
|
|
|
meta_set_verbose (TRUE);
|
|
|
|
|
|
|
|
debug_env = g_getenv ("MUTTER_DEBUG");
|
|
|
|
if (debug_env)
|
|
|
|
{
|
|
|
|
MetaDebugTopic topics;
|
|
|
|
|
|
|
|
topics = g_parse_debug_string (debug_env,
|
|
|
|
meta_debug_keys,
|
|
|
|
G_N_ELEMENTS (meta_debug_keys));
|
|
|
|
meta_add_verbose_topic (topics);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-02 23:57:28 +00: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 18:13:45 +00: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 20:54:23 +00:00
|
|
|
static int
|
|
|
|
utf8_fputs (const char *str,
|
|
|
|
FILE *f)
|
|
|
|
{
|
|
|
|
char *l;
|
2002-12-01 03:58:04 +00:00
|
|
|
int retval;
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-08-24 20:54:23 +00:00
|
|
|
l = g_locale_from_utf8 (str, -1, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
if (l == NULL)
|
2002-12-01 03:58:04 +00:00
|
|
|
retval = fputs (str, f); /* just print it anyway, better than nothing */
|
2002-08-24 20:54:23 +00:00
|
|
|
else
|
2002-12-01 03:58:04 +00:00
|
|
|
retval = fputs (l, f);
|
2002-08-24 20:54:23 +00:00
|
|
|
|
|
|
|
g_free (l);
|
2002-12-01 03:58:04 +00:00
|
|
|
|
|
|
|
return retval;
|
2002-08-24 20:54:23 +00:00
|
|
|
}
|
|
|
|
|
2002-12-08 19:17:17 +00:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-05-30 15:36:31 +00:00
|
|
|
void
|
2002-12-08 19:17:17 +00:00
|
|
|
meta_verbose_real (const char *format, ...)
|
2001-05-30 15:36:31 +00:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, format);
|
2010-06-02 13:26:53 +00:00
|
|
|
meta_topic_real_valist (META_DEBUG_VERBOSE, format, args);
|
2001-05-30 15:36:31 +00:00
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
|
2021-11-15 17:23:59 +00:00
|
|
|
const char *
|
|
|
|
meta_topic_to_string (MetaDebugTopic topic)
|
2002-01-03 23:28:19 +00:00
|
|
|
{
|
|
|
|
switch (topic)
|
|
|
|
{
|
|
|
|
case META_DEBUG_FOCUS:
|
|
|
|
return "FOCUS";
|
2002-02-08 03:34:26 +00:00
|
|
|
case META_DEBUG_WORKAREA:
|
|
|
|
return "WORKAREA";
|
|
|
|
case META_DEBUG_STACK:
|
|
|
|
return "STACK";
|
|
|
|
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 15:26:07 +00:00
|
|
|
case META_DEBUG_PING:
|
|
|
|
return "PING";
|
2002-04-28 04:52:26 +00:00
|
|
|
case META_DEBUG_KEYBINDINGS:
|
|
|
|
return "KEYBINDINGS";
|
2002-10-21 21:44:35 +00:00
|
|
|
case META_DEBUG_SYNC:
|
|
|
|
return "SYNC";
|
2002-10-25 23:35:50 +00:00
|
|
|
case META_DEBUG_STARTUP:
|
|
|
|
return "STARTUP";
|
2002-11-03 19:06:39 +00:00
|
|
|
case META_DEBUG_PREFS:
|
|
|
|
return "PREFS";
|
2002-12-01 03:58:04 +00:00
|
|
|
case META_DEBUG_GROUPS:
|
|
|
|
return "GROUPS";
|
2002-12-10 03:23:04 +00:00
|
|
|
case META_DEBUG_RESIZING:
|
|
|
|
return "RESIZING";
|
2003-01-05 07:51:02 +00:00
|
|
|
case META_DEBUG_SHAPES:
|
|
|
|
return "SHAPES";
|
2006-03-17 02:55:21 +00:00
|
|
|
case META_DEBUG_EDGE_RESISTANCE:
|
|
|
|
return "EDGE_RESISTANCE";
|
2013-07-19 12:39:28 +00:00
|
|
|
case META_DEBUG_DBUS:
|
|
|
|
return "DBUS";
|
2020-02-18 13:56:25 +00:00
|
|
|
case META_DEBUG_INPUT:
|
|
|
|
return "INPUT";
|
2021-04-29 14:19:48 +00:00
|
|
|
case META_DEBUG_WAYLAND:
|
|
|
|
return "WAYLAND";
|
2020-10-02 16:37:18 +00:00
|
|
|
case META_DEBUG_KMS:
|
|
|
|
return "KMS";
|
2021-02-05 08:51:08 +00:00
|
|
|
case META_DEBUG_SCREEN_CAST:
|
|
|
|
return "SCREEN_CAST";
|
2020-10-13 15:41:23 +00:00
|
|
|
case META_DEBUG_REMOTE_DESKTOP:
|
|
|
|
return "REMOTE_DESKTOP";
|
2021-07-15 06:59:33 +00:00
|
|
|
case META_DEBUG_BACKEND:
|
|
|
|
return "BACKEND";
|
2021-04-30 12:34:31 +00:00
|
|
|
case META_DEBUG_RENDER:
|
|
|
|
return "RENDER";
|
2010-06-02 13:26:53 +00:00
|
|
|
case META_DEBUG_VERBOSE:
|
|
|
|
return "VERBOSE";
|
2002-01-03 23:28:19 +00:00
|
|
|
}
|
|
|
|
|
2003-01-05 18:36:01 +00:00
|
|
|
return "WM";
|
2002-01-03 23:28:19 +00:00
|
|
|
}
|
|
|
|
|
2002-11-04 00:56:12 +00:00
|
|
|
static int sync_count = 0;
|
|
|
|
|
2020-10-02 17:30:58 +00:00
|
|
|
gboolean
|
|
|
|
meta_is_topic_enabled (MetaDebugTopic topic)
|
|
|
|
{
|
|
|
|
if (verbose_topics == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (topic == META_DEBUG_VERBOSE && verbose_topics != META_DEBUG_VERBOSE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return !!(verbose_topics & topic);
|
|
|
|
}
|
|
|
|
|
2010-06-02 13:26:53 +00:00
|
|
|
static void
|
|
|
|
meta_topic_real_valist (MetaDebugTopic topic,
|
|
|
|
const char *format,
|
|
|
|
va_list args)
|
2002-01-03 23:28:19 +00:00
|
|
|
{
|
|
|
|
gchar *str;
|
|
|
|
FILE *out;
|
|
|
|
|
|
|
|
g_return_if_fail (format != NULL);
|
|
|
|
|
2020-10-02 17:30:58 +00:00
|
|
|
if (!meta_is_topic_enabled (topic))
|
2002-01-03 23:28:19 +00:00
|
|
|
return;
|
2010-06-02 13:26:53 +00:00
|
|
|
|
2002-01-03 23:28:19 +00:00
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
|
|
|
|
out = logfile ? logfile : stderr;
|
|
|
|
|
2021-11-15 17:23:59 +00:00
|
|
|
fprintf (out, "%s: ", meta_topic_to_string (topic));
|
2002-11-04 00:56:12 +00:00
|
|
|
|
|
|
|
if (topic == META_DEBUG_SYNC)
|
|
|
|
{
|
|
|
|
++sync_count;
|
|
|
|
fprintf (out, "%d: ", sync_count);
|
|
|
|
}
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-08-24 20:54:23 +00:00
|
|
|
utf8_fputs (str, out);
|
2020-10-02 15:47:22 +00:00
|
|
|
utf8_fputs ("\n", out);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-01-03 23:28:19 +00:00
|
|
|
fflush (out);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-01-03 23:28:19 +00:00
|
|
|
g_free (str);
|
|
|
|
}
|
2010-06-02 13:26:53 +00: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 19:17:17 +00:00
|
|
|
#endif /* WITH_VERBOSE_MODE */
|
2002-01-03 23:28:19 +00:00
|
|
|
|
2001-05-31 03:30:58 +00:00
|
|
|
void
|
|
|
|
meta_bug (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 05:47:51 +00:00
|
|
|
FILE *out;
|
2001-05-31 03:30:58 +00:00
|
|
|
|
|
|
|
g_return_if_fail (format != NULL);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-31 03:30:58 +00:00
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2008-02-15 04:37:39 +00:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 05:47:51 +00:00
|
|
|
out = logfile ? logfile : stderr;
|
2008-02-15 04:37:39 +00:00
|
|
|
#else
|
|
|
|
out = stderr;
|
|
|
|
#endif
|
|
|
|
|
2021-11-15 18:42:25 +00:00
|
|
|
utf8_fputs ("Bug in window manager: ", out);
|
2002-08-24 20:54:23 +00:00
|
|
|
utf8_fputs (str, out);
|
2020-10-02 15:47:22 +00:00
|
|
|
utf8_fputs ("\n", out);
|
2001-06-21 06:08:35 +00:00
|
|
|
|
|
|
|
fflush (out);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-31 03:30:58 +00:00
|
|
|
g_free (str);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-31 03:30:58 +00:00
|
|
|
/* stop us in a debugger */
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
void
|
|
|
|
meta_warning (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 05:47:51 +00:00
|
|
|
FILE *out;
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
g_return_if_fail (format != NULL);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2008-02-15 04:37:39 +00:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 05:47:51 +00:00
|
|
|
out = logfile ? logfile : stderr;
|
2008-02-15 04:37:39 +00:00
|
|
|
#else
|
|
|
|
out = stderr;
|
|
|
|
#endif
|
|
|
|
|
2021-11-15 18:42:25 +00:00
|
|
|
utf8_fputs ("Window manager warning: ", out);
|
2002-08-24 20:54:23 +00:00
|
|
|
utf8_fputs (str, out);
|
2020-10-02 15:47:22 +00:00
|
|
|
utf8_fputs ("\n", out);
|
2002-10-21 21:44:35 +00:00
|
|
|
|
|
|
|
fflush (out);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
g_free (str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_fatal (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *str;
|
2001-06-11 05:47:51 +00:00
|
|
|
FILE *out;
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2017-03-20 14:13:34 +00:00
|
|
|
g_warn_if_fail (format);
|
|
|
|
if (!format)
|
|
|
|
meta_exit (META_EXIT_ERROR);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
va_start (args, format);
|
|
|
|
str = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
2008-02-15 04:37:39 +00:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2001-06-11 05:47:51 +00:00
|
|
|
out = logfile ? logfile : stderr;
|
2008-02-15 04:37:39 +00:00
|
|
|
#else
|
|
|
|
out = stderr;
|
|
|
|
#endif
|
|
|
|
|
2021-11-15 18:42:25 +00:00
|
|
|
utf8_fputs ("Window manager error: ", out);
|
2002-08-24 20:54:23 +00:00
|
|
|
utf8_fputs (str, out);
|
2020-10-02 15:47:22 +00:00
|
|
|
utf8_fputs ("\n", out);
|
2001-06-21 06:08:35 +00:00
|
|
|
|
|
|
|
fflush (out);
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2001-05-30 15:36:31 +00:00
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
meta_exit (META_EXIT_ERROR);
|
|
|
|
}
|
2001-06-10 19:23:28 +00:00
|
|
|
|
2002-01-28 02:09:12 +00:00
|
|
|
void
|
|
|
|
meta_exit (MetaExitCode code)
|
|
|
|
{
|
2014-05-02 13:34:02 +00:00
|
|
|
|
2002-01-28 02:09:12 +00:00
|
|
|
exit (code);
|
|
|
|
}
|
2002-08-12 21:32:13 +00: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 23:18:22 +00:00
|
|
|
#if GLIB_SIZEOF_LONG > 4
|
2002-08-12 21:32:13 +00: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 14:58:50 +00:00
|
|
|
|
|
|
|
const char*
|
2020-02-14 08:44:43 +00:00
|
|
|
meta_gravity_to_string (MetaGravity gravity)
|
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 14:58:50 +00:00
|
|
|
{
|
|
|
|
switch (gravity)
|
|
|
|
{
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_NORTH_WEST:
|
|
|
|
return "META_GRAVITY_NORTH_WEST";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_NORTH:
|
|
|
|
return "META_GRAVITY_NORTH";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_NORTH_EAST:
|
|
|
|
return "META_GRAVITY_NORTH_EAST";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_WEST:
|
|
|
|
return "META_GRAVITY_WEST";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_CENTER:
|
|
|
|
return "META_GRAVITY_CENTER";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_EAST:
|
|
|
|
return "META_GRAVITY_EAST";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_SOUTH_WEST:
|
|
|
|
return "META_GRAVITY_SOUTH_WEST";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_SOUTH:
|
|
|
|
return "META_GRAVITY_SOUTH";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_SOUTH_EAST:
|
|
|
|
return "META_GRAVITY_SOUTH_EAST";
|
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 14:58:50 +00:00
|
|
|
break;
|
2020-02-14 08:44:43 +00:00
|
|
|
case META_GRAVITY_STATIC:
|
|
|
|
return "META_GRAVITY_STATIC";
|
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 14:58:50 +00:00
|
|
|
break;
|
|
|
|
default:
|
2020-02-14 08:44:43 +00:00
|
|
|
return "META_GRAVITY_NORTH_WEST";
|
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 14:58:50 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-11-08 18:51:56 +00:00
|
|
|
|
2012-08-28 13:28:11 +00:00
|
|
|
char*
|
|
|
|
meta_external_binding_name_for_action (guint keybinding_action)
|
|
|
|
{
|
|
|
|
return g_strdup_printf ("external-grab-%u", keybinding_action);
|
|
|
|
}
|
|
|
|
|
2011-05-02 18:38:13 +00: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 16:54:49 +00:00
|
|
|
/**
|
|
|
|
* meta_show_dialog: (skip)
|
2013-02-15 18:42:08 +00: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 19:12:09 +00:00
|
|
|
*
|
2011-08-30 16:54:49 +00:00
|
|
|
*/
|
2009-05-05 13:57:58 +00:00
|
|
|
GPid
|
2008-11-08 18:51:56 +00:00
|
|
|
meta_show_dialog (const char *type,
|
|
|
|
const char *message,
|
|
|
|
const char *timeout,
|
2011-03-17 13:54:47 +00:00
|
|
|
const char *display,
|
2009-05-05 13:57:58 +00:00
|
|
|
const char *ok_text,
|
|
|
|
const char *cancel_text,
|
2012-09-18 20:57:26 +00:00
|
|
|
const char *icon_name,
|
2009-05-05 13:57:58 +00:00
|
|
|
const int transient_for,
|
|
|
|
GSList *columns,
|
|
|
|
GSList *entries)
|
2008-11-08 18:51:56 +00:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
2009-05-05 13:57:58 +00:00
|
|
|
GSList *tmp;
|
2008-11-08 18:51:56 +00:00
|
|
|
GPid child_pid;
|
2011-05-02 18:38:13 +00:00
|
|
|
GPtrArray *args;
|
|
|
|
|
|
|
|
args = g_ptr_array_new ();
|
|
|
|
|
|
|
|
append_argument (args, "zenity");
|
|
|
|
append_argument (args, type);
|
2013-07-29 08:12:24 +00:00
|
|
|
|
|
|
|
if (display)
|
|
|
|
{
|
|
|
|
append_argument (args, "--display");
|
|
|
|
append_argument (args, display);
|
|
|
|
}
|
|
|
|
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, "--class");
|
|
|
|
append_argument (args, "mutter-dialog");
|
|
|
|
append_argument (args, "--title");
|
2011-09-04 15:24:32 +00:00
|
|
|
append_argument (args, "");
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, "--text");
|
|
|
|
append_argument (args, message);
|
|
|
|
|
2008-11-08 18:51:56 +00:00
|
|
|
if (timeout)
|
|
|
|
{
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, "--timeout");
|
|
|
|
append_argument (args, timeout);
|
2008-11-08 18:51:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-05 13:57:58 +00:00
|
|
|
if (ok_text)
|
|
|
|
{
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, "--ok-label");
|
|
|
|
append_argument (args, ok_text);
|
2009-05-05 13:57:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cancel_text)
|
|
|
|
{
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, "--cancel-label");
|
|
|
|
append_argument (args, cancel_text);
|
2009-05-05 13:57:58 +00:00
|
|
|
}
|
2011-05-02 18:38:13 +00:00
|
|
|
|
2012-09-18 20:57:26 +00:00
|
|
|
if (icon_name)
|
|
|
|
{
|
2014-04-15 21:18:18 +00:00
|
|
|
append_argument (args, "--icon-name");
|
|
|
|
append_argument (args, icon_name);
|
2012-09-18 20:57:26 +00:00
|
|
|
}
|
|
|
|
|
2009-05-05 13:57:58 +00:00
|
|
|
tmp = columns;
|
|
|
|
while (tmp)
|
|
|
|
{
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, "--column");
|
|
|
|
append_argument (args, tmp->data);
|
2009-05-05 13:57:58 +00:00
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = entries;
|
|
|
|
while (tmp)
|
|
|
|
{
|
2011-05-02 18:38:13 +00:00
|
|
|
append_argument (args, tmp->data);
|
2009-05-05 13:57:58 +00:00
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
2011-05-02 18:38:13 +00:00
|
|
|
|
2009-05-05 13:57:58 +00:00
|
|
|
if (transient_for)
|
|
|
|
{
|
|
|
|
gchar *env = g_strdup_printf("%d", transient_for);
|
|
|
|
setenv ("WINDOWID", env, 1);
|
|
|
|
g_free (env);
|
2012-09-18 19:20:33 +00:00
|
|
|
|
2014-04-15 21:18:18 +00:00
|
|
|
append_argument (args, "--modal");
|
2009-05-05 13:57:58 +00:00
|
|
|
}
|
|
|
|
|
2012-09-18 19:20:33 +00:00
|
|
|
g_ptr_array_add (args, NULL); /* NULL-terminate */
|
|
|
|
|
2009-05-05 13:57:58 +00:00
|
|
|
g_spawn_async (
|
|
|
|
"/",
|
2011-05-02 18:38:13 +00:00
|
|
|
(gchar**) args->pdata,
|
2009-05-05 13:57:58 +00: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 18:51:56 +00:00
|
|
|
|
2011-05-02 18:38:13 +00:00
|
|
|
g_ptr_array_free (args, TRUE);
|
2008-11-08 18:51:56 +00:00
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
2020-10-02 15:47:22 +00:00
|
|
|
meta_warning ("%s", error->message);
|
2008-11-08 18:51:56 +00:00
|
|
|
g_error_free (error);
|
|
|
|
}
|
2009-05-05 13:57:58 +00:00
|
|
|
|
|
|
|
return child_pid;
|
|
|
|
}
|
|
|
|
|
2014-08-18 02:57:51 +00:00
|
|
|
MetaLocaleDirection
|
|
|
|
meta_get_locale_direction (void)
|
|
|
|
{
|
|
|
|
switch (gtk_get_locale_direction ())
|
|
|
|
{
|
|
|
|
case GTK_TEXT_DIR_LTR:
|
|
|
|
return META_LOCALE_DIRECTION_LTR;
|
|
|
|
case GTK_TEXT_DIR_RTL:
|
|
|
|
return META_LOCALE_DIRECTION_RTL;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
2019-01-24 23:47:44 +00:00
|
|
|
return 0;
|
2014-08-18 02:57:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-21 05:42:23 +00:00
|
|
|
char *
|
|
|
|
meta_generate_random_id (GRand *rand,
|
|
|
|
int length)
|
|
|
|
{
|
|
|
|
char *id;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Generate a random string of printable ASCII characters. */
|
|
|
|
|
|
|
|
id = g_new0 (char, length + 1);
|
|
|
|
for (i = 0; i < length; i++)
|
|
|
|
id[i] = (char) g_rand_int_range (rand, 32, 127);
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2019-03-21 11:49:04 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_add_clutter_debug_flags (ClutterDebugFlag debug_flags,
|
|
|
|
ClutterDrawDebugFlag draw_flags,
|
|
|
|
ClutterPickDebugFlag pick_flags)
|
|
|
|
{
|
|
|
|
clutter_add_debug_flags (debug_flags, draw_flags, pick_flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_remove_clutter_debug_flags (ClutterDebugFlag debug_flags,
|
|
|
|
ClutterDrawDebugFlag draw_flags,
|
|
|
|
ClutterPickDebugFlag pick_flags)
|
|
|
|
{
|
|
|
|
clutter_remove_debug_flags (debug_flags, draw_flags, pick_flags);
|
|
|
|
}
|
2020-08-10 13:58:02 +00:00
|
|
|
|
2021-09-29 18:02:04 +00:00
|
|
|
/**
|
|
|
|
* meta_get_clutter_debug_flags:
|
|
|
|
* @debug_flags: (out) (optional): return location for debug flags
|
|
|
|
* @draw_flags: (out) (optional): return location for draw debug flags
|
|
|
|
* @pick_flags: (out) (optional): return location for pick debug flags
|
|
|
|
*/
|
2021-05-10 17:58:32 +00:00
|
|
|
void
|
|
|
|
meta_get_clutter_debug_flags (ClutterDebugFlag *debug_flags,
|
|
|
|
ClutterDrawDebugFlag *draw_flags,
|
|
|
|
ClutterPickDebugFlag *pick_flags)
|
|
|
|
{
|
|
|
|
clutter_get_debug_flags (debug_flags, draw_flags, pick_flags);
|
|
|
|
}
|
|
|
|
|
2020-08-10 13:58:02 +00:00
|
|
|
void
|
|
|
|
meta_add_debug_paint_flag (MetaDebugPaintFlag flag)
|
|
|
|
{
|
|
|
|
debug_paint_flags |= flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_remove_debug_paint_flag (MetaDebugPaintFlag flag)
|
|
|
|
{
|
|
|
|
debug_paint_flags &= ~flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
MetaDebugPaintFlag
|
|
|
|
meta_get_debug_paint_flags (void)
|
|
|
|
{
|
|
|
|
return debug_paint_flags;
|
|
|
|
}
|