2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
/*
|
2002-06-08 19:55:27 -04:00
|
|
|
* Copyright (C) 2001, 2002 Havoc Pennington
|
2003-01-22 20:53:18 -05:00
|
|
|
* Copyright (C) 2002, 2003 Red Hat Inc.
|
2002-06-08 19:55:27 -04:00
|
|
|
* Some ICCCM manager selection code derived from fvwm2,
|
2002-07-10 10:41:19 -04:00
|
|
|
* Copyright (C) 2001 Dominik Vogt, Matthias Clasen, and fvwm2 team
|
2003-02-23 12:09:46 -05:00
|
|
|
* Copyright (C) 2003 Rob Adams
|
2006-01-10 14:43:21 -05:00
|
|
|
* Copyright (C) 2004-2006 Elijah Newren
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2001-05-30 11:36:31 -04:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2001-05-30 11:36:31 -04:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2001-05-30 11:36:31 -04:00
|
|
|
*/
|
2001-05-31 02:42:58 -04:00
|
|
|
|
2013-03-11 11:52:36 -04:00
|
|
|
/**
|
|
|
|
* SECTION:screen
|
|
|
|
* @title: MetaScreen
|
|
|
|
* @short_description: Mutter X screen handler
|
|
|
|
*/
|
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
#include <config.h>
|
2008-05-18 20:00:09 -04:00
|
|
|
#include "screen-private.h"
|
2011-03-23 13:11:05 -04:00
|
|
|
#include <meta/main.h>
|
2013-09-11 04:18:53 -04:00
|
|
|
#include "util-private.h"
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/errors.h>
|
2008-05-18 20:00:09 -04:00
|
|
|
#include "window-private.h"
|
2011-03-05 19:29:12 -05:00
|
|
|
#include "frame.h"
|
|
|
|
#include <meta/prefs.h>
|
2008-09-18 11:09:11 -04:00
|
|
|
#include "workspace-private.h"
|
2009-01-29 09:16:01 -05:00
|
|
|
#include "keybindings-private.h"
|
2001-06-10 14:46:46 -04:00
|
|
|
#include "stack.h"
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/compositor.h>
|
2015-07-06 00:58:45 -04:00
|
|
|
#include <meta/meta-enum-types.h>
|
2013-02-07 18:20:03 -05:00
|
|
|
#include "core.h"
|
2013-08-13 06:57:41 -04:00
|
|
|
#include "meta-cursor-tracker-private.h"
|
2015-07-17 11:16:39 -04:00
|
|
|
#include "boxes-private.h"
|
2001-05-31 23:00:01 -04:00
|
|
|
|
2002-04-21 15:35:02 -04:00
|
|
|
#include <X11/extensions/Xinerama.h>
|
2014-07-10 14:03:03 -04:00
|
|
|
#include <X11/extensions/Xcomposite.h>
|
2012-04-24 15:18:46 -04:00
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
#include <X11/Xatom.h>
|
2001-05-31 23:00:01 -04:00
|
|
|
#include <locale.h>
|
|
|
|
#include <string.h>
|
2002-06-08 19:55:27 -04:00
|
|
|
#include <stdio.h>
|
2013-03-04 09:57:01 -05:00
|
|
|
#include <stdlib.h>
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2014-05-20 09:18:45 -04:00
|
|
|
#include "x11/window-x11.h"
|
2014-03-18 21:56:45 -04:00
|
|
|
#include "x11/xprops.h"
|
|
|
|
|
2014-07-15 17:13:31 -04:00
|
|
|
#include "backends/x11/meta-backend-x11.h"
|
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
static char* get_screen_name (MetaDisplay *display,
|
|
|
|
int number);
|
|
|
|
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
static void update_num_workspaces (MetaScreen *screen,
|
|
|
|
guint32 timestamp);
|
2003-02-14 02:03:46 -05:00
|
|
|
static void set_workspace_names (MetaScreen *screen);
|
2001-12-09 22:55:26 -05:00
|
|
|
static void prefs_changed_callback (MetaPreference pref,
|
|
|
|
gpointer data);
|
2001-06-02 21:33:27 -04:00
|
|
|
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
static void set_desktop_geometry_hint (MetaScreen *screen);
|
|
|
|
static void set_desktop_viewport_hint (MetaScreen *screen);
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
static void on_monitors_changed (MetaMonitorManager *manager,
|
|
|
|
MetaScreen *screen);
|
|
|
|
|
2008-11-17 17:22:28 -05:00
|
|
|
enum
|
|
|
|
{
|
2009-05-05 04:39:29 -04:00
|
|
|
PROP_N_WORKSPACES = 1,
|
2008-11-17 17:22:28 -05:00
|
|
|
};
|
|
|
|
|
2009-03-12 17:07:27 -04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
RESTACKED,
|
2009-07-02 11:19:02 -04:00
|
|
|
WORKSPACE_ADDED,
|
|
|
|
WORKSPACE_REMOVED,
|
|
|
|
WORKSPACE_SWITCHED,
|
2011-02-28 15:26:11 -05:00
|
|
|
WINDOW_ENTERED_MONITOR,
|
|
|
|
WINDOW_LEFT_MONITOR,
|
2009-08-02 00:42:34 -04:00
|
|
|
STARTUP_SEQUENCE_CHANGED,
|
2009-09-17 04:49:23 -04:00
|
|
|
WORKAREAS_CHANGED,
|
2011-02-25 05:25:37 -05:00
|
|
|
MONITORS_CHANGED,
|
2013-03-14 16:55:49 -04:00
|
|
|
IN_FULLSCREEN_CHANGED,
|
2009-03-12 17:07:27 -04:00
|
|
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint screen_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2008-11-17 15:56:34 -05:00
|
|
|
G_DEFINE_TYPE (MetaScreen, meta_screen, G_TYPE_OBJECT);
|
|
|
|
|
2008-11-17 17:22:28 -05:00
|
|
|
static void
|
|
|
|
meta_screen_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
MetaScreen *screen = META_SCREEN (object);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
MetaScreen *screen = META_SCREEN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_N_WORKSPACES:
|
|
|
|
g_value_set_int (value, meta_screen_get_n_workspaces (screen));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-17 15:56:34 -05:00
|
|
|
static void
|
|
|
|
meta_screen_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
/* Actual freeing done in meta_screen_free() for now */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_class_init (MetaScreenClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2008-11-17 17:22:28 -05:00
|
|
|
GParamSpec *pspec;
|
2008-11-17 15:56:34 -05:00
|
|
|
|
2008-11-17 17:22:28 -05:00
|
|
|
object_class->get_property = meta_screen_get_property;
|
|
|
|
object_class->set_property = meta_screen_set_property;
|
2008-11-17 15:56:34 -05:00
|
|
|
object_class->finalize = meta_screen_finalize;
|
2008-11-17 17:22:28 -05:00
|
|
|
|
2009-03-12 17:07:27 -04:00
|
|
|
screen_signals[RESTACKED] =
|
|
|
|
g_signal_new ("restacked",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (MetaScreenClass, restacked),
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2009-03-12 17:07:27 -04:00
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2008-11-17 17:22:28 -05:00
|
|
|
pspec = g_param_spec_int ("n-workspaces",
|
|
|
|
"N Workspaces",
|
|
|
|
"Number of workspaces",
|
|
|
|
1, G_MAXINT, 1,
|
|
|
|
G_PARAM_READABLE);
|
|
|
|
|
2009-07-02 11:19:02 -04:00
|
|
|
screen_signals[WORKSPACE_ADDED] =
|
|
|
|
g_signal_new ("workspace-added",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2009-07-02 11:19:02 -04:00
|
|
|
G_TYPE_NONE,
|
|
|
|
1,
|
|
|
|
G_TYPE_INT);
|
|
|
|
|
|
|
|
screen_signals[WORKSPACE_REMOVED] =
|
|
|
|
g_signal_new ("workspace-removed",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2009-07-02 11:19:02 -04:00
|
|
|
G_TYPE_NONE,
|
|
|
|
1,
|
|
|
|
G_TYPE_INT);
|
|
|
|
|
|
|
|
screen_signals[WORKSPACE_SWITCHED] =
|
|
|
|
g_signal_new ("workspace-switched",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2009-07-02 11:19:02 -04:00
|
|
|
G_TYPE_NONE,
|
|
|
|
3,
|
|
|
|
G_TYPE_INT,
|
|
|
|
G_TYPE_INT,
|
2012-02-23 14:39:58 -05:00
|
|
|
META_TYPE_MOTION_DIRECTION);
|
2009-07-02 11:19:02 -04:00
|
|
|
|
2011-02-28 15:26:11 -05:00
|
|
|
screen_signals[WINDOW_ENTERED_MONITOR] =
|
|
|
|
g_signal_new ("window-entered-monitor",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2011-02-28 15:26:11 -05:00
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_INT,
|
|
|
|
META_TYPE_WINDOW);
|
|
|
|
|
|
|
|
screen_signals[WINDOW_LEFT_MONITOR] =
|
|
|
|
g_signal_new ("window-left-monitor",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2011-02-28 15:26:11 -05:00
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
G_TYPE_INT,
|
|
|
|
META_TYPE_WINDOW);
|
|
|
|
|
2009-08-02 00:42:34 -04:00
|
|
|
screen_signals[STARTUP_SEQUENCE_CHANGED] =
|
|
|
|
g_signal_new ("startup-sequence-changed",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2009-08-02 00:42:34 -04:00
|
|
|
G_TYPE_NONE, 1, G_TYPE_POINTER);
|
|
|
|
|
2009-09-17 04:49:23 -04:00
|
|
|
screen_signals[WORKAREAS_CHANGED] =
|
|
|
|
g_signal_new ("workareas-changed",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (MetaScreenClass, workareas_changed),
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2009-09-17 04:49:23 -04:00
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2011-02-25 05:25:37 -05:00
|
|
|
screen_signals[MONITORS_CHANGED] =
|
|
|
|
g_signal_new ("monitors-changed",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (MetaScreenClass, monitors_changed),
|
2011-10-18 18:06:14 -04:00
|
|
|
NULL, NULL, NULL,
|
2011-02-25 05:25:37 -05:00
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2013-03-14 16:55:49 -04:00
|
|
|
screen_signals[IN_FULLSCREEN_CHANGED] =
|
|
|
|
g_signal_new ("in-fullscreen-changed",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2008-11-17 17:22:28 -05:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_N_WORKSPACES,
|
|
|
|
pspec);
|
2008-11-17 15:56:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_screen_init (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
static int
|
|
|
|
set_wm_check_hint (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
unsigned long data[1];
|
|
|
|
|
2001-06-10 15:23:28 -04:00
|
|
|
g_return_val_if_fail (screen->display->leader_window != None, 0);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
data[0] = screen->display->leader_window;
|
|
|
|
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_SUPPORTING_WM_CHECK,
|
2001-06-09 23:17:15 -04:00
|
|
|
XA_WINDOW,
|
|
|
|
32, PropModeReplace, (guchar*) data, 1);
|
2001-06-23 01:49:35 -04:00
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
2009-07-09 10:26:20 -04:00
|
|
|
static void
|
|
|
|
unset_wm_check_hint (MetaScreen *screen)
|
|
|
|
{
|
2014-05-02 09:34:02 -04:00
|
|
|
XDeleteProperty (screen->display->xdisplay, screen->xroot,
|
2009-07-09 10:26:20 -04:00
|
|
|
screen->display->atom__NET_SUPPORTING_WM_CHECK);
|
|
|
|
}
|
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
static int
|
|
|
|
set_supported_hint (MetaScreen *screen)
|
|
|
|
{
|
2008-05-02 14:49:01 -04:00
|
|
|
Atom atoms[] = {
|
|
|
|
#define EWMH_ATOMS_ONLY
|
|
|
|
#define item(x) screen->display->atom_##x,
|
2015-04-27 19:36:46 -04:00
|
|
|
#include <x11/atomnames.h>
|
2008-05-02 14:49:01 -04:00
|
|
|
#undef item
|
|
|
|
#undef EWMH_ATOMS_ONLY
|
2014-03-02 17:16:50 -05:00
|
|
|
|
|
|
|
screen->display->atom__GTK_FRAME_EXTENTS,
|
2014-03-13 17:13:22 -04:00
|
|
|
screen->display->atom__GTK_SHOW_WINDOW_MENU,
|
2008-05-02 14:49:01 -04:00
|
|
|
};
|
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_SUPPORTED,
|
2001-06-09 23:17:15 -04:00
|
|
|
XA_ATOM,
|
2008-05-02 14:49:01 -04:00
|
|
|
32, PropModeReplace,
|
|
|
|
(guchar*) atoms, G_N_ELEMENTS(atoms));
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
2001-08-19 21:42:44 -04:00
|
|
|
static int
|
|
|
|
set_wm_icon_size_hint (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
#define N_VALS 6
|
|
|
|
gulong vals[N_VALS];
|
|
|
|
|
2012-12-03 14:58:13 -05:00
|
|
|
/* We've bumped the real icon size up to 96x96, but
|
|
|
|
* we really should not add these sorts of constraints
|
|
|
|
* on clients still using the legacy WM_HINTS interface.
|
|
|
|
*/
|
|
|
|
#define LEGACY_ICON_SIZE 32
|
|
|
|
|
2001-08-19 21:42:44 -04:00
|
|
|
/* min width, min height, max w, max h, width inc, height inc */
|
2012-12-03 14:58:13 -05:00
|
|
|
vals[0] = LEGACY_ICON_SIZE;
|
|
|
|
vals[1] = LEGACY_ICON_SIZE;
|
|
|
|
vals[2] = LEGACY_ICON_SIZE;
|
|
|
|
vals[3] = LEGACY_ICON_SIZE;
|
2001-08-19 21:42:44 -04:00
|
|
|
vals[4] = 0;
|
|
|
|
vals[5] = 0;
|
2012-12-03 14:58:13 -05:00
|
|
|
#undef LEGACY_ICON_SIZE
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-08-19 21:42:44 -04:00
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom_WM_ICON_SIZE,
|
2001-08-19 21:42:44 -04:00
|
|
|
XA_CARDINAL,
|
|
|
|
32, PropModeReplace, (guchar*) vals, N_VALS);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-08-19 21:42:44 -04:00
|
|
|
return Success;
|
|
|
|
#undef N_VALS
|
|
|
|
}
|
|
|
|
|
2011-05-03 13:04:01 -04:00
|
|
|
static void
|
2013-07-18 07:09:16 -04:00
|
|
|
meta_screen_ensure_xinerama_indices (MetaScreen *screen)
|
2011-05-03 13:04:01 -04:00
|
|
|
{
|
2013-07-18 07:09:16 -04:00
|
|
|
XineramaScreenInfo *infos;
|
|
|
|
int n_infos, i, j;
|
2011-05-03 13:04:01 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
if (screen->has_xinerama_indices)
|
|
|
|
return;
|
2011-05-03 13:04:01 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
screen->has_xinerama_indices = TRUE;
|
2011-05-03 13:04:01 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
if (!XineramaIsActive (screen->display->xdisplay))
|
|
|
|
return;
|
|
|
|
|
|
|
|
infos = XineramaQueryScreens (screen->display->xdisplay, &n_infos);
|
|
|
|
if (n_infos <= 0 || infos == NULL)
|
2011-05-03 13:04:01 -04:00
|
|
|
{
|
2013-07-18 07:09:16 -04:00
|
|
|
meta_XFree (infos);
|
|
|
|
return;
|
|
|
|
}
|
2011-05-03 13:04:01 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
for (i = 0; i < screen->n_monitor_infos; ++i)
|
|
|
|
{
|
|
|
|
for (j = 0; j < n_infos; ++j)
|
2011-05-03 13:04:01 -04:00
|
|
|
{
|
2013-07-18 07:09:16 -04:00
|
|
|
if (screen->monitor_infos[i].rect.x == infos[j].x_org &&
|
|
|
|
screen->monitor_infos[i].rect.y == infos[j].y_org &&
|
|
|
|
screen->monitor_infos[i].rect.width == infos[j].width &&
|
|
|
|
screen->monitor_infos[i].rect.height == infos[j].height)
|
|
|
|
screen->monitor_infos[i].xinerama_index = j;
|
2011-05-03 13:04:01 -04:00
|
|
|
}
|
|
|
|
}
|
2013-07-18 07:09:16 -04:00
|
|
|
|
|
|
|
meta_XFree (infos);
|
2011-05-03 13:04:01 -04:00
|
|
|
}
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
int
|
|
|
|
meta_screen_monitor_index_to_xinerama_index (MetaScreen *screen,
|
|
|
|
int index)
|
2011-05-20 04:56:12 -04:00
|
|
|
{
|
2013-12-14 08:24:27 -05:00
|
|
|
g_return_val_if_fail (index >= 0 && index < screen->n_monitor_infos, -1);
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
meta_screen_ensure_xinerama_indices (screen);
|
2011-05-20 04:56:12 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
return screen->monitor_infos[index].xinerama_index;
|
2011-05-20 04:56:12 -04:00
|
|
|
}
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
int
|
|
|
|
meta_screen_xinerama_index_to_monitor_index (MetaScreen *screen,
|
|
|
|
int index)
|
2011-05-20 04:56:12 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
meta_screen_ensure_xinerama_indices (screen);
|
2011-05-20 04:56:12 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
|
|
|
if (screen->monitor_infos[i].xinerama_index == index)
|
|
|
|
return i;
|
2011-05-20 04:56:12 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
return -1;
|
2011-05-20 04:56:12 -04:00
|
|
|
}
|
|
|
|
|
2002-09-28 22:50:24 -04:00
|
|
|
static void
|
2009-08-31 09:52:16 -04:00
|
|
|
reload_monitor_infos (MetaScreen *screen)
|
2002-09-28 22:50:24 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
GList *l;
|
2013-07-18 07:09:16 -04:00
|
|
|
MetaMonitorManager *manager;
|
2011-05-20 04:56:12 -04:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->workspaces; l != NULL; l = l->next)
|
2002-09-28 22:50:24 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWorkspace *space = l->data;
|
2013-07-18 07:09:16 -04:00
|
|
|
meta_workspace_invalidate_work_area (space);
|
2002-09-28 22:50:24 -04:00
|
|
|
}
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
/* Any previous screen->monitor_infos or screen->outputs is freed by the caller */
|
2002-09-28 22:50:24 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
screen->last_monitor_index = 0;
|
|
|
|
screen->has_xinerama_indices = FALSE;
|
|
|
|
screen->display->monitor_cache_invalidated = TRUE;
|
2011-05-03 13:04:01 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
manager = meta_monitor_manager_get ();
|
2011-05-20 04:56:12 -04:00
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
screen->monitor_infos = meta_monitor_manager_get_monitor_infos (manager,
|
2013-07-24 09:35:47 -04:00
|
|
|
(unsigned*)&screen->n_monitor_infos);
|
2013-07-18 07:09:16 -04:00
|
|
|
screen->primary_monitor_index = meta_monitor_manager_get_primary_index (manager);
|
2002-09-28 22:50:24 -04:00
|
|
|
}
|
|
|
|
|
2008-11-03 09:50:22 -05:00
|
|
|
/* The guard window allows us to leave minimized windows mapped so
|
|
|
|
* that compositor code may provide live previews of them.
|
|
|
|
* Instead of being unmapped/withdrawn, they get pushed underneath
|
2012-12-21 06:49:38 -05:00
|
|
|
* the guard window. We also select events on the guard window, which
|
|
|
|
* should effectively be forwarded to events on the background actor,
|
|
|
|
* providing that the scene graph is set up correctly.
|
|
|
|
*/
|
2014-02-01 23:09:53 -05:00
|
|
|
static Window
|
|
|
|
create_guard_window (Display *xdisplay, MetaScreen *screen)
|
2008-11-03 09:50:22 -05:00
|
|
|
{
|
|
|
|
XSetWindowAttributes attributes;
|
|
|
|
Window guard_window;
|
2009-06-13 16:45:32 -04:00
|
|
|
gulong create_serial;
|
2014-01-31 14:09:26 -05:00
|
|
|
|
2008-11-03 09:50:22 -05:00
|
|
|
attributes.event_mask = NoEventMask;
|
|
|
|
attributes.override_redirect = True;
|
|
|
|
|
2009-06-13 16:45:32 -04:00
|
|
|
/* We have to call record_add() after we have the new window ID,
|
|
|
|
* so save the serial for the CreateWindow request until then */
|
|
|
|
create_serial = XNextRequest(xdisplay);
|
2008-11-03 09:50:22 -05:00
|
|
|
guard_window =
|
|
|
|
XCreateWindow (xdisplay,
|
|
|
|
screen->xroot,
|
|
|
|
0, /* x */
|
|
|
|
0, /* y */
|
|
|
|
screen->rect.width,
|
|
|
|
screen->rect.height,
|
|
|
|
0, /* border width */
|
2014-01-31 14:09:26 -05:00
|
|
|
0, /* depth */
|
|
|
|
InputOnly, /* class */
|
2008-11-03 09:50:22 -05:00
|
|
|
CopyFromParent, /* visual */
|
2014-01-31 14:09:26 -05:00
|
|
|
CWEventMask|CWOverrideRedirect,
|
2008-11-03 09:50:22 -05:00
|
|
|
&attributes);
|
2012-12-21 06:49:38 -05:00
|
|
|
|
2013-10-16 22:39:21 -04:00
|
|
|
/* https://bugzilla.gnome.org/show_bug.cgi?id=710346 */
|
|
|
|
XStoreName (xdisplay, guard_window, "mutter guard window");
|
|
|
|
|
2012-12-21 06:49:38 -05:00
|
|
|
{
|
2014-07-15 17:13:31 -04:00
|
|
|
if (!meta_is_wayland_compositor ())
|
|
|
|
{
|
|
|
|
MetaBackendX11 *backend = META_BACKEND_X11 (meta_get_backend ());
|
|
|
|
Display *backend_xdisplay = meta_backend_x11_get_xdisplay (backend);
|
|
|
|
unsigned char mask_bits[XIMaskLen (XI_LASTEVENT)] = { 0 };
|
|
|
|
XIEventMask mask = { XIAllMasterDevices, sizeof (mask_bits), mask_bits };
|
|
|
|
|
|
|
|
XISetMask (mask.mask, XI_ButtonPress);
|
|
|
|
XISetMask (mask.mask, XI_ButtonRelease);
|
|
|
|
XISetMask (mask.mask, XI_Motion);
|
|
|
|
|
|
|
|
/* Sync on the connection we created the window on to
|
|
|
|
* make sure it's created before we select on it on the
|
|
|
|
* backend connection. */
|
|
|
|
XSync (xdisplay, False);
|
|
|
|
|
|
|
|
XISelectEvents (backend_xdisplay, guard_window, &mask, 1);
|
|
|
|
}
|
2012-12-21 06:49:38 -05:00
|
|
|
}
|
|
|
|
|
2009-06-13 16:45:32 -04:00
|
|
|
meta_stack_tracker_record_add (screen->stack_tracker,
|
2014-09-08 21:20:14 -04:00
|
|
|
guard_window,
|
2009-06-13 16:45:32 -04:00
|
|
|
create_serial);
|
|
|
|
|
2014-09-09 15:44:26 -04:00
|
|
|
meta_stack_tracker_lower (screen->stack_tracker,
|
|
|
|
guard_window);
|
2008-11-03 09:50:22 -05:00
|
|
|
XMapWindow (xdisplay, guard_window);
|
|
|
|
return guard_window;
|
|
|
|
}
|
|
|
|
|
2014-12-28 22:11:45 -05:00
|
|
|
static Window
|
|
|
|
take_manager_selection (MetaDisplay *display,
|
|
|
|
Window xroot,
|
|
|
|
Atom manager_atom,
|
|
|
|
int timestamp,
|
|
|
|
gboolean should_replace)
|
|
|
|
{
|
|
|
|
Display *xdisplay = display->xdisplay;
|
|
|
|
Window current_owner, new_owner;
|
|
|
|
|
|
|
|
current_owner = XGetSelectionOwner (xdisplay, manager_atom);
|
|
|
|
if (current_owner != None)
|
|
|
|
{
|
|
|
|
XSetWindowAttributes attrs;
|
|
|
|
|
|
|
|
if (should_replace)
|
|
|
|
{
|
|
|
|
/* We want to find out when the current selection owner dies */
|
|
|
|
meta_error_trap_push (display);
|
|
|
|
attrs.event_mask = StructureNotifyMask;
|
|
|
|
XChangeWindowAttributes (xdisplay, current_owner, CWEventMask, &attrs);
|
|
|
|
if (meta_error_trap_pop_with_return (display) != Success)
|
|
|
|
current_owner = None; /* don't wait for it to die later on */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_warning (_("Display \"%s\" already has a window manager; try using the --replace option to replace the current window manager."),
|
|
|
|
display->name);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need SelectionClear and SelectionRequest events on the new owner,
|
|
|
|
* but those cannot be masked, so we only need NoEventMask.
|
|
|
|
*/
|
|
|
|
new_owner = meta_create_offscreen_window (xdisplay, xroot, NoEventMask);
|
|
|
|
|
|
|
|
XSetSelectionOwner (xdisplay, manager_atom, new_owner, timestamp);
|
|
|
|
|
|
|
|
if (XGetSelectionOwner (xdisplay, manager_atom) != new_owner)
|
|
|
|
{
|
|
|
|
meta_warning ("Could not acquire selection: %s", XGetAtomName (xdisplay, manager_atom));
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Send client message indicating that we are now the selection owner */
|
|
|
|
XClientMessageEvent ev;
|
|
|
|
|
|
|
|
ev.type = ClientMessage;
|
|
|
|
ev.window = xroot;
|
|
|
|
ev.message_type = display->atom_MANAGER;
|
|
|
|
ev.format = 32;
|
|
|
|
ev.data.l[0] = timestamp;
|
|
|
|
ev.data.l[1] = manager_atom;
|
|
|
|
|
|
|
|
XSendEvent (xdisplay, xroot, False, StructureNotifyMask, (XEvent *) &ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for old window manager to go away */
|
|
|
|
if (current_owner != None)
|
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
|
|
|
|
/* We sort of block infinitely here which is probably lame. */
|
|
|
|
|
|
|
|
meta_verbose ("Waiting for old window manager to exit\n");
|
|
|
|
do
|
|
|
|
XWindowEvent (xdisplay, current_owner, StructureNotifyMask, &event);
|
|
|
|
while (event.type != DestroyNotify);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_owner;
|
|
|
|
}
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
MetaScreen*
|
|
|
|
meta_screen_new (MetaDisplay *display,
|
2003-11-24 12:47:48 -05:00
|
|
|
int number,
|
Fix issues on 64-bit machines with timestamps by using guint32 (like gtk+
2006-09-13 Elijah Newren <newren gmail com>
* src/common.h (MetaWindowMenuFunc):
* src/core.[ch] (meta_core_user_lower_and_unfocus,
meta_core_user_focus, meta_core_show_window_menu,
meta_core_begin_grab_op, meta_core_end_grab_op):
* src/delete.c (delete_ping_reply_func, delete_ping_timeout_func,
meta_window_delete):
* src/display.[ch] (struct MetaDisplay, struct MetaPingData,
sanity_check_timestamps, meta_display_open, event_callback,
meta_spew_event, meta_display_set_grab_op_cursor,
meta_display_begin_grab_op, meta_display_end_grab_op,
meta_display_ping_timeout, meta_display_ping_window,
process_pong_message, timestamp_too_old,
meta_display_set_input_focus_window):
* src/keybindings.[ch] (grab_keyboard, ungrab_keyboard,
meta_screen_grab_all_keys, meta_window_grab_all_keys,
meta_window_ungrab_all_keys, error_on_generic_command,
error_on_command, error_on_terminal_command):
* src/metacity-dialog.c (on_realize, warn_about_no_sm_support,
error_about_command, main):
* src/screen.[ch] (struct _MetaScreen, meta_screen_new,
meta_screen_show_desktop, meta_screen_apply_startup_properties):
* src/session.c (warn_about_lame_clients_and_finish_interact):
* src/window.[ch] (struct _MetaWindow,
intervening_user_event_occurred, window_activate,
meta_window_delete, meta_window_focus,
meta_window_send_icccm_message, meta_window_client_message,
menu_callback, meta_window_show_menu, struct EventScannerData,
check_use_this_motion_notify, meta_window_begin_grab_op,
meta_window_set_user_time):
* src/workspace.[ch] (focus_ancestor_or_mru_window,
meta_workspace_activate_with_focus, meta_workspace_activate,
meta_workspace_focus_default_window,
focus_ancestor_or_mru_window):
Fix issues on 64-bit machines with timestamps by using guint32
(like gtk+ does) instead of Time. #348305
2006-09-13 12:32:33 -04:00
|
|
|
guint32 timestamp)
|
2001-05-30 11:36:31 -04:00
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
2001-05-30 23:30:58 -04:00
|
|
|
Window xroot;
|
|
|
|
Display *xdisplay;
|
2002-06-08 19:55:27 -04:00
|
|
|
Window new_wm_sn_owner;
|
|
|
|
gboolean replace_current_wm;
|
|
|
|
Atom wm_sn_atom;
|
|
|
|
char buf[128];
|
2013-07-22 12:57:12 -04:00
|
|
|
MetaMonitorManager *manager;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-08 19:55:27 -04:00
|
|
|
replace_current_wm = meta_get_replace_current_wm ();
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-05-30 23:30:58 -04:00
|
|
|
/* Only display->name, display->xdisplay, and display->error_traps
|
|
|
|
* can really be used in this function, since normally screens are
|
|
|
|
* created from the MetaDisplay constructor
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-05-30 23:30:58 -04:00
|
|
|
xdisplay = display->xdisplay;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-05-30 23:30:58 -04:00
|
|
|
meta_verbose ("Trying screen %d on display '%s'\n",
|
|
|
|
number, display->name);
|
|
|
|
|
|
|
|
xroot = RootWindow (xdisplay, number);
|
|
|
|
|
|
|
|
/* FVWM checks for None here, I don't know if this
|
|
|
|
* ever actually happens
|
|
|
|
*/
|
|
|
|
if (xroot == None)
|
|
|
|
{
|
|
|
|
meta_warning (_("Screen %d on display '%s' is invalid\n"),
|
|
|
|
number, display->name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-06-08 19:55:27 -04:00
|
|
|
sprintf (buf, "WM_S%d", number);
|
|
|
|
|
2014-12-28 22:11:45 -05:00
|
|
|
wm_sn_atom = XInternAtom (xdisplay, buf, False);
|
|
|
|
new_wm_sn_owner = take_manager_selection (display, xroot, wm_sn_atom, timestamp, replace_current_wm);
|
|
|
|
if (new_wm_sn_owner == None)
|
|
|
|
return NULL;
|
2002-05-11 02:59:54 -04:00
|
|
|
|
2012-11-20 20:15:09 -05:00
|
|
|
{
|
|
|
|
long event_mask;
|
|
|
|
unsigned char mask_bits[XIMaskLen (XI_LASTEVENT)] = { 0 };
|
|
|
|
XIEventMask mask = { XIAllMasterDevices, sizeof (mask_bits), mask_bits };
|
|
|
|
|
|
|
|
XISetMask (mask.mask, XI_Enter);
|
|
|
|
XISetMask (mask.mask, XI_Leave);
|
|
|
|
XISetMask (mask.mask, XI_FocusIn);
|
|
|
|
XISetMask (mask.mask, XI_FocusOut);
|
2012-07-30 14:57:53 -04:00
|
|
|
#ifdef HAVE_XI23
|
|
|
|
if (META_DISPLAY_HAS_XINPUT_23 (display))
|
|
|
|
{
|
|
|
|
XISetMask (mask.mask, XI_BarrierHit);
|
|
|
|
XISetMask (mask.mask, XI_BarrierLeave);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_XI23 */
|
2012-11-20 20:15:09 -05:00
|
|
|
XISelectEvents (xdisplay, xroot, &mask, 1);
|
|
|
|
|
|
|
|
event_mask = (SubstructureRedirectMask | SubstructureNotifyMask |
|
|
|
|
StructureNotifyMask | ColormapChangeMask | PropertyChangeMask);
|
|
|
|
XSelectInput (xdisplay, xroot, event_mask);
|
|
|
|
}
|
|
|
|
|
2014-07-22 11:09:12 -04:00
|
|
|
/* Select for cursor changes so the cursor tracker is up to date. */
|
|
|
|
XFixesSelectCursorInput (xdisplay, xroot, XFixesDisplayCursorNotifyMask);
|
|
|
|
|
2008-11-17 15:56:34 -05:00
|
|
|
screen = g_object_new (META_TYPE_SCREEN, NULL);
|
2002-06-22 01:11:04 -04:00
|
|
|
screen->closing = 0;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
screen->display = display;
|
2001-05-30 11:36:31 -04:00
|
|
|
screen->number = number;
|
2001-06-02 21:33:27 -04:00
|
|
|
screen->screen_name = get_screen_name (display, number);
|
2001-05-30 23:30:58 -04:00
|
|
|
screen->xscreen = ScreenOfDisplay (xdisplay, number);
|
2001-06-18 02:11:53 -04:00
|
|
|
screen->xroot = xroot;
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
screen->rect.x = screen->rect.y = 0;
|
2013-08-19 05:12:42 -04:00
|
|
|
|
2013-07-22 12:57:12 -04:00
|
|
|
manager = meta_monitor_manager_get ();
|
|
|
|
g_signal_connect (manager, "monitors-changed",
|
|
|
|
G_CALLBACK (on_monitors_changed), screen);
|
|
|
|
|
|
|
|
meta_monitor_manager_get_screen_size (manager,
|
|
|
|
&screen->rect.width,
|
|
|
|
&screen->rect.height);
|
2012-01-07 17:21:32 -05:00
|
|
|
|
2001-07-25 23:14:45 -04:00
|
|
|
screen->current_cursor = -1; /* invalid/unset */
|
2001-09-08 23:44:42 -04:00
|
|
|
screen->default_xvisual = DefaultVisualOfScreen (screen->xscreen);
|
|
|
|
screen->default_depth = DefaultDepthOfScreen (screen->xscreen);
|
2002-04-21 15:35:02 -04:00
|
|
|
|
2002-06-08 19:55:27 -04:00
|
|
|
screen->wm_sn_selection_window = new_wm_sn_owner;
|
|
|
|
screen->wm_sn_atom = wm_sn_atom;
|
2014-12-28 22:11:45 -05:00
|
|
|
screen->wm_sn_timestamp = timestamp;
|
2009-09-25 15:47:22 -04:00
|
|
|
screen->work_area_later = 0;
|
2013-03-14 16:55:49 -04:00
|
|
|
screen->check_fullscreen_later = 0;
|
2002-05-16 00:03:36 -04:00
|
|
|
|
2002-08-04 16:17:37 -04:00
|
|
|
screen->active_workspace = NULL;
|
2002-10-16 16:12:24 -04:00
|
|
|
screen->workspaces = NULL;
|
2002-05-16 00:03:36 -04:00
|
|
|
screen->rows_of_workspaces = 1;
|
|
|
|
screen->columns_of_workspaces = -1;
|
|
|
|
screen->vertical_workspaces = FALSE;
|
2002-10-01 15:57:26 -04:00
|
|
|
screen->starting_corner = META_SCREEN_TOPLEFT;
|
2009-04-02 07:25:53 -04:00
|
|
|
screen->guard_window = None;
|
2002-09-28 22:50:24 -04:00
|
|
|
|
2015-02-18 14:16:52 -05:00
|
|
|
/* If we're a Wayland compositor, then we don't grab the COW, since it
|
|
|
|
* will map it. */
|
|
|
|
if (!meta_is_wayland_compositor ())
|
|
|
|
screen->composite_overlay_window = XCompositeGetOverlayWindow (xdisplay, xroot);
|
2014-07-10 14:03:03 -04:00
|
|
|
|
2014-05-08 18:35:49 -04:00
|
|
|
/* Now that we've gotten taken a reference count on the COW, we
|
|
|
|
* can close the helper that is holding on to it */
|
|
|
|
meta_restart_finish ();
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
reload_monitor_infos (screen);
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2001-07-25 23:14:45 -04:00
|
|
|
meta_screen_set_cursor (screen, META_CURSOR_DEFAULT);
|
2002-06-08 23:44:16 -04:00
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
/* Handle creating a no_focus_window for this screen */
|
2007-03-31 19:34:36 -04:00
|
|
|
screen->no_focus_window =
|
|
|
|
meta_create_offscreen_window (display->xdisplay,
|
|
|
|
screen->xroot,
|
|
|
|
FocusChangeMask|KeyPressMask|KeyReleaseMask);
|
2005-12-28 01:24:30 -05:00
|
|
|
XMapWindow (display->xdisplay, screen->no_focus_window);
|
|
|
|
/* Done with no_focus_window stuff */
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-08-19 21:42:44 -04:00
|
|
|
set_wm_icon_size_hint (screen);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
set_supported_hint (screen);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-09 23:17:15 -04:00
|
|
|
set_wm_check_hint (screen);
|
2002-05-16 00:03:36 -04:00
|
|
|
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
set_desktop_viewport_hint (screen);
|
|
|
|
|
|
|
|
set_desktop_geometry_hint (screen);
|
|
|
|
|
2002-05-16 00:03:36 -04:00
|
|
|
meta_screen_update_workspace_layout (screen);
|
2002-11-20 23:48:53 -05:00
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
/* Screens must have at least one workspace at all times,
|
|
|
|
* so create that required workspace.
|
|
|
|
*/
|
2014-06-05 16:28:56 -04:00
|
|
|
meta_workspace_new (screen);
|
2003-02-14 02:03:46 -05:00
|
|
|
|
2002-04-28 00:52:26 -04:00
|
|
|
screen->keys_grabbed = FALSE;
|
2001-06-06 00:47:37 -04:00
|
|
|
meta_screen_grab_keys (screen);
|
2001-06-17 23:24:25 -04:00
|
|
|
|
2001-06-18 02:11:53 -04:00
|
|
|
screen->ui = meta_ui_new (screen->display->xdisplay,
|
2001-06-17 23:24:25 -04:00
|
|
|
screen->xscreen);
|
2001-06-10 14:46:46 -04:00
|
|
|
|
2016-01-10 09:16:08 -05:00
|
|
|
screen->tile_preview_timeout_id = 0;
|
|
|
|
|
2001-06-10 14:46:46 -04:00
|
|
|
screen->stack = meta_stack_new (screen);
|
2009-06-13 16:45:32 -04:00
|
|
|
screen->stack_tracker = meta_stack_tracker_new (screen);
|
2001-12-09 22:55:26 -05:00
|
|
|
|
|
|
|
meta_prefs_add_listener (prefs_changed_callback, screen);
|
2002-10-25 19:35:50 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
meta_verbose ("Added screen %d ('%s') root 0x%lx\n",
|
2003-11-20 21:32:05 -05:00
|
|
|
screen->number, screen->screen_name, screen->xroot);
|
2013-07-18 07:09:16 -04:00
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
return screen;
|
|
|
|
}
|
|
|
|
|
2014-06-05 16:28:56 -04:00
|
|
|
void
|
|
|
|
meta_screen_init_workspaces (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
MetaWorkspace *current_workspace;
|
2015-06-23 18:32:07 -04:00
|
|
|
uint32_t current_workspace_index = 0;
|
2014-06-05 16:28:56 -04:00
|
|
|
guint32 timestamp;
|
|
|
|
|
|
|
|
g_return_if_fail (META_IS_SCREEN (screen));
|
|
|
|
|
|
|
|
timestamp = screen->wm_sn_timestamp;
|
|
|
|
|
|
|
|
/* Get current workspace */
|
|
|
|
if (meta_prop_get_cardinal (screen->display,
|
|
|
|
screen->xroot,
|
|
|
|
screen->display->atom__NET_CURRENT_DESKTOP,
|
|
|
|
¤t_workspace_index))
|
|
|
|
meta_verbose ("Read existing _NET_CURRENT_DESKTOP = %d\n",
|
|
|
|
(int) current_workspace_index);
|
|
|
|
else
|
|
|
|
meta_verbose ("No _NET_CURRENT_DESKTOP present\n");
|
|
|
|
|
|
|
|
update_num_workspaces (screen, timestamp);
|
|
|
|
|
|
|
|
set_workspace_names (screen);
|
|
|
|
|
|
|
|
/* Switch to the _NET_CURRENT_DESKTOP workspace */
|
|
|
|
current_workspace = meta_screen_get_workspace_by_index (screen,
|
|
|
|
current_workspace_index);
|
|
|
|
|
|
|
|
if (current_workspace != NULL)
|
|
|
|
meta_workspace_activate (current_workspace, timestamp);
|
2014-07-10 11:24:32 -04:00
|
|
|
else
|
|
|
|
meta_workspace_activate (screen->workspaces->data, timestamp);
|
2014-06-05 16:28:56 -04:00
|
|
|
}
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
void
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
meta_screen_free (MetaScreen *screen,
|
|
|
|
guint32 timestamp)
|
2002-06-08 19:55:27 -04:00
|
|
|
{
|
|
|
|
MetaDisplay *display;
|
|
|
|
|
|
|
|
display = screen->display;
|
2002-06-22 01:11:04 -04:00
|
|
|
|
|
|
|
screen->closing += 1;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-03-18 17:31:22 -04:00
|
|
|
meta_compositor_unmanage (screen->display->compositor);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
meta_display_unmanage_windows_for_screen (display, screen, timestamp);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-12-09 22:55:26 -05:00
|
|
|
meta_prefs_remove_listener (prefs_changed_callback, screen);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
meta_screen_ungrab_keys (screen);
|
2001-08-19 14:09:10 -04:00
|
|
|
|
2001-06-18 02:11:53 -04:00
|
|
|
meta_ui_free (screen->ui);
|
2001-06-03 17:39:57 -04:00
|
|
|
|
2001-06-10 14:46:46 -04:00
|
|
|
meta_stack_free (screen->stack);
|
2009-06-13 16:45:32 -04:00
|
|
|
meta_stack_tracker_free (screen->stack_tracker);
|
2002-01-04 17:18:10 -05:00
|
|
|
|
2014-04-06 15:52:44 -04:00
|
|
|
meta_error_trap_push (screen->display);
|
2002-01-04 17:18:10 -05:00
|
|
|
XSelectInput (screen->display->xdisplay, screen->xroot, 0);
|
2010-10-25 14:44:30 -04:00
|
|
|
if (meta_error_trap_pop_with_return (screen->display) != Success)
|
2013-09-11 04:37:36 -04:00
|
|
|
meta_warning ("Could not release screen %d on display \"%s\"\n",
|
2002-01-04 17:18:10 -05:00
|
|
|
screen->number, screen->display->name);
|
on unminimize, queue calc_showing on all transients
2002-05-05 Havoc Pennington <hp@pobox.com>
* src/window.c (meta_window_unminimize): on unminimize, queue
calc_showing on all transients
(meta_window_activate): on activate, unminimize all a window's
ancestors, not just the window itself.
* src/workspace.c (set_work_area_hint): don't increment "tmp" by
16 unsigned long, increment by 4
* src/window.c (meta_window_free): if a window isn't minimized,
restore its WM_STATE to NormalState instead of IconicState,
since IconicState on initial window map means that the window
should be minimized.
* src/workspace.c (meta_workspace_invalidate_work_area): queue an
idle to recompute the work area hint.
(set_work_area_hint): we need 4*num_workspaces ints, not just
num_workspaces.
* src/screen.c (meta_screen_new): add work_area_idle field,
handle it on screen shutdown
* src/common.h (META_PRIORITY_PREFS_NOTIFY,
META_PRIORITY_WORK_AREA_HINT): define some idle priorities
* src/window.c (meta_window_calc_showing): hide windows if
their parent window is minimized
(meta_window_minimize): also queue_calc_showing on all
transients of the window being minimized
* src/place.c (constrain_placement): function to apply
placement-time-only constraints, such as "not off the left of the
screen"
(meta_window_place): put dialogs down a bit over their parent,
not right at the top.
(meta_window_place): when centering a dialog, center it
on the current xinerama screen, rather than the entire
screen.
* src/screen.c (meta_screen_get_current_xinerama): new function,
but not implemented
2002-05-05 01:41:13 -04:00
|
|
|
|
2009-07-09 10:26:20 -04:00
|
|
|
unset_wm_check_hint (screen);
|
|
|
|
|
2002-06-08 19:55:27 -04:00
|
|
|
XDestroyWindow (screen->display->xdisplay,
|
|
|
|
screen->wm_sn_selection_window);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2009-09-25 15:47:22 -04:00
|
|
|
if (screen->work_area_later != 0)
|
2013-11-09 11:06:53 -05:00
|
|
|
meta_later_remove (screen->work_area_later);
|
2013-03-14 16:55:49 -04:00
|
|
|
if (screen->check_fullscreen_later != 0)
|
2013-11-09 11:06:53 -05:00
|
|
|
meta_later_remove (screen->check_fullscreen_later);
|
2003-10-12 02:25:38 -04:00
|
|
|
|
2014-12-28 22:50:25 -05:00
|
|
|
g_free (screen->monitor_infos);
|
2010-06-24 14:41:28 -04:00
|
|
|
|
2016-01-10 09:16:08 -05:00
|
|
|
if (screen->tile_preview_timeout_id)
|
|
|
|
g_source_remove (screen->tile_preview_timeout_id);
|
2010-06-24 14:41:28 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
g_free (screen->screen_name);
|
2008-11-17 15:56:34 -05:00
|
|
|
|
|
|
|
g_object_unref (screen);
|
2001-05-30 11:36:31 -04:00
|
|
|
}
|
|
|
|
|
2014-02-01 23:09:53 -05:00
|
|
|
void
|
|
|
|
meta_screen_create_guard_window (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
if (screen->guard_window == None)
|
|
|
|
screen->guard_window = create_guard_window (screen->display->xdisplay, screen);
|
|
|
|
}
|
|
|
|
|
2013-12-19 11:51:49 -05:00
|
|
|
void
|
|
|
|
meta_screen_manage_all_windows (MetaScreen *screen)
|
2001-05-31 02:42:58 -04:00
|
|
|
{
|
2014-09-08 21:20:14 -04:00
|
|
|
guint64 *_children;
|
|
|
|
guint64 *children;
|
2013-12-30 15:26:10 -05:00
|
|
|
int n_children, i;
|
2013-12-19 11:51:49 -05:00
|
|
|
|
|
|
|
meta_stack_freeze (screen->stack);
|
2013-12-30 15:26:10 -05:00
|
|
|
meta_stack_tracker_get_stack (screen->stack_tracker, &_children, &n_children);
|
2001-05-31 02:42:58 -04:00
|
|
|
|
2013-12-30 15:26:10 -05:00
|
|
|
/* Copy the stack as it will be modified as part of the loop */
|
2014-09-08 21:20:14 -04:00
|
|
|
children = g_memdup (_children, sizeof (guint64) * n_children);
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2006-02-16 15:26:05 -05:00
|
|
|
for (i = 0; i < n_children; ++i)
|
2001-05-31 02:42:58 -04:00
|
|
|
{
|
2014-09-08 21:20:14 -04:00
|
|
|
g_assert (META_STACK_ID_IS_X11 (children[i]));
|
|
|
|
meta_window_x11_new (screen->display, children[i], TRUE,
|
2014-02-01 19:19:22 -05:00
|
|
|
META_COMP_EFFECT_NONE);
|
2006-02-16 15:26:05 -05:00
|
|
|
}
|
2001-05-31 02:42:58 -04:00
|
|
|
|
2013-12-30 15:26:10 -05:00
|
|
|
g_free (children);
|
2001-06-10 23:24:20 -04:00
|
|
|
meta_stack_thaw (screen->stack);
|
2006-02-16 15:26:05 -05:00
|
|
|
}
|
|
|
|
|
2001-12-09 22:55:26 -05:00
|
|
|
static void
|
|
|
|
prefs_changed_callback (MetaPreference pref,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
MetaScreen *screen = data;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2012-03-07 19:29:58 -05:00
|
|
|
if ((pref == META_PREF_NUM_WORKSPACES ||
|
|
|
|
pref == META_PREF_DYNAMIC_WORKSPACES) &&
|
|
|
|
!meta_prefs_get_dynamic_workspaces ())
|
2001-12-09 22:55:26 -05:00
|
|
|
{
|
2011-06-24 12:14:15 -04:00
|
|
|
/* GSettings doesn't provide timestamps, but luckily update_num_workspaces
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
* often doesn't need it...
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
guint32 timestamp =
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
meta_display_get_current_time_roundtrip (screen->display);
|
|
|
|
update_num_workspaces (screen, timestamp);
|
2001-12-09 22:55:26 -05:00
|
|
|
}
|
2002-11-03 14:06:39 -05:00
|
|
|
else if (pref == META_PREF_WORKSPACE_NAMES)
|
|
|
|
{
|
2003-02-14 02:03:46 -05:00
|
|
|
set_workspace_names (screen);
|
2002-11-03 14:06:39 -05:00
|
|
|
}
|
2001-12-09 22:55:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
static char*
|
|
|
|
get_screen_name (MetaDisplay *display,
|
|
|
|
int number)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
char *dname;
|
|
|
|
char *scr;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
/* DisplayString gives us a sort of canonical display,
|
|
|
|
* vs. the user-entered name from XDisplayName()
|
|
|
|
*/
|
|
|
|
dname = g_strdup (DisplayString (display->xdisplay));
|
|
|
|
|
|
|
|
/* Change display name to specify this screen.
|
|
|
|
*/
|
|
|
|
p = strrchr (dname, ':');
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
p = strchr (p, '.');
|
|
|
|
if (p)
|
|
|
|
*p = '\0';
|
|
|
|
}
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
scr = g_strdup_printf ("%s.%d", dname, number);
|
|
|
|
|
|
|
|
g_free (dname);
|
|
|
|
|
|
|
|
return scr;
|
|
|
|
}
|
2001-06-03 14:33:59 -04:00
|
|
|
|
|
|
|
void
|
2014-08-15 20:05:48 -04:00
|
|
|
meta_screen_foreach_window (MetaScreen *screen,
|
2014-08-15 20:10:25 -04:00
|
|
|
MetaListWindowsFlags flags,
|
2014-08-15 20:05:48 -04:00
|
|
|
MetaScreenWindowFunc func,
|
|
|
|
gpointer data)
|
2001-06-03 14:33:59 -04:00
|
|
|
{
|
2014-08-15 20:05:48 -04:00
|
|
|
GSList *windows;
|
2001-06-03 14:33:59 -04:00
|
|
|
|
|
|
|
/* If we end up doing this often, just keeping a list
|
|
|
|
* of windows might be sensible.
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-08-15 20:10:25 -04:00
|
|
|
windows = meta_display_list_windows (screen->display, flags);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-08-15 20:05:48 -04:00
|
|
|
g_slist_foreach (windows, (GFunc) func, data);
|
2014-08-15 20:02:21 -04:00
|
|
|
|
|
|
|
g_slist_free (windows);
|
2001-06-03 14:33:59 -04:00
|
|
|
}
|
|
|
|
|
2001-06-09 01:14:43 -04:00
|
|
|
int
|
|
|
|
meta_screen_get_n_workspaces (MetaScreen *screen)
|
2002-10-16 16:12:24 -04:00
|
|
|
{
|
|
|
|
return g_list_length (screen->workspaces);
|
|
|
|
}
|
|
|
|
|
2008-11-17 16:34:28 -05:00
|
|
|
/**
|
|
|
|
* meta_screen_get_workspace_by_index:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
* @index: index of one of the screen's workspaces
|
|
|
|
*
|
|
|
|
* Gets the workspace object for one of a screen's workspaces given the workspace
|
|
|
|
* index. It's valid to call this function with an out-of-range index and it
|
|
|
|
* will robustly return %NULL.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): the workspace object with specified index, or %NULL
|
|
|
|
* if the index is out of range.
|
|
|
|
*/
|
2002-10-16 16:12:24 -04:00
|
|
|
MetaWorkspace*
|
|
|
|
meta_screen_get_workspace_by_index (MetaScreen *screen,
|
|
|
|
int idx)
|
2001-06-09 01:14:43 -04:00
|
|
|
{
|
2014-08-15 19:41:37 -04:00
|
|
|
return g_list_nth_data (screen->workspaces, idx);
|
2001-12-09 22:55:26 -05:00
|
|
|
}
|
2001-06-09 01:14:43 -04:00
|
|
|
|
2002-10-21 17:44:35 -04:00
|
|
|
static void
|
2002-08-13 20:08:30 -04:00
|
|
|
set_number_of_spaces_hint (MetaScreen *screen,
|
|
|
|
int n_spaces)
|
|
|
|
{
|
|
|
|
unsigned long data[1];
|
|
|
|
|
|
|
|
if (screen->closing > 0)
|
2002-10-21 17:44:35 -04:00
|
|
|
return;
|
2002-08-13 20:08:30 -04:00
|
|
|
|
|
|
|
data[0] = n_spaces;
|
|
|
|
|
2006-01-20 17:03:56 -05:00
|
|
|
meta_verbose ("Setting _NET_NUMBER_OF_DESKTOPS to %lu\n", data[0]);
|
2002-08-13 20:08:30 -04:00
|
|
|
|
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_NUMBER_OF_DESKTOPS,
|
2002-08-13 20:08:30 -04:00
|
|
|
XA_CARDINAL,
|
|
|
|
32, PropModeReplace, (guchar*) data, 1);
|
2010-10-25 14:44:30 -04:00
|
|
|
meta_error_trap_pop (screen->display);
|
2002-08-13 20:08:30 -04:00
|
|
|
}
|
|
|
|
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
static void
|
|
|
|
set_desktop_geometry_hint (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
unsigned long data[2];
|
|
|
|
|
|
|
|
if (screen->closing > 0)
|
|
|
|
return;
|
|
|
|
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
data[0] = screen->rect.width;
|
|
|
|
data[1] = screen->rect.height;
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
|
2006-01-20 17:03:56 -05:00
|
|
|
meta_verbose ("Setting _NET_DESKTOP_GEOMETRY to %lu, %lu\n", data[0], data[1]);
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
|
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_DESKTOP_GEOMETRY,
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
XA_CARDINAL,
|
|
|
|
32, PropModeReplace, (guchar*) data, 2);
|
2010-10-25 14:44:30 -04:00
|
|
|
meta_error_trap_pop (screen->display);
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_desktop_viewport_hint (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
unsigned long data[2];
|
|
|
|
|
|
|
|
if (screen->closing > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
* Mutter does not implement viewports, so this is a fixed 0,0
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
*/
|
|
|
|
data[0] = 0;
|
|
|
|
data[1] = 0;
|
|
|
|
|
|
|
|
meta_verbose ("Setting _NET_DESKTOP_VIEWPORT to 0, 0\n");
|
|
|
|
|
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_DESKTOP_VIEWPORT,
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
XA_CARDINAL,
|
|
|
|
32, PropModeReplace, (guchar*) data, 2);
|
2010-10-25 14:44:30 -04:00
|
|
|
meta_error_trap_pop (screen->display);
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
}
|
|
|
|
|
2008-10-24 06:03:43 -04:00
|
|
|
void
|
|
|
|
meta_screen_remove_workspace (MetaScreen *screen, MetaWorkspace *workspace,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
|
|
|
GList *l;
|
2014-08-16 14:49:18 -04:00
|
|
|
GList *next;
|
2008-10-24 06:03:43 -04:00
|
|
|
MetaWorkspace *neighbour = NULL;
|
2010-02-11 05:06:38 -05:00
|
|
|
int index;
|
2011-01-25 16:27:31 -05:00
|
|
|
gboolean active_index_changed;
|
2010-02-11 05:06:38 -05:00
|
|
|
int new_num;
|
2008-10-24 06:03:43 -04:00
|
|
|
|
2014-08-16 14:49:18 -04:00
|
|
|
l = g_list_find (screen->workspaces, workspace);
|
|
|
|
if (!l)
|
|
|
|
return;
|
2008-10-24 06:03:43 -04:00
|
|
|
|
2014-08-16 14:49:18 -04:00
|
|
|
next = l->next;
|
2008-10-24 06:03:43 -04:00
|
|
|
|
2014-08-16 14:49:18 -04:00
|
|
|
if (l->prev)
|
|
|
|
neighbour = l->prev->data;
|
|
|
|
else if (l->next)
|
|
|
|
neighbour = l->next->data;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Cannot remove the only workspace! */
|
|
|
|
return;
|
|
|
|
}
|
2009-01-20 07:48:59 -05:00
|
|
|
|
2008-10-24 06:03:43 -04:00
|
|
|
meta_workspace_relocate_windows (workspace, neighbour);
|
|
|
|
|
|
|
|
if (workspace == screen->active_workspace)
|
|
|
|
meta_workspace_activate (neighbour, timestamp);
|
|
|
|
|
2009-07-02 11:19:02 -04:00
|
|
|
/* To emit the signal after removing the workspace */
|
|
|
|
index = meta_workspace_index (workspace);
|
2011-01-25 16:27:31 -05:00
|
|
|
active_index_changed = index < meta_screen_get_active_workspace_index (screen);
|
2009-07-02 11:19:02 -04:00
|
|
|
|
2008-10-24 06:03:43 -04:00
|
|
|
/* This also removes the workspace from the screens list */
|
2008-11-17 15:56:34 -05:00
|
|
|
meta_workspace_remove (workspace);
|
2008-10-24 06:03:43 -04:00
|
|
|
|
2010-02-11 05:06:38 -05:00
|
|
|
new_num = g_list_length (screen->workspaces);
|
|
|
|
|
|
|
|
set_number_of_spaces_hint (screen, new_num);
|
2012-03-07 19:29:58 -05:00
|
|
|
|
|
|
|
if (!meta_prefs_get_dynamic_workspaces ())
|
|
|
|
meta_prefs_set_num_workspaces (new_num);
|
2008-10-24 06:03:43 -04:00
|
|
|
|
2011-01-25 16:27:31 -05:00
|
|
|
/* If deleting a workspace before the current workspace, the active
|
|
|
|
* workspace index changes, so we need to update that hint */
|
|
|
|
if (active_index_changed)
|
2012-03-07 16:32:34 -05:00
|
|
|
meta_screen_set_active_workspace_hint (screen);
|
2011-01-25 16:27:31 -05:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = next; l != NULL; l = l->next)
|
2009-01-09 10:04:53 -05:00
|
|
|
{
|
|
|
|
MetaWorkspace *w = l->data;
|
2014-08-16 08:03:10 -04:00
|
|
|
meta_workspace_index_changed (w);
|
2009-01-09 10:04:53 -05:00
|
|
|
}
|
|
|
|
|
2008-10-24 06:03:43 -04:00
|
|
|
meta_screen_queue_workarea_recalc (screen);
|
2008-11-17 17:22:28 -05:00
|
|
|
|
2009-07-02 11:19:02 -04:00
|
|
|
g_signal_emit (screen, screen_signals[WORKSPACE_REMOVED], 0, index);
|
2008-11-17 17:22:28 -05:00
|
|
|
g_object_notify (G_OBJECT (screen), "n-workspaces");
|
2008-10-24 06:03:43 -04:00
|
|
|
}
|
|
|
|
|
2008-11-17 16:34:28 -05:00
|
|
|
/**
|
|
|
|
* meta_screen_append_new_workspace:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
* @activate: %TRUE if the workspace should be switched to after creation
|
|
|
|
* @timestamp: if switching to a new workspace, timestamp to be used when
|
|
|
|
* focusing a window on the new workspace. (Doesn't hurt to pass a valid
|
|
|
|
* timestamp when available even if not switching workspaces.)
|
|
|
|
*
|
|
|
|
* Append a new workspace to the screen and (optionally) switch to that
|
|
|
|
* screen.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): the newly appended workspace.
|
|
|
|
*/
|
2008-10-24 06:11:28 -04:00
|
|
|
MetaWorkspace *
|
|
|
|
meta_screen_append_new_workspace (MetaScreen *screen, gboolean activate,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
|
|
|
MetaWorkspace *w;
|
2010-02-11 05:06:38 -05:00
|
|
|
int new_num;
|
2008-10-24 06:11:28 -04:00
|
|
|
|
|
|
|
/* This also adds the workspace to the screen list */
|
|
|
|
w = meta_workspace_new (screen);
|
|
|
|
|
|
|
|
if (!w)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (activate)
|
|
|
|
meta_workspace_activate (w, timestamp);
|
|
|
|
|
2010-02-11 05:06:38 -05:00
|
|
|
new_num = g_list_length (screen->workspaces);
|
|
|
|
|
|
|
|
set_number_of_spaces_hint (screen, new_num);
|
2012-03-07 19:29:58 -05:00
|
|
|
|
|
|
|
if (!meta_prefs_get_dynamic_workspaces ())
|
|
|
|
meta_prefs_set_num_workspaces (new_num);
|
2008-10-24 06:11:28 -04:00
|
|
|
|
|
|
|
meta_screen_queue_workarea_recalc (screen);
|
|
|
|
|
2009-07-02 11:19:02 -04:00
|
|
|
g_signal_emit (screen, screen_signals[WORKSPACE_ADDED],
|
|
|
|
0, meta_workspace_index (w));
|
2008-11-17 17:22:28 -05:00
|
|
|
g_object_notify (G_OBJECT (screen), "n-workspaces");
|
|
|
|
|
2008-10-24 06:11:28 -04:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
2008-10-24 06:03:43 -04:00
|
|
|
|
2001-12-09 22:55:26 -05:00
|
|
|
static void
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
update_num_workspaces (MetaScreen *screen,
|
|
|
|
guint32 timestamp)
|
2001-12-09 22:55:26 -05:00
|
|
|
{
|
2011-12-06 10:41:27 -05:00
|
|
|
int new_num, old_num;
|
2014-08-15 19:49:49 -04:00
|
|
|
GList *l;
|
2001-12-09 22:55:26 -05:00
|
|
|
int i;
|
|
|
|
GList *extras;
|
|
|
|
MetaWorkspace *last_remaining;
|
|
|
|
gboolean need_change_space;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2012-10-17 14:15:10 -04:00
|
|
|
if (meta_prefs_get_dynamic_workspaces ())
|
|
|
|
{
|
|
|
|
int n_items;
|
2015-06-23 18:09:07 -04:00
|
|
|
uint32_t *list;
|
2012-10-17 14:15:10 -04:00
|
|
|
|
|
|
|
n_items = 0;
|
|
|
|
list = NULL;
|
|
|
|
|
|
|
|
if (meta_prop_get_cardinal_list (screen->display, screen->xroot,
|
|
|
|
screen->display->atom__NET_NUMBER_OF_DESKTOPS,
|
|
|
|
&list, &n_items))
|
|
|
|
{
|
|
|
|
new_num = list[0];
|
|
|
|
meta_XFree (list);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new_num = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new_num = meta_prefs_get_num_workspaces ();
|
|
|
|
}
|
2001-12-09 22:55:26 -05:00
|
|
|
|
|
|
|
g_assert (new_num > 0);
|
|
|
|
|
2010-02-11 05:06:38 -05:00
|
|
|
if (g_list_length (screen->workspaces) == (guint) new_num)
|
|
|
|
return;
|
|
|
|
|
2001-12-09 22:55:26 -05:00
|
|
|
last_remaining = NULL;
|
|
|
|
extras = NULL;
|
|
|
|
i = 0;
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->workspaces; l != NULL; l = l->next)
|
2001-12-09 22:55:26 -05:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWorkspace *w = l->data;
|
2001-12-09 22:55:26 -05:00
|
|
|
|
2003-01-07 23:23:18 -05:00
|
|
|
if (i >= new_num)
|
2002-10-16 16:12:24 -04:00
|
|
|
extras = g_list_prepend (extras, w);
|
|
|
|
else
|
|
|
|
last_remaining = w;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-10-16 16:12:24 -04:00
|
|
|
++i;
|
2001-12-09 22:55:26 -05:00
|
|
|
}
|
2011-12-06 10:41:27 -05:00
|
|
|
old_num = i;
|
2001-12-09 22:55:26 -05:00
|
|
|
|
|
|
|
g_assert (last_remaining);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2001-12-09 22:55:26 -05:00
|
|
|
/* Get rid of the extra workspaces by moving all their windows
|
|
|
|
* to last_remaining, then activating last_remaining if
|
|
|
|
* one of the removed workspaces was active. This will be a bit
|
|
|
|
* wacky if the config tool for changing number of workspaces
|
|
|
|
* is on a removed workspace ;-)
|
|
|
|
*/
|
|
|
|
need_change_space = FALSE;
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = extras; l != NULL; l = l->next)
|
2001-12-09 22:55:26 -05:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWorkspace *w = l->data;
|
2001-12-09 22:55:26 -05:00
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
meta_workspace_relocate_windows (w, last_remaining);
|
2001-12-09 22:55:26 -05:00
|
|
|
|
|
|
|
if (w == screen->active_workspace)
|
|
|
|
need_change_space = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_change_space)
|
Partial audit to fix timestamp usage. One step towards fixing #355180; see
2006-09-18 Elijah Newren <newren gmail com>
Partial audit to fix timestamp usage. One step towards fixing
#355180; see important comments in that bug.
* src/core.[ch] (meta_core_unshade, meta_core_shade):
* src/delete.c (meta_window_present_delete_dialog,
delete_ping_timeout_func):
* src/display.[ch] (meta_display_open, meta_display_close,
event_callback, meta_display_begin_grab_op,
process_selection_clear, meta_display_unmanage_screen,
meta_display_unmanage_windows_for_screen):
* src/frames.c (meta_frames_button_press_event):
* src/keybindings.c (handle_toggle_shade):
* src/main.c (main):
* src/screen.[ch] (update_num_workspaces, meta_screen_new,
meta_screen_free, prefs_changed_callback):
* src/window.[ch] (meta_window_free, finish_minimize,
implement_showing, meta_window_show, meta_window_maximize,
meta_window_make_fullscreen_internal,
meta_window_unmake_fullscreen, meta_window_shade,
meta_window_unshade, window_activate, send_sync_request,
meta_window_client_message, menu_callback,
meta_window_update_keyboard_resize):
Remove usage of CurrentTime, meta_display_get_current_time() and
meta_display_get_current_time_roundtrip() where possible, or
document why it isn't possible, or at very least add a FIXME with
some explanation of my laziness and what needs to be done.
2006-09-18 13:27:24 -04:00
|
|
|
meta_workspace_activate (last_remaining, timestamp);
|
2001-12-09 22:55:26 -05:00
|
|
|
|
|
|
|
/* Should now be safe to free the workspaces */
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = extras; l != NULL; l = l->next)
|
2001-12-09 22:55:26 -05:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWorkspace *w = l->data;
|
2001-12-09 22:55:26 -05:00
|
|
|
|
|
|
|
g_assert (w->windows == NULL);
|
2008-11-17 15:56:34 -05:00
|
|
|
meta_workspace_remove (w);
|
2001-12-09 22:55:26 -05:00
|
|
|
}
|
2011-12-06 10:41:27 -05:00
|
|
|
|
2001-12-09 22:55:26 -05:00
|
|
|
g_list_free (extras);
|
2011-12-06 10:41:27 -05:00
|
|
|
|
|
|
|
for (i = old_num; i < new_num; i++)
|
|
|
|
meta_workspace_new (screen);
|
2002-06-24 21:12:37 -04:00
|
|
|
|
2002-08-13 20:08:30 -04:00
|
|
|
set_number_of_spaces_hint (screen, new_num);
|
|
|
|
|
2002-06-24 21:12:37 -04:00
|
|
|
meta_screen_queue_workarea_recalc (screen);
|
2008-11-17 17:22:28 -05:00
|
|
|
|
2011-12-06 10:41:27 -05:00
|
|
|
for (i = old_num; i < new_num; i++)
|
|
|
|
g_signal_emit (screen, screen_signals[WORKSPACE_ADDED], 0, i);
|
|
|
|
|
2008-11-17 17:22:28 -05:00
|
|
|
g_object_notify (G_OBJECT (screen), "n-workspaces");
|
2001-06-09 01:14:43 -04:00
|
|
|
}
|
2001-07-25 23:14:45 -04:00
|
|
|
|
2015-07-17 11:16:39 -04:00
|
|
|
static void
|
|
|
|
root_cursor_prepare_at (MetaCursorSprite *cursor_sprite,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
MetaScreen *screen)
|
|
|
|
{
|
|
|
|
const MetaMonitorInfo *monitor;
|
|
|
|
|
|
|
|
monitor = meta_screen_get_monitor_for_point (screen, x, y);
|
|
|
|
|
|
|
|
/* Reload the cursor texture if the scale has changed. */
|
2016-03-07 11:24:13 -05:00
|
|
|
if (monitor)
|
|
|
|
meta_cursor_sprite_set_theme_scale (cursor_sprite, monitor->scale);
|
2015-07-17 11:16:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
manage_root_cursor_sprite_scale (MetaScreen *screen,
|
|
|
|
MetaCursorSprite *cursor_sprite)
|
|
|
|
{
|
|
|
|
g_signal_connect_object (cursor_sprite,
|
|
|
|
"prepare-at",
|
|
|
|
G_CALLBACK (root_cursor_prepare_at),
|
|
|
|
screen,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2014-03-31 17:21:04 -04:00
|
|
|
void
|
|
|
|
meta_screen_update_cursor (MetaScreen *screen)
|
|
|
|
{
|
2014-03-31 17:22:23 -04:00
|
|
|
MetaDisplay *display = screen->display;
|
|
|
|
MetaCursor cursor = screen->current_cursor;
|
|
|
|
Cursor xcursor;
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *cursor_sprite;
|
2014-04-22 11:27:52 -04:00
|
|
|
MetaCursorTracker *tracker = meta_cursor_tracker_get_for_screen (screen);
|
2014-03-31 17:22:23 -04:00
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
cursor_sprite = meta_cursor_sprite_from_theme (cursor);
|
2015-07-17 11:16:39 -04:00
|
|
|
|
|
|
|
if (meta_is_wayland_compositor ())
|
|
|
|
manage_root_cursor_sprite_scale (screen, cursor_sprite);
|
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_tracker_set_root_cursor (tracker, cursor_sprite);
|
2015-03-10 02:35:49 -04:00
|
|
|
g_object_unref (cursor_sprite);
|
2014-03-31 17:22:23 -04:00
|
|
|
|
|
|
|
/* Set a cursor for X11 applications that don't specify their own */
|
|
|
|
xcursor = meta_display_create_x_cursor (display, cursor);
|
|
|
|
|
|
|
|
XDefineCursor (display->xdisplay, screen->xroot, xcursor);
|
|
|
|
XFlush (display->xdisplay);
|
|
|
|
XFreeCursor (display->xdisplay, xcursor);
|
2014-03-31 17:21:04 -04:00
|
|
|
}
|
|
|
|
|
2001-07-25 23:14:45 -04:00
|
|
|
void
|
|
|
|
meta_screen_set_cursor (MetaScreen *screen,
|
|
|
|
MetaCursor cursor)
|
|
|
|
{
|
|
|
|
if (cursor == screen->current_cursor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
screen->current_cursor = cursor;
|
2014-03-31 17:21:04 -04:00
|
|
|
meta_screen_update_cursor (screen);
|
2005-07-11 09:25:08 -04:00
|
|
|
}
|
|
|
|
|
2010-06-24 14:41:28 -04:00
|
|
|
static gboolean
|
2012-03-24 06:29:39 -04:00
|
|
|
meta_screen_update_tile_preview_timeout (gpointer data)
|
2010-06-24 14:41:28 -04:00
|
|
|
{
|
2016-01-10 09:16:09 -05:00
|
|
|
MetaScreen *screen = data;
|
|
|
|
MetaWindow *window = screen->display->grab_window;
|
|
|
|
gboolean needs_preview = FALSE;
|
|
|
|
|
|
|
|
screen->tile_preview_timeout_id = 0;
|
|
|
|
|
|
|
|
if (window)
|
|
|
|
{
|
|
|
|
switch (window->tile_mode)
|
|
|
|
{
|
|
|
|
case META_TILE_LEFT:
|
|
|
|
case META_TILE_RIGHT:
|
|
|
|
if (!META_WINDOW_TILED_SIDE_BY_SIDE (window))
|
|
|
|
needs_preview = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case META_TILE_MAXIMIZED:
|
|
|
|
if (!META_WINDOW_MAXIMIZED (window))
|
|
|
|
needs_preview = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
needs_preview = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needs_preview)
|
|
|
|
{
|
|
|
|
MetaRectangle tile_rect;
|
|
|
|
int monitor;
|
|
|
|
|
|
|
|
monitor = meta_window_get_current_tile_monitor_number (window);
|
|
|
|
meta_window_get_current_tile_area (window, &tile_rect);
|
|
|
|
meta_compositor_show_tile_preview (screen->display->compositor,
|
|
|
|
window, &tile_rect, monitor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
meta_compositor_hide_tile_preview (screen->display->compositor);
|
|
|
|
|
2010-06-24 14:41:28 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TILE_PREVIEW_TIMEOUT_MS 200
|
|
|
|
|
|
|
|
void
|
2016-01-10 09:16:08 -05:00
|
|
|
meta_screen_update_tile_preview (MetaScreen *screen,
|
|
|
|
gboolean delay)
|
2010-06-24 14:41:28 -04:00
|
|
|
{
|
|
|
|
if (delay)
|
|
|
|
{
|
2016-01-10 09:16:08 -05:00
|
|
|
if (screen->tile_preview_timeout_id > 0)
|
2010-06-24 14:41:28 -04:00
|
|
|
return;
|
|
|
|
|
2016-01-10 09:16:08 -05:00
|
|
|
screen->tile_preview_timeout_id =
|
2010-06-24 14:41:28 -04:00
|
|
|
g_timeout_add (TILE_PREVIEW_TIMEOUT_MS,
|
2012-03-24 06:29:39 -04:00
|
|
|
meta_screen_update_tile_preview_timeout,
|
2010-06-24 14:41:28 -04:00
|
|
|
screen);
|
2016-01-10 09:16:08 -05:00
|
|
|
g_source_set_name_by_id (screen->tile_preview_timeout_id,
|
2014-04-10 12:58:58 -04:00
|
|
|
"[mutter] meta_screen_update_tile_preview_timeout");
|
2010-06-24 14:41:28 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-10 09:16:08 -05:00
|
|
|
if (screen->tile_preview_timeout_id > 0)
|
|
|
|
g_source_remove (screen->tile_preview_timeout_id);
|
2010-06-24 14:41:28 -04:00
|
|
|
|
2016-01-10 09:16:08 -05:00
|
|
|
meta_screen_update_tile_preview_timeout ((gpointer)screen);
|
2010-06-24 14:41:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-19 16:38:51 -05:00
|
|
|
void
|
2012-03-24 06:29:39 -04:00
|
|
|
meta_screen_hide_tile_preview (MetaScreen *screen)
|
2011-01-19 16:38:51 -05:00
|
|
|
{
|
2016-01-10 09:16:08 -05:00
|
|
|
if (screen->tile_preview_timeout_id > 0)
|
|
|
|
g_source_remove (screen->tile_preview_timeout_id);
|
2011-01-19 16:38:51 -05:00
|
|
|
|
2016-01-10 09:16:08 -05:00
|
|
|
meta_compositor_hide_tile_preview (screen->display->compositor);
|
2011-01-19 16:38:51 -05:00
|
|
|
}
|
|
|
|
|
2004-06-24 16:02:46 -04:00
|
|
|
MetaWindow*
|
|
|
|
meta_screen_get_mouse_window (MetaScreen *screen,
|
|
|
|
MetaWindow *not_this_one)
|
2003-01-21 23:54:04 -05:00
|
|
|
{
|
2014-04-22 11:27:52 -04:00
|
|
|
MetaCursorTracker *tracker = meta_cursor_tracker_get_for_screen (screen);
|
2003-01-21 23:54:04 -05:00
|
|
|
MetaWindow *window;
|
2014-03-02 17:27:50 -05:00
|
|
|
int x, y;
|
2012-12-16 21:47:11 -05:00
|
|
|
|
2003-01-21 23:54:04 -05:00
|
|
|
if (not_this_one)
|
|
|
|
meta_topic (META_DEBUG_FOCUS,
|
|
|
|
"Focusing mouse window excluding %s\n", not_this_one->desc);
|
|
|
|
|
2014-04-22 11:27:52 -04:00
|
|
|
meta_cursor_tracker_get_pointer (tracker, &x, &y, NULL);
|
2003-01-21 23:54:04 -05:00
|
|
|
|
|
|
|
window = meta_stack_get_default_focus_window_at_point (screen->stack,
|
|
|
|
screen->active_workspace,
|
|
|
|
not_this_one,
|
2014-03-02 17:27:50 -05:00
|
|
|
x, y);
|
2003-01-21 23:54:04 -05:00
|
|
|
|
2004-06-24 16:02:46 -04:00
|
|
|
return window;
|
2003-01-21 23:54:04 -05:00
|
|
|
}
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
const MetaMonitorInfo*
|
|
|
|
meta_screen_get_monitor_for_rect (MetaScreen *screen,
|
|
|
|
MetaRectangle *rect)
|
2002-05-25 12:30:14 -04:00
|
|
|
{
|
|
|
|
int i;
|
2013-02-27 17:43:00 -05:00
|
|
|
int best_monitor, monitor_score, rect_area;
|
2002-05-25 12:30:14 -04:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
if (screen->n_monitor_infos == 1)
|
|
|
|
return &screen->monitor_infos[0];
|
2003-02-23 12:09:46 -05:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
best_monitor = 0;
|
2013-02-27 17:43:00 -05:00
|
|
|
monitor_score = -1;
|
2002-05-25 12:30:14 -04:00
|
|
|
|
2013-02-27 17:43:00 -05:00
|
|
|
rect_area = meta_rectangle_area (rect);
|
2009-08-31 09:52:16 -04:00
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
2002-06-06 23:18:46 -04:00
|
|
|
{
|
2013-02-27 17:43:00 -05:00
|
|
|
gboolean result;
|
|
|
|
int cur;
|
|
|
|
|
|
|
|
if (rect_area > 0)
|
2002-06-06 23:18:46 -04:00
|
|
|
{
|
2013-02-27 17:43:00 -05:00
|
|
|
MetaRectangle dest;
|
|
|
|
result = meta_rectangle_intersect (&screen->monitor_infos[i].rect,
|
|
|
|
rect,
|
|
|
|
&dest);
|
|
|
|
cur = meta_rectangle_area (&dest);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = meta_rectangle_contains_rect (&screen->monitor_infos[i].rect,
|
|
|
|
rect);
|
|
|
|
cur = rect_area;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result && cur > monitor_score)
|
|
|
|
{
|
|
|
|
monitor_score = cur;
|
|
|
|
best_monitor = i;
|
2002-06-06 23:18:46 -04:00
|
|
|
}
|
|
|
|
}
|
2002-05-25 12:30:14 -04:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
return &screen->monitor_infos[best_monitor];
|
2002-05-25 12:30:14 -04:00
|
|
|
}
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
const MetaMonitorInfo*
|
2015-04-09 00:20:24 -04:00
|
|
|
meta_screen_calculate_monitor_for_window (MetaScreen *screen,
|
|
|
|
MetaWindow *window)
|
2003-02-23 12:09:46 -05:00
|
|
|
{
|
|
|
|
MetaRectangle window_rect;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2013-11-19 12:24:45 -05:00
|
|
|
meta_window_get_frame_rect (window, &window_rect);
|
2003-02-23 12:09:46 -05:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
return meta_screen_get_monitor_for_rect (screen, &window_rect);
|
2003-02-23 12:09:46 -05:00
|
|
|
}
|
|
|
|
|
2013-01-27 23:39:12 -05:00
|
|
|
int
|
|
|
|
meta_screen_get_monitor_index_for_rect (MetaScreen *screen,
|
|
|
|
MetaRectangle *rect)
|
|
|
|
{
|
|
|
|
const MetaMonitorInfo *monitor = meta_screen_get_monitor_for_rect (screen, rect);
|
|
|
|
return monitor->number;
|
|
|
|
}
|
|
|
|
|
2015-07-17 11:16:39 -04:00
|
|
|
const MetaMonitorInfo *
|
|
|
|
meta_screen_get_monitor_for_point (MetaScreen *screen,
|
|
|
|
int x,
|
|
|
|
int y)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (screen->n_monitor_infos == 1)
|
|
|
|
return &screen->monitor_infos[0];
|
|
|
|
|
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
|
|
|
{
|
|
|
|
if (POINT_IN_RECT (x, y, screen->monitor_infos[i].rect))
|
|
|
|
return &screen->monitor_infos[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
const MetaMonitorInfo*
|
2009-08-31 09:52:16 -04:00
|
|
|
meta_screen_get_monitor_neighbor (MetaScreen *screen,
|
|
|
|
int which_monitor,
|
|
|
|
MetaScreenDirection direction)
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
MetaMonitorInfo* input = screen->monitor_infos + which_monitor;
|
|
|
|
MetaMonitorInfo* current;
|
2003-04-06 00:57:36 -05:00
|
|
|
int i;
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
current = screen->monitor_infos + i;
|
2003-04-06 00:57:36 -05:00
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
if ((direction == META_SCREEN_RIGHT &&
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
current->rect.x == input->rect.x + input->rect.width &&
|
|
|
|
meta_rectangle_vert_overlap(¤t->rect, &input->rect)) ||
|
2014-05-02 09:34:02 -04:00
|
|
|
(direction == META_SCREEN_LEFT &&
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
input->rect.x == current->rect.x + current->rect.width &&
|
|
|
|
meta_rectangle_vert_overlap(¤t->rect, &input->rect)) ||
|
2014-05-02 09:34:02 -04:00
|
|
|
(direction == META_SCREEN_UP &&
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
input->rect.y == current->rect.y + current->rect.height &&
|
|
|
|
meta_rectangle_horiz_overlap(¤t->rect, &input->rect)) ||
|
2014-05-02 09:34:02 -04:00
|
|
|
(direction == META_SCREEN_DOWN &&
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
current->rect.y == input->rect.y + input->rect.height &&
|
|
|
|
meta_rectangle_horiz_overlap(¤t->rect, &input->rect)))
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
}
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-04-06 00:57:36 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-22 09:41:54 -04:00
|
|
|
int
|
|
|
|
meta_screen_get_monitor_neighbor_index (MetaScreen *screen,
|
|
|
|
int which_monitor,
|
|
|
|
MetaScreenDirection direction)
|
|
|
|
{
|
|
|
|
const MetaMonitorInfo *monitor;
|
|
|
|
monitor = meta_screen_get_monitor_neighbor (screen, which_monitor, direction);
|
|
|
|
return monitor ? monitor->number : -1;
|
|
|
|
}
|
|
|
|
|
2003-04-06 00:57:36 -05:00
|
|
|
void
|
2009-08-31 09:52:16 -04:00
|
|
|
meta_screen_get_natural_monitor_list (MetaScreen *screen,
|
|
|
|
int** monitors_list,
|
|
|
|
int* n_monitors)
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
const MetaMonitorInfo* current;
|
|
|
|
const MetaMonitorInfo* tmp;
|
|
|
|
GQueue* monitor_queue;
|
2003-04-06 00:57:36 -05:00
|
|
|
int* visited;
|
|
|
|
int cur = 0;
|
|
|
|
int i;
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
*n_monitors = screen->n_monitor_infos;
|
|
|
|
*monitors_list = g_new (int, screen->n_monitor_infos);
|
2003-04-06 00:57:36 -05:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
/* we calculate a natural ordering by which to choose monitors for
|
|
|
|
* window placement. We start at the current monitor, and perform
|
|
|
|
* a breadth-first search of the monitors starting from that
|
|
|
|
* monitor. We choose preferentially left, then right, then down,
|
2003-04-06 00:57:36 -05:00
|
|
|
* then up. The visitation order produced by this traversal is the
|
2009-08-31 09:52:16 -04:00
|
|
|
* natural monitor ordering.
|
2003-04-06 00:57:36 -05:00
|
|
|
*/
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
visited = g_new (int, screen->n_monitor_infos);
|
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
|
|
|
visited[i] = FALSE;
|
|
|
|
}
|
|
|
|
|
2012-06-08 04:21:10 -04:00
|
|
|
current = meta_screen_get_current_monitor_info (screen);
|
2009-08-31 09:52:16 -04:00
|
|
|
monitor_queue = g_queue_new ();
|
|
|
|
g_queue_push_tail (monitor_queue, (gpointer) current);
|
2003-04-06 00:57:36 -05:00
|
|
|
visited[current->number] = TRUE;
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
while (!g_queue_is_empty (monitor_queue))
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
2014-05-02 09:34:02 -04:00
|
|
|
current = (const MetaMonitorInfo*)
|
2009-08-31 09:52:16 -04:00
|
|
|
g_queue_pop_head (monitor_queue);
|
2003-04-06 00:57:36 -05:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
(*monitors_list)[cur++] = current->number;
|
2003-04-06 00:57:36 -05:00
|
|
|
|
|
|
|
/* enqueue each of the directions */
|
2009-08-31 09:52:16 -04:00
|
|
|
tmp = meta_screen_get_monitor_neighbor (screen,
|
|
|
|
current->number,
|
|
|
|
META_SCREEN_LEFT);
|
2003-04-06 00:57:36 -05:00
|
|
|
if (tmp && !visited[tmp->number])
|
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
g_queue_push_tail (monitor_queue,
|
|
|
|
(MetaMonitorInfo*) tmp);
|
2003-04-06 00:57:36 -05:00
|
|
|
visited[tmp->number] = TRUE;
|
|
|
|
}
|
2009-08-31 09:52:16 -04:00
|
|
|
tmp = meta_screen_get_monitor_neighbor (screen,
|
|
|
|
current->number,
|
|
|
|
META_SCREEN_RIGHT);
|
2003-04-06 00:57:36 -05:00
|
|
|
if (tmp && !visited[tmp->number])
|
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
g_queue_push_tail (monitor_queue,
|
|
|
|
(MetaMonitorInfo*) tmp);
|
2003-04-06 00:57:36 -05:00
|
|
|
visited[tmp->number] = TRUE;
|
|
|
|
}
|
2009-08-31 09:52:16 -04:00
|
|
|
tmp = meta_screen_get_monitor_neighbor (screen,
|
|
|
|
current->number,
|
|
|
|
META_SCREEN_UP);
|
2003-04-06 00:57:36 -05:00
|
|
|
if (tmp && !visited[tmp->number])
|
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
g_queue_push_tail (monitor_queue,
|
|
|
|
(MetaMonitorInfo*) tmp);
|
2003-04-06 00:57:36 -05:00
|
|
|
visited[tmp->number] = TRUE;
|
|
|
|
}
|
2009-08-31 09:52:16 -04:00
|
|
|
tmp = meta_screen_get_monitor_neighbor (screen,
|
|
|
|
current->number,
|
|
|
|
META_SCREEN_DOWN);
|
2003-04-06 00:57:36 -05:00
|
|
|
if (tmp && !visited[tmp->number])
|
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
g_queue_push_tail (monitor_queue,
|
|
|
|
(MetaMonitorInfo*) tmp);
|
2003-04-06 00:57:36 -05:00
|
|
|
visited[tmp->number] = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
/* in case we somehow missed some set of monitors, go through the
|
|
|
|
* visited list and add in any monitors that were missed
|
2003-04-06 00:57:36 -05:00
|
|
|
*/
|
2009-08-31 09:52:16 -04:00
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
2003-04-06 00:57:36 -05:00
|
|
|
{
|
|
|
|
if (visited[i] == FALSE)
|
|
|
|
{
|
2009-08-31 09:52:16 -04:00
|
|
|
(*monitors_list)[cur++] = i;
|
2003-04-06 00:57:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (visited);
|
2009-08-31 09:52:16 -04:00
|
|
|
g_queue_free (monitor_queue);
|
2003-04-06 00:57:36 -05:00
|
|
|
}
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
const MetaMonitorInfo*
|
2012-06-08 04:21:10 -04:00
|
|
|
meta_screen_get_current_monitor_info (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
int monitor_index;
|
|
|
|
monitor_index = meta_screen_get_current_monitor (screen);
|
|
|
|
return &screen->monitor_infos[monitor_index];
|
|
|
|
}
|
|
|
|
|
2013-06-23 15:16:52 -04:00
|
|
|
const MetaMonitorInfo*
|
|
|
|
meta_screen_get_current_monitor_info_for_pos (MetaScreen *screen,
|
|
|
|
int x,
|
|
|
|
int y)
|
|
|
|
{
|
|
|
|
int monitor_index;
|
|
|
|
monitor_index = meta_screen_get_current_monitor_for_pos (screen, x, y);
|
|
|
|
return &screen->monitor_infos[monitor_index];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_screen_get_current_monitor_for_pos:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
* @x: The x coordinate
|
|
|
|
* @y: The y coordinate
|
|
|
|
*
|
|
|
|
* Gets the index of the monitor that contains the passed coordinates.
|
|
|
|
*
|
|
|
|
* Return value: a monitor index
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
meta_screen_get_current_monitor_for_pos (MetaScreen *screen,
|
|
|
|
int x,
|
|
|
|
int y)
|
|
|
|
{
|
|
|
|
if (screen->n_monitor_infos == 1)
|
|
|
|
return 0;
|
|
|
|
else if (screen->display->monitor_cache_invalidated)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
MetaRectangle pointer_position;
|
|
|
|
pointer_position.x = x;
|
|
|
|
pointer_position.y = y;
|
|
|
|
pointer_position.width = pointer_position.height = 1;
|
|
|
|
|
|
|
|
screen->display->monitor_cache_invalidated = FALSE;
|
|
|
|
screen->last_monitor_index = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
|
|
|
{
|
|
|
|
if (meta_rectangle_contains_rect (&screen->monitor_infos[i].rect,
|
|
|
|
&pointer_position))
|
|
|
|
{
|
|
|
|
screen->last_monitor_index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_XINERAMA,
|
|
|
|
"Rechecked current monitor, now %d\n",
|
|
|
|
screen->last_monitor_index);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return screen->last_monitor_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-08 04:21:10 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_current_monitor:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
*
|
|
|
|
* Gets the index of the monitor that currently has the mouse pointer.
|
|
|
|
*
|
|
|
|
* Return value: a monitor index
|
|
|
|
*/
|
|
|
|
int
|
2009-08-31 09:52:16 -04:00
|
|
|
meta_screen_get_current_monitor (MetaScreen *screen)
|
on unminimize, queue calc_showing on all transients
2002-05-05 Havoc Pennington <hp@pobox.com>
* src/window.c (meta_window_unminimize): on unminimize, queue
calc_showing on all transients
(meta_window_activate): on activate, unminimize all a window's
ancestors, not just the window itself.
* src/workspace.c (set_work_area_hint): don't increment "tmp" by
16 unsigned long, increment by 4
* src/window.c (meta_window_free): if a window isn't minimized,
restore its WM_STATE to NormalState instead of IconicState,
since IconicState on initial window map means that the window
should be minimized.
* src/workspace.c (meta_workspace_invalidate_work_area): queue an
idle to recompute the work area hint.
(set_work_area_hint): we need 4*num_workspaces ints, not just
num_workspaces.
* src/screen.c (meta_screen_new): add work_area_idle field,
handle it on screen shutdown
* src/common.h (META_PRIORITY_PREFS_NOTIFY,
META_PRIORITY_WORK_AREA_HINT): define some idle priorities
* src/window.c (meta_window_calc_showing): hide windows if
their parent window is minimized
(meta_window_minimize): also queue_calc_showing on all
transients of the window being minimized
* src/place.c (constrain_placement): function to apply
placement-time-only constraints, such as "not off the left of the
screen"
(meta_window_place): put dialogs down a bit over their parent,
not right at the top.
(meta_window_place): when centering a dialog, center it
on the current xinerama screen, rather than the entire
screen.
* src/screen.c (meta_screen_get_current_xinerama): new function,
but not implemented
2002-05-05 01:41:13 -04:00
|
|
|
{
|
2014-04-22 11:27:52 -04:00
|
|
|
MetaCursorTracker *tracker = meta_cursor_tracker_get_for_screen (screen);
|
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
if (screen->n_monitor_infos == 1)
|
2012-06-11 04:46:57 -04:00
|
|
|
return 0;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-06 23:18:46 -04:00
|
|
|
/* Sadly, we have to do it this way. Yuck.
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
if (screen->display->monitor_cache_invalidated)
|
2002-06-06 23:18:46 -04:00
|
|
|
{
|
2014-03-02 17:27:50 -05:00
|
|
|
int x, y;
|
|
|
|
|
2014-04-22 11:27:52 -04:00
|
|
|
meta_cursor_tracker_get_pointer (tracker, &x, &y, NULL);
|
2014-03-02 17:27:50 -05:00
|
|
|
meta_screen_get_current_monitor_for_pos (screen, x, y);
|
2002-06-06 23:18:46 -04:00
|
|
|
}
|
|
|
|
|
2012-06-08 04:21:10 -04:00
|
|
|
return screen->last_monitor_index;
|
on unminimize, queue calc_showing on all transients
2002-05-05 Havoc Pennington <hp@pobox.com>
* src/window.c (meta_window_unminimize): on unminimize, queue
calc_showing on all transients
(meta_window_activate): on activate, unminimize all a window's
ancestors, not just the window itself.
* src/workspace.c (set_work_area_hint): don't increment "tmp" by
16 unsigned long, increment by 4
* src/window.c (meta_window_free): if a window isn't minimized,
restore its WM_STATE to NormalState instead of IconicState,
since IconicState on initial window map means that the window
should be minimized.
* src/workspace.c (meta_workspace_invalidate_work_area): queue an
idle to recompute the work area hint.
(set_work_area_hint): we need 4*num_workspaces ints, not just
num_workspaces.
* src/screen.c (meta_screen_new): add work_area_idle field,
handle it on screen shutdown
* src/common.h (META_PRIORITY_PREFS_NOTIFY,
META_PRIORITY_WORK_AREA_HINT): define some idle priorities
* src/window.c (meta_window_calc_showing): hide windows if
their parent window is minimized
(meta_window_minimize): also queue_calc_showing on all
transients of the window being minimized
* src/place.c (constrain_placement): function to apply
placement-time-only constraints, such as "not off the left of the
screen"
(meta_window_place): put dialogs down a bit over their parent,
not right at the top.
(meta_window_place): when centering a dialog, center it
on the current xinerama screen, rather than the entire
screen.
* src/screen.c (meta_screen_get_current_xinerama): new function,
but not implemented
2002-05-05 01:41:13 -04:00
|
|
|
}
|
2002-05-16 00:03:36 -04:00
|
|
|
|
2009-08-31 10:06:17 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_n_monitors:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
*
|
|
|
|
* Gets the number of monitors that are joined together to form @screen.
|
|
|
|
*
|
|
|
|
* Return value: the number of monitors
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
meta_screen_get_n_monitors (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (META_IS_SCREEN (screen), 0);
|
|
|
|
|
|
|
|
return screen->n_monitor_infos;
|
|
|
|
}
|
|
|
|
|
2011-02-25 08:07:48 -05:00
|
|
|
/**
|
|
|
|
* meta_screen_get_primary_monitor:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
*
|
|
|
|
* Gets the index of the primary monitor on this @screen.
|
|
|
|
*
|
|
|
|
* Return value: a monitor index
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
meta_screen_get_primary_monitor (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (META_IS_SCREEN (screen), 0);
|
|
|
|
|
|
|
|
return screen->primary_monitor_index;
|
|
|
|
}
|
|
|
|
|
2009-08-31 10:06:17 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_monitor_geometry:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
* @monitor: the monitor number
|
|
|
|
* @geometry: (out): location to store the monitor geometry
|
|
|
|
*
|
|
|
|
* Stores the location and size of the indicated monitor in @geometry.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_screen_get_monitor_geometry (MetaScreen *screen,
|
|
|
|
int monitor,
|
|
|
|
MetaRectangle *geometry)
|
|
|
|
{
|
|
|
|
g_return_if_fail (META_IS_SCREEN (screen));
|
|
|
|
g_return_if_fail (monitor >= 0 && monitor < screen->n_monitor_infos);
|
|
|
|
g_return_if_fail (geometry != NULL);
|
|
|
|
|
|
|
|
*geometry = screen->monitor_infos[monitor].rect;
|
|
|
|
}
|
|
|
|
|
2002-05-16 00:03:36 -04:00
|
|
|
#define _NET_WM_ORIENTATION_HORZ 0
|
|
|
|
#define _NET_WM_ORIENTATION_VERT 1
|
|
|
|
|
2002-10-01 15:57:26 -04:00
|
|
|
#define _NET_WM_TOPLEFT 0
|
|
|
|
#define _NET_WM_TOPRIGHT 1
|
|
|
|
#define _NET_WM_BOTTOMRIGHT 2
|
|
|
|
#define _NET_WM_BOTTOMLEFT 3
|
|
|
|
|
2002-05-16 00:03:36 -04:00
|
|
|
void
|
|
|
|
meta_screen_update_workspace_layout (MetaScreen *screen)
|
|
|
|
{
|
2015-06-23 18:09:07 -04:00
|
|
|
uint32_t *list;
|
2002-05-16 00:03:36 -04:00
|
|
|
int n_items;
|
2011-01-24 15:40:30 -05:00
|
|
|
|
|
|
|
if (screen->workspace_layout_overridden)
|
|
|
|
return;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-05-16 00:03:36 -04:00
|
|
|
list = NULL;
|
|
|
|
n_items = 0;
|
|
|
|
|
|
|
|
if (meta_prop_get_cardinal_list (screen->display,
|
|
|
|
screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_DESKTOP_LAYOUT,
|
2002-05-16 00:03:36 -04:00
|
|
|
&list, &n_items))
|
|
|
|
{
|
2002-10-01 15:57:26 -04:00
|
|
|
if (n_items == 3 || n_items == 4)
|
2002-05-16 00:03:36 -04:00
|
|
|
{
|
|
|
|
int cols, rows;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-05-16 00:03:36 -04:00
|
|
|
switch (list[0])
|
|
|
|
{
|
|
|
|
case _NET_WM_ORIENTATION_HORZ:
|
|
|
|
screen->vertical_workspaces = FALSE;
|
|
|
|
break;
|
|
|
|
case _NET_WM_ORIENTATION_VERT:
|
|
|
|
screen->vertical_workspaces = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
meta_warning ("Someone set a weird orientation in _NET_DESKTOP_LAYOUT\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-10-01 15:57:26 -04:00
|
|
|
cols = list[1];
|
|
|
|
rows = list[2];
|
2002-05-16 00:03:36 -04:00
|
|
|
|
|
|
|
if (rows <= 0 && cols <= 0)
|
|
|
|
{
|
|
|
|
meta_warning ("Columns = %d rows = %d in _NET_DESKTOP_LAYOUT makes no sense\n", rows, cols);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (rows > 0)
|
|
|
|
screen->rows_of_workspaces = rows;
|
|
|
|
else
|
|
|
|
screen->rows_of_workspaces = -1;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-05-16 00:03:36 -04:00
|
|
|
if (cols > 0)
|
|
|
|
screen->columns_of_workspaces = cols;
|
|
|
|
else
|
|
|
|
screen->columns_of_workspaces = -1;
|
|
|
|
}
|
2002-10-01 15:57:26 -04:00
|
|
|
|
|
|
|
if (n_items == 4)
|
|
|
|
{
|
|
|
|
switch (list[3])
|
|
|
|
{
|
|
|
|
case _NET_WM_TOPLEFT:
|
|
|
|
screen->starting_corner = META_SCREEN_TOPLEFT;
|
|
|
|
break;
|
|
|
|
case _NET_WM_TOPRIGHT:
|
|
|
|
screen->starting_corner = META_SCREEN_TOPRIGHT;
|
|
|
|
break;
|
|
|
|
case _NET_WM_BOTTOMRIGHT:
|
|
|
|
screen->starting_corner = META_SCREEN_BOTTOMRIGHT;
|
|
|
|
break;
|
|
|
|
case _NET_WM_BOTTOMLEFT:
|
|
|
|
screen->starting_corner = META_SCREEN_BOTTOMLEFT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
meta_warning ("Someone set a weird starting corner in _NET_DESKTOP_LAYOUT\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-11-16 19:06:58 -05:00
|
|
|
else
|
|
|
|
screen->starting_corner = META_SCREEN_TOPLEFT;
|
2002-05-16 00:03:36 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-10-01 15:57:26 -04:00
|
|
|
meta_warning ("Someone set _NET_DESKTOP_LAYOUT to %d integers instead of 4 "
|
|
|
|
"(3 is accepted for backwards compat)\n", n_items);
|
2002-05-16 00:03:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
meta_XFree (list);
|
|
|
|
}
|
|
|
|
|
2006-01-20 17:03:56 -05:00
|
|
|
meta_verbose ("Workspace layout rows = %d cols = %d orientation = %d starting corner = %u\n",
|
2002-05-16 00:03:36 -04:00
|
|
|
screen->rows_of_workspaces,
|
|
|
|
screen->columns_of_workspaces,
|
2002-10-01 15:57:26 -04:00
|
|
|
screen->vertical_workspaces,
|
|
|
|
screen->starting_corner);
|
2002-05-16 00:03:36 -04:00
|
|
|
}
|
2002-06-08 23:44:16 -04:00
|
|
|
|
2011-01-24 15:40:30 -05:00
|
|
|
/**
|
|
|
|
* meta_screen_override_workspace_layout:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
* @starting_corner: the corner at which the first workspace is found
|
|
|
|
* @vertical_layout: if %TRUE the workspaces are laid out in columns rather than rows
|
|
|
|
* @n_rows: number of rows of workspaces, or -1 to determine the number of rows from
|
|
|
|
* @n_columns and the total number of workspaces
|
|
|
|
* @n_columns: number of columns of workspaces, or -1 to determine the number of columns from
|
|
|
|
* @n_rows and the total number of workspaces
|
|
|
|
*
|
|
|
|
* Explicitly set the layout of workspaces. Once this has been called, the contents of the
|
|
|
|
* _NET_DESKTOP_LAYOUT property on the root window are completely ignored.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_screen_override_workspace_layout (MetaScreen *screen,
|
|
|
|
MetaScreenCorner starting_corner,
|
|
|
|
gboolean vertical_layout,
|
|
|
|
int n_rows,
|
|
|
|
int n_columns)
|
|
|
|
{
|
|
|
|
g_return_if_fail (META_IS_SCREEN (screen));
|
|
|
|
g_return_if_fail (n_rows > 0 || n_columns > 0);
|
|
|
|
g_return_if_fail (n_rows != 0 && n_columns != 0);
|
|
|
|
|
|
|
|
screen->workspace_layout_overridden = TRUE;
|
|
|
|
screen->vertical_workspaces = vertical_layout != FALSE;
|
|
|
|
screen->starting_corner = starting_corner;
|
|
|
|
screen->rows_of_workspaces = n_rows;
|
|
|
|
screen->columns_of_workspaces = n_columns;
|
|
|
|
|
|
|
|
/* In theory we should remove _NET_DESKTOP_LAYOUT from _NET_SUPPORTED at this
|
|
|
|
* point, but it's unlikely that anybody checks that, and it's unlikely that
|
|
|
|
* anybody who checks that handles changes, so we'd probably just create
|
|
|
|
* a race condition. And it's hard to implement with the code in set_supported_hint()
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2002-11-03 14:06:39 -05:00
|
|
|
static void
|
2003-02-14 02:03:46 -05:00
|
|
|
set_workspace_names (MetaScreen *screen)
|
2002-11-03 14:06:39 -05:00
|
|
|
{
|
|
|
|
/* This updates names on root window when the pref changes,
|
|
|
|
* note we only get prefs change notify if things have
|
|
|
|
* really changed.
|
|
|
|
*/
|
|
|
|
GString *flattened;
|
|
|
|
int i;
|
|
|
|
int n_spaces;
|
|
|
|
|
|
|
|
/* flatten to nul-separated list */
|
|
|
|
n_spaces = meta_screen_get_n_workspaces (screen);
|
|
|
|
flattened = g_string_new ("");
|
|
|
|
i = 0;
|
|
|
|
while (i < n_spaces)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
name = meta_prefs_get_workspace_name (i);
|
|
|
|
|
|
|
|
if (name)
|
2002-11-19 22:57:20 -05:00
|
|
|
g_string_append_len (flattened, name,
|
2002-11-03 14:06:39 -05:00
|
|
|
strlen (name) + 1);
|
|
|
|
else
|
|
|
|
g_string_append_len (flattened, "", 1);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-03 14:06:39 -05:00
|
|
|
++i;
|
|
|
|
}
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-03 14:06:39 -05:00
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay,
|
|
|
|
screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_DESKTOP_NAMES,
|
|
|
|
screen->display->atom_UTF8_STRING,
|
2002-11-03 14:06:39 -05:00
|
|
|
8, PropModeReplace,
|
2006-04-13 09:16:42 -04:00
|
|
|
(unsigned char *)flattened->str, flattened->len);
|
2010-10-25 14:44:30 -04:00
|
|
|
meta_error_trap_pop (screen->display);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-03 14:06:39 -05:00
|
|
|
g_string_free (flattened, TRUE);
|
|
|
|
}
|
|
|
|
|
2002-06-22 00:52:35 -04:00
|
|
|
void
|
|
|
|
meta_screen_update_workspace_names (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
char **names;
|
|
|
|
int n_names;
|
|
|
|
int i;
|
2002-11-03 14:06:39 -05:00
|
|
|
|
|
|
|
/* this updates names in prefs when the root window property changes,
|
|
|
|
* iff the new property contents don't match what's already in prefs
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-22 00:52:35 -04:00
|
|
|
names = NULL;
|
|
|
|
n_names = 0;
|
|
|
|
if (!meta_prop_get_utf8_list (screen->display,
|
|
|
|
screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_DESKTOP_NAMES,
|
2002-06-22 00:52:35 -04:00
|
|
|
&names, &n_names))
|
|
|
|
{
|
|
|
|
meta_verbose ("Failed to get workspace names from root window %d\n",
|
|
|
|
screen->number);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
2002-11-03 14:06:39 -05:00
|
|
|
while (i < n_names)
|
2002-06-22 00:52:35 -04:00
|
|
|
{
|
2002-11-19 22:57:20 -05:00
|
|
|
meta_topic (META_DEBUG_PREFS,
|
|
|
|
"Setting workspace %d name to \"%s\" due to _NET_DESKTOP_NAMES change\n",
|
|
|
|
i, names[i] ? names[i] : "null");
|
2002-11-03 14:06:39 -05:00
|
|
|
meta_prefs_change_workspace_name (i, names[i]);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-03 14:06:39 -05:00
|
|
|
++i;
|
2002-06-22 00:52:35 -04:00
|
|
|
}
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-22 00:52:35 -04:00
|
|
|
g_strfreev (names);
|
|
|
|
}
|
|
|
|
|
2002-06-08 23:44:16 -04:00
|
|
|
Window
|
|
|
|
meta_create_offscreen_window (Display *xdisplay,
|
2007-03-31 19:34:36 -04:00
|
|
|
Window parent,
|
|
|
|
long valuemask)
|
2002-06-08 23:44:16 -04:00
|
|
|
{
|
|
|
|
XSetWindowAttributes attrs;
|
|
|
|
|
|
|
|
/* we want to be override redirect because sometimes we
|
|
|
|
* create a window on a screen we aren't managing.
|
|
|
|
* (but on a display we are managing at least one screen for)
|
|
|
|
*/
|
|
|
|
attrs.override_redirect = True;
|
2007-03-31 19:34:36 -04:00
|
|
|
attrs.event_mask = valuemask;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-08 23:44:16 -04:00
|
|
|
return XCreateWindow (xdisplay,
|
|
|
|
parent,
|
|
|
|
-100, -100, 1, 1,
|
|
|
|
0,
|
|
|
|
CopyFromParent,
|
|
|
|
CopyFromParent,
|
A load of fixes of issues reported by sparse. Closes bug #152849
2004-09-17 Kjartan Maraas <kmaraas@gnome.org>
* src/bell.c: (meta_bell_flash_screen):
* src/compositor.c:
* src/effects.c: (meta_effects_draw_box_animation):
* src/fixedtip.c: (meta_fixed_tip_show):
* src/frame.c: (find_argb_visual):
* src/frames.c: (unsigned_long_hash), (meta_frames_manage_window),
(meta_frames_apply_shapes):
* src/iconcache.c: (find_largest_sizes), (find_best_size):
* src/keybindings.c: (meta_spawn_command_line_async_on_screen):
* src/main.c: (main):
* src/menu.c: (meta_window_menu_new):
* src/prefs.c: (meta_prefs_get_visual_bell),
(meta_prefs_bell_is_audible), (meta_prefs_get_visual_bell_type),
(meta_prefs_get_action_double_click_titlebar),
(meta_prefs_get_auto_raise), (meta_prefs_get_auto_raise_delay),
(meta_prefs_get_reduced_resources):
* src/screen.c: (meta_create_offscreen_window):
* src/tabpopup.c: (meta_ui_tab_popup_get_selected):
* src/theme-parser.c: (meta_theme_load):
* src/theme.c: (meta_gtk_widget_get_font_desc):
* src/tools/metacity-mag.c: (mouse_press), (begin_area_grab):
* src/util.c: (meta_unsigned_long_hash): A load of fixes of issues
reported by sparse. Closes bug #152849
2004-09-16 19:18:22 -04:00
|
|
|
(Visual *)CopyFromParent,
|
2003-11-24 13:38:38 -05:00
|
|
|
CWOverrideRedirect | CWEventMask,
|
2002-06-08 23:44:16 -04:00
|
|
|
&attrs);
|
|
|
|
}
|
2002-06-22 01:11:04 -04:00
|
|
|
|
2002-10-21 17:44:35 -04:00
|
|
|
static void
|
2002-06-24 21:12:37 -04:00
|
|
|
set_work_area_hint (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
int num_workspaces;
|
2014-08-15 19:49:49 -04:00
|
|
|
GList *l;
|
2002-06-24 21:12:37 -04:00
|
|
|
unsigned long *data, *tmp;
|
|
|
|
MetaRectangle area;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-24 21:12:37 -04:00
|
|
|
num_workspaces = meta_screen_get_n_workspaces (screen);
|
|
|
|
data = g_new (unsigned long, num_workspaces * 4);
|
|
|
|
tmp = data;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->workspaces; l != NULL; l = l->next)
|
2002-06-24 21:12:37 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWorkspace *workspace = l->data;
|
2002-06-24 21:12:37 -04:00
|
|
|
|
2014-08-15 19:43:08 -04:00
|
|
|
meta_workspace_get_work_area_all_monitors (workspace, &area);
|
|
|
|
tmp[0] = area.x;
|
|
|
|
tmp[1] = area.y;
|
|
|
|
tmp[2] = area.width;
|
|
|
|
tmp[3] = area.height;
|
2002-06-24 21:12:37 -04:00
|
|
|
|
2014-08-15 19:43:08 -04:00
|
|
|
tmp += 4;
|
2002-06-24 21:12:37 -04:00
|
|
|
}
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-24 21:12:37 -04:00
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_WORKAREA,
|
2002-06-24 21:12:37 -04:00
|
|
|
XA_CARDINAL, 32, PropModeReplace,
|
|
|
|
(guchar*) data, num_workspaces*4);
|
|
|
|
g_free (data);
|
2010-10-25 14:44:30 -04:00
|
|
|
meta_error_trap_pop (screen->display);
|
2009-09-17 04:49:23 -04:00
|
|
|
|
|
|
|
g_signal_emit (screen, screen_signals[WORKAREAS_CHANGED], 0);
|
2002-06-24 21:12:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2009-09-25 15:47:22 -04:00
|
|
|
set_work_area_later_func (MetaScreen *screen)
|
2002-06-24 21:12:37 -04:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_WORKAREA,
|
2009-09-25 15:47:22 -04:00
|
|
|
"Running work area hint computation function\n");
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2009-09-25 15:47:22 -04:00
|
|
|
screen->work_area_later = 0;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-24 21:12:37 -04:00
|
|
|
set_work_area_hint (screen);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-24 21:12:37 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_screen_queue_workarea_recalc (MetaScreen *screen)
|
|
|
|
{
|
2009-09-25 15:47:22 -04:00
|
|
|
/* Recompute work area later before redrawing */
|
|
|
|
if (screen->work_area_later == 0)
|
2002-06-24 21:12:37 -04:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_WORKAREA,
|
2009-09-25 15:47:22 -04:00
|
|
|
"Adding work area hint computation function\n");
|
|
|
|
screen->work_area_later =
|
|
|
|
meta_later_add (META_LATER_BEFORE_REDRAW,
|
|
|
|
(GSourceFunc) set_work_area_later_func,
|
|
|
|
screen,
|
|
|
|
NULL);
|
2002-06-24 21:12:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
|
|
|
|
#ifdef WITH_VERBOSE_MODE
|
2015-09-23 19:13:59 -04:00
|
|
|
static const char *
|
2003-01-05 13:36:01 -05:00
|
|
|
meta_screen_corner_to_string (MetaScreenCorner corner)
|
|
|
|
{
|
|
|
|
switch (corner)
|
|
|
|
{
|
|
|
|
case META_SCREEN_TOPLEFT:
|
|
|
|
return "TopLeft";
|
|
|
|
case META_SCREEN_TOPRIGHT:
|
|
|
|
return "TopRight";
|
|
|
|
case META_SCREEN_BOTTOMLEFT:
|
|
|
|
return "BottomLeft";
|
|
|
|
case META_SCREEN_BOTTOMRIGHT:
|
|
|
|
return "BottomRight";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
#endif /* WITH_VERBOSE_MODE */
|
|
|
|
|
2002-06-22 01:11:04 -04:00
|
|
|
void
|
2003-01-05 13:36:01 -05:00
|
|
|
meta_screen_calc_workspace_layout (MetaScreen *screen,
|
|
|
|
int num_workspaces,
|
|
|
|
int current_space,
|
|
|
|
MetaWorkspaceLayout *layout)
|
2002-06-22 01:11:04 -04:00
|
|
|
{
|
2003-01-05 13:36:01 -05:00
|
|
|
int rows, cols;
|
|
|
|
int grid_area;
|
|
|
|
int *grid;
|
|
|
|
int i, r, c;
|
|
|
|
int current_row, current_col;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-06-22 01:11:04 -04:00
|
|
|
rows = screen->rows_of_workspaces;
|
|
|
|
cols = screen->columns_of_workspaces;
|
|
|
|
if (rows <= 0 && cols <= 0)
|
|
|
|
cols = num_workspaces;
|
|
|
|
|
|
|
|
if (rows <= 0)
|
|
|
|
rows = num_workspaces / cols + ((num_workspaces % cols) > 0 ? 1 : 0);
|
|
|
|
if (cols <= 0)
|
|
|
|
cols = num_workspaces / rows + ((num_workspaces % rows) > 0 ? 1 : 0);
|
|
|
|
|
|
|
|
/* paranoia */
|
|
|
|
if (rows < 1)
|
|
|
|
rows = 1;
|
|
|
|
if (cols < 1)
|
|
|
|
cols = 1;
|
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
g_assert (rows != 0 && cols != 0);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
grid_area = rows * cols;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
meta_verbose ("Getting layout rows = %d cols = %d current = %d "
|
|
|
|
"num_spaces = %d vertical = %s corner = %s\n",
|
|
|
|
rows, cols, current_space, num_workspaces,
|
|
|
|
screen->vertical_workspaces ? "(true)" : "(false)",
|
|
|
|
meta_screen_corner_to_string (screen->starting_corner));
|
2014-05-02 09:34:02 -04:00
|
|
|
|
|
|
|
/* ok, we want to setup the distances in the workspace array to go
|
|
|
|
* in each direction. Remember, there are many ways that a workspace
|
|
|
|
* array can be setup.
|
|
|
|
* see http://www.freedesktop.org/standards/wm-spec/1.2/html/x109.html
|
|
|
|
* and look at the _NET_DESKTOP_LAYOUT section for details.
|
2003-01-05 13:36:01 -05:00
|
|
|
* For instance:
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
/* starting_corner = META_SCREEN_TOPLEFT
|
2003-01-05 13:36:01 -05:00
|
|
|
* vertical_workspaces = 0 vertical_workspaces=1
|
2014-05-02 09:34:02 -04:00
|
|
|
* 1234 1357
|
|
|
|
* 5678 2468
|
|
|
|
*
|
|
|
|
* starting_corner = META_SCREEN_TOPRIGHT
|
2003-01-05 13:36:01 -05:00
|
|
|
* vertical_workspaces = 0 vertical_workspaces=1
|
2014-05-02 09:34:02 -04:00
|
|
|
* 4321 7531
|
|
|
|
* 8765 8642
|
|
|
|
*
|
|
|
|
* starting_corner = META_SCREEN_BOTTOMLEFT
|
2003-01-05 13:36:01 -05:00
|
|
|
* vertical_workspaces = 0 vertical_workspaces=1
|
2014-05-02 09:34:02 -04:00
|
|
|
* 5678 2468
|
|
|
|
* 1234 1357
|
|
|
|
*
|
|
|
|
* starting_corner = META_SCREEN_BOTTOMRIGHT
|
2003-01-05 13:36:01 -05:00
|
|
|
* vertical_workspaces = 0 vertical_workspaces=1
|
2014-05-02 09:34:02 -04:00
|
|
|
* 8765 8642
|
|
|
|
* 4321 7531
|
2003-01-05 13:36:01 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
/* keep in mind that we could have a ragged layout, e.g. the "8"
|
|
|
|
* in the above grids could be missing
|
|
|
|
*/
|
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
grid = g_new (int, grid_area);
|
|
|
|
|
|
|
|
current_row = -1;
|
|
|
|
current_col = -1;
|
|
|
|
i = 0;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
|
|
|
switch (screen->starting_corner)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
case META_SCREEN_TOPLEFT:
|
2014-05-02 09:34:02 -04:00
|
|
|
if (screen->vertical_workspaces)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
c = 0;
|
|
|
|
while (c < cols)
|
|
|
|
{
|
|
|
|
r = 0;
|
|
|
|
while (r < rows)
|
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
else
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
r = 0;
|
|
|
|
while (r < rows)
|
|
|
|
{
|
2003-01-05 21:59:19 -05:00
|
|
|
c = 0;
|
|
|
|
while (c < cols)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
2003-01-05 21:59:19 -05:00
|
|
|
++c;
|
2003-01-05 13:36:01 -05:00
|
|
|
}
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
break;
|
|
|
|
case META_SCREEN_TOPRIGHT:
|
2014-05-02 09:34:02 -04:00
|
|
|
if (screen->vertical_workspaces)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
c = cols - 1;
|
|
|
|
while (c >= 0)
|
|
|
|
{
|
|
|
|
r = 0;
|
|
|
|
while (r < rows)
|
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
--c;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
else
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
2003-01-05 21:59:19 -05:00
|
|
|
r = 0;
|
|
|
|
while (r < rows)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
2003-01-05 21:59:19 -05:00
|
|
|
c = cols - 1;
|
|
|
|
while (c >= 0)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
2003-01-05 21:59:19 -05:00
|
|
|
--c;
|
2003-01-05 13:36:01 -05:00
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
++r;
|
2003-01-05 13:36:01 -05:00
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
break;
|
|
|
|
case META_SCREEN_BOTTOMLEFT:
|
2014-05-02 09:34:02 -04:00
|
|
|
if (screen->vertical_workspaces)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
c = 0;
|
|
|
|
while (c < cols)
|
|
|
|
{
|
|
|
|
r = rows - 1;
|
|
|
|
while (r >= 0)
|
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
|
|
|
--r;
|
|
|
|
}
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
else
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
r = rows - 1;
|
|
|
|
while (r >= 0)
|
|
|
|
{
|
2003-01-05 21:59:19 -05:00
|
|
|
c = 0;
|
|
|
|
while (c < cols)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
2003-01-05 21:59:19 -05:00
|
|
|
++c;
|
2003-01-05 13:36:01 -05:00
|
|
|
}
|
|
|
|
--r;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
break;
|
|
|
|
case META_SCREEN_BOTTOMRIGHT:
|
2014-05-02 09:34:02 -04:00
|
|
|
if (screen->vertical_workspaces)
|
2003-01-05 13:36:01 -05:00
|
|
|
{
|
|
|
|
c = cols - 1;
|
|
|
|
while (c >= 0)
|
|
|
|
{
|
|
|
|
r = rows - 1;
|
|
|
|
while (r >= 0)
|
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
|
|
|
--r;
|
|
|
|
}
|
|
|
|
--c;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 21:59:19 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
r = rows - 1;
|
|
|
|
while (r >= 0)
|
|
|
|
{
|
|
|
|
c = cols - 1;
|
|
|
|
while (c >= 0)
|
|
|
|
{
|
|
|
|
grid[r*cols+c] = i;
|
|
|
|
++i;
|
|
|
|
--c;
|
|
|
|
}
|
|
|
|
--r;
|
|
|
|
}
|
|
|
|
}
|
2003-01-05 13:36:01 -05:00
|
|
|
break;
|
2014-05-02 09:34:02 -04:00
|
|
|
}
|
2003-01-05 13:36:01 -05:00
|
|
|
|
|
|
|
if (i != grid_area)
|
|
|
|
meta_bug ("did not fill in the whole workspace grid in %s (%d filled)\n",
|
2008-01-28 09:52:34 -05:00
|
|
|
G_STRFUNC, i);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-01-05 13:36:01 -05:00
|
|
|
current_row = 0;
|
|
|
|
current_col = 0;
|
|
|
|
r = 0;
|
|
|
|
while (r < rows)
|
|
|
|
{
|
|
|
|
c = 0;
|
|
|
|
while (c < cols)
|
|
|
|
{
|
|
|
|
if (grid[r*cols+c] == current_space)
|
|
|
|
{
|
|
|
|
current_row = r;
|
|
|
|
current_col = c;
|
|
|
|
}
|
|
|
|
else if (grid[r*cols+c] >= num_workspaces)
|
|
|
|
{
|
|
|
|
/* flag nonexistent spaces with -1 */
|
|
|
|
grid[r*cols+c] = -1;
|
|
|
|
}
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
|
|
|
|
layout->rows = rows;
|
|
|
|
layout->cols = cols;
|
|
|
|
layout->grid = grid;
|
|
|
|
layout->grid_area = grid_area;
|
|
|
|
layout->current_row = current_row;
|
|
|
|
layout->current_col = current_col;
|
|
|
|
|
|
|
|
#ifdef WITH_VERBOSE_MODE
|
|
|
|
if (meta_is_verbose ())
|
|
|
|
{
|
|
|
|
r = 0;
|
|
|
|
while (r < layout->rows)
|
|
|
|
{
|
2003-01-05 21:59:19 -05:00
|
|
|
meta_verbose (" ");
|
2003-01-05 13:36:01 -05:00
|
|
|
meta_push_no_msg_prefix ();
|
|
|
|
c = 0;
|
|
|
|
while (c < layout->cols)
|
|
|
|
{
|
|
|
|
if (r == layout->current_row &&
|
|
|
|
c == layout->current_col)
|
|
|
|
meta_verbose ("*%2d ", layout->grid[r*layout->cols+c]);
|
|
|
|
else
|
|
|
|
meta_verbose ("%3d ", layout->grid[r*layout->cols+c]);
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
meta_verbose ("\n");
|
|
|
|
meta_pop_no_msg_prefix ();
|
|
|
|
++r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* WITH_VERBOSE_MODE */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_screen_free_workspace_layout (MetaWorkspaceLayout *layout)
|
|
|
|
{
|
|
|
|
g_free (layout->grid);
|
2002-06-22 01:11:04 -04:00
|
|
|
}
|
2002-09-28 22:50:24 -04:00
|
|
|
|
2002-10-01 20:47:29 -04:00
|
|
|
static void
|
2014-08-15 20:05:48 -04:00
|
|
|
meta_screen_resize_func (MetaWindow *window,
|
|
|
|
gpointer user_data)
|
2002-09-28 22:50:24 -04:00
|
|
|
{
|
2003-06-25 23:09:38 -04:00
|
|
|
if (window->struts)
|
|
|
|
{
|
|
|
|
meta_window_update_struts (window);
|
|
|
|
}
|
Refactor thrice-duplicated queue code in window.c. Closes #376760.
2007-06-10 Thomas Thurman <thomas@thurman.org.uk>
Refactor thrice-duplicated queue code in window.c. Closes #376760.
* src/window.c (meta_window_queue, meta_window_unqueue):
New functions.
* src/window.[ch] (meta_window_unqueue_*, meta_window_queue_*):
Removed functions.
* src/window.c (meta_window_new_with_attrs, meta_window_free,
meta_window_flush_calc_showing, queue_calc_showing_func,
meta_window_minimize, meta_window_unminimize, meta_window_maximize,
meta_window_make_fullscreen, meta_window_shade,
meta_window_unshade, meta_window_move_resize_internal,
window_stick_impl, window_unstick_impl,
meta_window_client_message, process_property_notify): Modified to
use new queueing functions.
* src/window.c (idle_move_resize, idle_update_icon,
idle_calc_showing): update to receive queue number from pointer.
* src/window.h (MetaQueueType): new enum.
* src/window.h (MetaWindow): *_queued replaced with is_in_queue
bitfield.
* src/core.c (meta_core_queue_frame_resize):
* src/display.c (event_callback,
meta_display_queue_retheme_all_windows): Using new queueing functions.
* src/frame.c (meta_window_destroy_frame): Using new queueing functions.
* src/screen.c (queue_resize, meta_screen_resize_func,
queue_windows_showing): Using new queueing functions.
* src/window-props.c (reload_mwm_hints, reload_wm_hints,
reload_transient_for): Using new queueing functions.
* src/workspace.c (meta_workspace_add_window,
meta_workspace_remove_window, meta_workspace_queue_calc_showing,
meta_workspace_invalidate_work_area): Using new queueing functions.
svn path=/trunk/; revision=3236
2007-06-10 21:15:33 -04:00
|
|
|
meta_window_queue (window, META_QUEUE_MOVE_RESIZE);
|
2006-08-07 13:18:33 -04:00
|
|
|
|
|
|
|
meta_window_recalc_features (window);
|
2002-09-28 22:50:24 -04:00
|
|
|
}
|
|
|
|
|
2013-07-18 07:09:16 -04:00
|
|
|
static void
|
|
|
|
on_monitors_changed (MetaMonitorManager *manager,
|
|
|
|
MetaScreen *screen)
|
2011-02-25 10:37:05 -05:00
|
|
|
{
|
2013-07-22 12:57:12 -04:00
|
|
|
meta_monitor_manager_get_screen_size (manager,
|
|
|
|
&screen->rect.width,
|
|
|
|
&screen->rect.height);
|
2011-02-28 15:26:11 -05:00
|
|
|
|
2009-08-31 09:52:16 -04:00
|
|
|
reload_monitor_infos (screen);
|
Fix some support for EWMH hints, and fix USER_TIME support to include the
2004-07-31 Rob Adams <readams@readams.net>
Fix some support for EWMH hints, and fix USER_TIME support to
include the DEMANDS_ATTENTION hint. Also includes some code for
implementing _NET_RESTACK_WINDOW and _NET_MOVERESIZE_WINDOW, but
this is disabled pending feature thaw.
* COMPLIANCE: update with new information
* src/display.c (meta_display_open): add new hints to list
* src/display.h (_MetaDisplay): Add new atoms to struct
* src/screen.c (set_supported_hint): update the list of support
hints.
(set_desktop_viewport_hint): new function sets the viewport hint
to (0,0) as required by the spec for WMs with no viewport support.
(set_desktop_geometry_hint): new function to set the desktop size
hint to the size of the display, since we don't implement large
desktop support, as required by the spec.
(meta_screen_resize): update the geometry hint on screen resize
* src/window.c (meta_window_new_with_attrs): Initialize
demands_attention state
(set_net_wm_state): Set demands_attention hint in the window state
(meta_window_show): If we don't pop up a window because of
USER_TIME, set DEMANDS_ATTENTION on the window.
(meta_window_focus): When a window receives focus, remove
DEMANDS_ATTENTION hint
(meta_window_client_message): Allow other apps to set
DEMANDS_ATTENTION on a window. Also, if the _NET_ACTIVE_WINDOW
hint includes a timestamp, use it.
(update_net_wm_state): Read DEMANDS_ATTENTION state also
* src/window.h (_MetaWindow): add wm_state_demands_attention bit.
2004-07-31 15:56:10 -04:00
|
|
|
set_desktop_geometry_hint (screen);
|
2011-05-20 04:56:12 -04:00
|
|
|
|
2012-10-14 06:16:06 -04:00
|
|
|
/* Resize the guard window to fill the screen again. */
|
|
|
|
if (screen->guard_window != None)
|
|
|
|
{
|
|
|
|
XWindowChanges changes;
|
|
|
|
|
|
|
|
changes.x = 0;
|
|
|
|
changes.y = 0;
|
2013-07-18 07:09:16 -04:00
|
|
|
changes.width = screen->rect.width;
|
|
|
|
changes.height = screen->rect.height;
|
2012-10-14 06:16:06 -04:00
|
|
|
|
|
|
|
XConfigureWindow(screen->display->xdisplay,
|
|
|
|
screen->guard_window,
|
|
|
|
CWX | CWY | CWWidth | CWHeight,
|
|
|
|
&changes);
|
|
|
|
}
|
|
|
|
|
2011-02-25 10:37:05 -05:00
|
|
|
/* Fix up monitor for all windows on this screen */
|
2014-08-15 20:10:25 -04:00
|
|
|
meta_screen_foreach_window (screen, META_LIST_INCLUDE_OVERRIDE_REDIRECT, (MetaScreenWindowFunc) meta_window_update_for_monitors_changed, 0);
|
2011-02-25 10:37:05 -05:00
|
|
|
|
2015-07-21 10:12:49 -04:00
|
|
|
/* Queue a resize on all the windows */
|
|
|
|
meta_screen_foreach_window (screen, META_LIST_DEFAULT, meta_screen_resize_func, 0);
|
|
|
|
|
2013-03-14 16:55:49 -04:00
|
|
|
meta_screen_queue_check_fullscreen (screen);
|
|
|
|
|
2012-01-25 21:50:48 -05:00
|
|
|
g_signal_emit (screen, screen_signals[MONITORS_CHANGED], 0);
|
2002-09-28 22:50:24 -04:00
|
|
|
}
|
2002-10-16 16:12:24 -04:00
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
void
|
|
|
|
meta_screen_update_showing_desktop_hint (MetaScreen *screen)
|
2002-10-16 16:12:24 -04:00
|
|
|
{
|
|
|
|
unsigned long data[1];
|
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
data[0] = screen->active_workspace->showing_desktop ? 1 : 0;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-10-16 16:12:24 -04:00
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
2008-05-02 14:49:01 -04:00
|
|
|
screen->display->atom__NET_SHOWING_DESKTOP,
|
2002-10-16 16:12:24 -04:00
|
|
|
XA_CARDINAL,
|
|
|
|
32, PropModeReplace, (guchar*) data, 1);
|
2010-10-25 14:44:30 -04:00
|
|
|
meta_error_trap_pop (screen->display);
|
2002-10-16 16:12:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
queue_windows_showing (MetaScreen *screen)
|
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
GSList *windows, *l;
|
2002-10-16 16:12:24 -04:00
|
|
|
|
2004-10-22 16:28:36 -04:00
|
|
|
/* Must operate on all windows on display instead of just on the
|
|
|
|
* active_workspace's window list, because the active_workspace's
|
|
|
|
* window list may not contain the on_all_workspace windows.
|
|
|
|
*/
|
2009-06-15 15:32:23 -04:00
|
|
|
windows = meta_display_list_windows (screen->display, META_LIST_DEFAULT);
|
2002-10-16 16:12:24 -04:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = windows; l != NULL; l = l->next)
|
2002-10-16 16:12:24 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWindow *w = l->data;
|
2014-08-15 19:43:08 -04:00
|
|
|
meta_window_queue (w, META_QUEUE_CALC_SHOWING);
|
2002-10-16 16:12:24 -04:00
|
|
|
}
|
2004-10-22 16:28:36 -04:00
|
|
|
|
|
|
|
g_slist_free (windows);
|
2002-10-16 16:12:24 -04:00
|
|
|
}
|
|
|
|
|
2003-05-16 17:59:08 -04:00
|
|
|
void
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
meta_screen_minimize_all_on_active_workspace_except (MetaScreen *screen,
|
|
|
|
MetaWindow *keep)
|
2003-05-16 17:59:08 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
GList *l;
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->active_workspace->windows; l != NULL; l = l->next)
|
2003-05-16 17:59:08 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWindow *w = l->data;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-08-15 19:43:08 -04:00
|
|
|
if (w->has_minimize_func && w != keep)
|
2003-05-16 17:59:08 -04:00
|
|
|
meta_window_minimize (w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-16 16:12:24 -04:00
|
|
|
void
|
2014-05-02 09:34:02 -04:00
|
|
|
meta_screen_show_desktop (MetaScreen *screen,
|
Fix issues on 64-bit machines with timestamps by using guint32 (like gtk+
2006-09-13 Elijah Newren <newren gmail com>
* src/common.h (MetaWindowMenuFunc):
* src/core.[ch] (meta_core_user_lower_and_unfocus,
meta_core_user_focus, meta_core_show_window_menu,
meta_core_begin_grab_op, meta_core_end_grab_op):
* src/delete.c (delete_ping_reply_func, delete_ping_timeout_func,
meta_window_delete):
* src/display.[ch] (struct MetaDisplay, struct MetaPingData,
sanity_check_timestamps, meta_display_open, event_callback,
meta_spew_event, meta_display_set_grab_op_cursor,
meta_display_begin_grab_op, meta_display_end_grab_op,
meta_display_ping_timeout, meta_display_ping_window,
process_pong_message, timestamp_too_old,
meta_display_set_input_focus_window):
* src/keybindings.[ch] (grab_keyboard, ungrab_keyboard,
meta_screen_grab_all_keys, meta_window_grab_all_keys,
meta_window_ungrab_all_keys, error_on_generic_command,
error_on_command, error_on_terminal_command):
* src/metacity-dialog.c (on_realize, warn_about_no_sm_support,
error_about_command, main):
* src/screen.[ch] (struct _MetaScreen, meta_screen_new,
meta_screen_show_desktop, meta_screen_apply_startup_properties):
* src/session.c (warn_about_lame_clients_and_finish_interact):
* src/window.[ch] (struct _MetaWindow,
intervening_user_event_occurred, window_activate,
meta_window_delete, meta_window_focus,
meta_window_send_icccm_message, meta_window_client_message,
menu_callback, meta_window_show_menu, struct EventScannerData,
check_use_this_motion_notify, meta_window_begin_grab_op,
meta_window_set_user_time):
* src/workspace.[ch] (focus_ancestor_or_mru_window,
meta_workspace_activate_with_focus, meta_workspace_activate,
meta_workspace_focus_default_window,
focus_ancestor_or_mru_window):
Fix issues on 64-bit machines with timestamps by using guint32
(like gtk+ does) instead of Time. #348305
2006-09-13 12:32:33 -04:00
|
|
|
guint32 timestamp)
|
2002-10-16 16:12:24 -04:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
GList *l;
|
2004-12-19 21:46:42 -05:00
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
if (screen->active_workspace->showing_desktop)
|
2002-10-16 16:12:24 -04:00
|
|
|
return;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
screen->active_workspace->showing_desktop = TRUE;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-10-16 16:12:24 -04:00
|
|
|
queue_windows_showing (screen);
|
2004-12-19 21:46:42 -05:00
|
|
|
|
|
|
|
/* Focus the most recently used META_WINDOW_DESKTOP window, if there is one;
|
|
|
|
* see bug 159257.
|
|
|
|
*/
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->active_workspace->mru_list; l != NULL; l = l->next)
|
2004-12-19 21:46:42 -05:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
MetaWindow *w = l->data;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-08-15 19:43:08 -04:00
|
|
|
if (w->type == META_WINDOW_DESKTOP)
|
2004-12-19 21:46:42 -05:00
|
|
|
{
|
|
|
|
meta_window_focus (w, timestamp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
meta_screen_update_showing_desktop_hint (screen);
|
2002-10-16 16:12:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_screen_unshow_desktop (MetaScreen *screen)
|
|
|
|
{
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
if (!screen->active_workspace->showing_desktop)
|
2002-10-16 16:12:24 -04:00
|
|
|
return;
|
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
screen->active_workspace->showing_desktop = FALSE;
|
|
|
|
|
2002-10-16 16:12:24 -04:00
|
|
|
queue_windows_showing (screen);
|
|
|
|
|
Make the "showing desktop" mode be per-workspace instead of per-screen.
2004-10-16 Elijah Newren <newren@math.utah.edu>
Make the "showing desktop" mode be per-workspace instead of
per-screen. (fixes #142198)
* src/keybindings.c (handle_toggle_desktop): access
showing_desktop through the active workspace
* src/screen.c (meta_screen_new): remove initialization of
screen->showing_desktop,
(meta_screen_update_showing_desktop_hint): rename and make not
static and access showing_desktop through the active workspace,
(queue_windows_showing): replace meta_display_list_windows() with
screen->active_workspace->windows,
(meta_screen_minimize_all_on_active_workspace_except): renamed
from meta_screen_minimize_all_except since it now only works on
the active workspace, (meta_screen_show_desktop,
meta_screen_unshow_desktop): access showing_desktop through the
active workspace
* src/screen.h (struct _MetaScreen): remove showing_desktop field,
(meta_screen_minimize_all_on_active_workspace_except): rename from
meta_screen_minimize_all_except,
(meta_screen_update)_showing_desktop_hint): export this function too
* src/window.c (maybe_leave_show_desktop_mode): access
showing_desktop through the active workspace and use new name for
meta_screen_minimize_all_on_active_workspace_except,
(window_should_be_showing): access showing_desktop through the
active workspace
* src/workspace.c (meta_workspace_new): initialize
workspace->showing_desktop, (meta_workspace_activate_with_focus):
add note that old can be NULL, update showing_desktop_hint if
different on this workspace than the previous one
* src/workspace.h (struct _MetaWorkspace): add showing_desktop
field
2004-10-17 00:28:29 -04:00
|
|
|
meta_screen_update_showing_desktop_hint (screen);
|
2002-10-16 16:12:24 -04:00
|
|
|
}
|
2002-10-25 19:35:50 -04:00
|
|
|
|
2009-08-02 00:42:34 -04:00
|
|
|
/**
|
2011-08-30 15:12:09 -04:00
|
|
|
* meta_screen_get_startup_sequences: (skip)
|
2009-08-02 00:42:34 -04:00
|
|
|
* @screen:
|
|
|
|
*
|
2011-08-30 15:12:09 -04:00
|
|
|
* Return value: (transfer none): Currently active #SnStartupSequence items
|
2009-08-02 00:42:34 -04:00
|
|
|
*/
|
|
|
|
GSList *
|
|
|
|
meta_screen_get_startup_sequences (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
return screen->startup_sequences;
|
2002-10-25 19:35:50 -04:00
|
|
|
}
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2007-06-17 22:37:14 -04:00
|
|
|
/* Sets the initial_timestamp and initial_workspace properties
|
|
|
|
* of a window according to information given us by the
|
|
|
|
* startup-notification library.
|
|
|
|
*
|
|
|
|
* Returns TRUE if startup properties have been applied, and
|
|
|
|
* FALSE if they have not (for example, if they had already
|
|
|
|
* been applied.)
|
|
|
|
*/
|
|
|
|
gboolean
|
2002-11-30 22:58:04 -05:00
|
|
|
meta_screen_apply_startup_properties (MetaScreen *screen,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_STARTUP_NOTIFICATION
|
|
|
|
const char *startup_id;
|
2014-08-15 19:49:49 -04:00
|
|
|
GSList *l;
|
2002-11-30 22:58:04 -05:00
|
|
|
SnStartupSequence *sequence;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2007-06-17 22:37:14 -04:00
|
|
|
/* Does the window have a startup ID stored? */
|
2002-11-30 22:58:04 -05:00
|
|
|
startup_id = meta_window_get_startup_id (window);
|
|
|
|
|
2003-01-22 20:53:18 -05:00
|
|
|
meta_topic (META_DEBUG_STARTUP,
|
|
|
|
"Applying startup props to %s id \"%s\"\n",
|
|
|
|
window->desc,
|
|
|
|
startup_id ? startup_id : "(none)");
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
sequence = NULL;
|
2003-01-22 20:53:18 -05:00
|
|
|
if (startup_id == NULL)
|
2002-11-30 22:58:04 -05:00
|
|
|
{
|
2007-06-17 22:37:14 -04:00
|
|
|
/* No startup ID stored for the window. Let's ask the
|
|
|
|
* startup-notification library whether there's anything
|
|
|
|
* stored for the resource name or resource class hints.
|
|
|
|
*/
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->startup_sequences; l != NULL; l = l->next)
|
2003-01-22 20:53:18 -05:00
|
|
|
{
|
|
|
|
const char *wmclass;
|
2014-08-15 19:49:49 -04:00
|
|
|
SnStartupSequence *seq = l->data;
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
wmclass = sn_startup_sequence_get_wmclass (seq);
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2003-01-22 20:53:18 -05:00
|
|
|
if (wmclass != NULL &&
|
|
|
|
((window->res_class &&
|
|
|
|
strcmp (wmclass, window->res_class) == 0) ||
|
|
|
|
(window->res_name &&
|
|
|
|
strcmp (wmclass, window->res_name) == 0)))
|
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
sequence = seq;
|
2003-01-22 20:53:18 -05:00
|
|
|
|
|
|
|
g_assert (window->startup_id == NULL);
|
|
|
|
window->startup_id = g_strdup (sn_startup_sequence_get_id (sequence));
|
|
|
|
startup_id = window->startup_id;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_STARTUP,
|
|
|
|
"Ending legacy sequence %s due to window %s\n",
|
|
|
|
sn_startup_sequence_get_id (sequence),
|
|
|
|
window->desc);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-01-22 20:53:18 -05:00
|
|
|
sn_startup_sequence_complete (sequence);
|
|
|
|
break;
|
|
|
|
}
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
2003-01-22 20:53:18 -05:00
|
|
|
}
|
2002-11-30 22:58:04 -05:00
|
|
|
|
2007-06-17 22:37:14 -04:00
|
|
|
/* Still no startup ID? Bail. */
|
2003-01-22 20:53:18 -05:00
|
|
|
if (startup_id == NULL)
|
2007-06-17 22:37:14 -04:00
|
|
|
return FALSE;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2007-06-17 22:37:14 -04:00
|
|
|
/* We might get this far and not know the sequence ID (if the window
|
|
|
|
* already had a startup ID stored), so let's look for one if we don't
|
|
|
|
* already know it.
|
|
|
|
*/
|
2003-01-22 20:53:18 -05:00
|
|
|
if (sequence == NULL)
|
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
for (l = screen->startup_sequences; l != NULL; l = l->next)
|
2003-01-22 20:53:18 -05:00
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
SnStartupSequence *seq = l->data;
|
2003-01-22 20:53:18 -05:00
|
|
|
const char *id;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2014-08-15 19:49:49 -04:00
|
|
|
id = sn_startup_sequence_get_id (seq);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2003-01-22 20:53:18 -05:00
|
|
|
if (strcmp (id, startup_id) == 0)
|
|
|
|
{
|
2014-08-15 19:49:49 -04:00
|
|
|
sequence = seq;
|
2003-01-22 20:53:18 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sequence != NULL)
|
|
|
|
{
|
2007-06-17 22:37:14 -04:00
|
|
|
gboolean changed_something = FALSE;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
meta_topic (META_DEBUG_STARTUP,
|
|
|
|
"Found startup sequence for window %s ID \"%s\"\n",
|
|
|
|
window->desc, startup_id);
|
|
|
|
|
|
|
|
if (!window->initial_workspace_set)
|
|
|
|
{
|
2007-06-17 22:37:14 -04:00
|
|
|
int space = sn_startup_sequence_get_workspace (sequence);
|
2002-11-30 22:58:04 -05:00
|
|
|
if (space >= 0)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_STARTUP,
|
|
|
|
"Setting initial window workspace to %d based on startup info\n",
|
|
|
|
space);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
window->initial_workspace_set = TRUE;
|
|
|
|
window->initial_workspace = space;
|
2007-06-17 22:37:14 -04:00
|
|
|
changed_something = TRUE;
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 11:47:05 -04:00
|
|
|
if (!window->initial_timestamp_set)
|
|
|
|
{
|
2007-06-17 22:37:14 -04:00
|
|
|
guint32 timestamp = sn_startup_sequence_get_timestamp (sequence);
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 11:47:05 -04:00
|
|
|
meta_topic (META_DEBUG_STARTUP,
|
Fix issues on 64-bit machines with timestamps by using guint32 (like gtk+
2006-09-13 Elijah Newren <newren gmail com>
* src/common.h (MetaWindowMenuFunc):
* src/core.[ch] (meta_core_user_lower_and_unfocus,
meta_core_user_focus, meta_core_show_window_menu,
meta_core_begin_grab_op, meta_core_end_grab_op):
* src/delete.c (delete_ping_reply_func, delete_ping_timeout_func,
meta_window_delete):
* src/display.[ch] (struct MetaDisplay, struct MetaPingData,
sanity_check_timestamps, meta_display_open, event_callback,
meta_spew_event, meta_display_set_grab_op_cursor,
meta_display_begin_grab_op, meta_display_end_grab_op,
meta_display_ping_timeout, meta_display_ping_window,
process_pong_message, timestamp_too_old,
meta_display_set_input_focus_window):
* src/keybindings.[ch] (grab_keyboard, ungrab_keyboard,
meta_screen_grab_all_keys, meta_window_grab_all_keys,
meta_window_ungrab_all_keys, error_on_generic_command,
error_on_command, error_on_terminal_command):
* src/metacity-dialog.c (on_realize, warn_about_no_sm_support,
error_about_command, main):
* src/screen.[ch] (struct _MetaScreen, meta_screen_new,
meta_screen_show_desktop, meta_screen_apply_startup_properties):
* src/session.c (warn_about_lame_clients_and_finish_interact):
* src/window.[ch] (struct _MetaWindow,
intervening_user_event_occurred, window_activate,
meta_window_delete, meta_window_focus,
meta_window_send_icccm_message, meta_window_client_message,
menu_callback, meta_window_show_menu, struct EventScannerData,
check_use_this_motion_notify, meta_window_begin_grab_op,
meta_window_set_user_time):
* src/workspace.[ch] (focus_ancestor_or_mru_window,
meta_workspace_activate_with_focus, meta_workspace_activate,
meta_workspace_focus_default_window,
focus_ancestor_or_mru_window):
Fix issues on 64-bit machines with timestamps by using guint32
(like gtk+ does) instead of Time. #348305
2006-09-13 12:32:33 -04:00
|
|
|
"Setting initial window timestamp to %u based on startup info\n",
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 11:47:05 -04:00
|
|
|
timestamp);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 11:47:05 -04:00
|
|
|
window->initial_timestamp_set = TRUE;
|
|
|
|
window->initial_timestamp = timestamp;
|
2007-06-17 22:37:14 -04:00
|
|
|
changed_something = TRUE;
|
Add support for _NET_WM_USER_TIME
2004-06-17 Elijah Newren <newren@math.utah.edu>
Add support for _NET_WM_USER_TIME
* src/display.c:
(meta_display_open): Add _NET_WM_USER_TIME to atom_names[],
(event_callback): Manually set _NET_WM_USER_TIME upon KeyPress
(doesn't work since keyboard isn't grabbed) and ButtonPress (does
work), this is just a fallback for applications that don't update
this themselves.
* src/display.h: (struct _MetaDisplay): Add atom_net_wm_user_time field
* src/screen.c: (meta_screen_apply_startup_properties): Check for
TIMESTAMP provided from startup sequence as well.
* src/stack.c:
s/meta_window_set_stack_position/meta_window_set_stack_position_no_sync/,
(meta_window_set_stack_position): New function which calls the
meta_window_set_stack_position_no_sync function followed immediately
by calling meta_stack_sync_to_server.
* src/window-props.c:
(init_net_wm_user_time), (reload_net_wm_user_time): new functions,
(reload_wm_hints): also load atom_net_wm_user_time
* src/window.c:
new XSERVER_TIME_IS_LATER macro (accounts for timestamp wraparound),
(meta_window_new_with_attrs): add timestamp attributes,
(window_takes_focus_on_map): use TIMESTAMP from startup
notification and _NET_WM_USER_TIME to decide whether to focus new
windows,
(meta_window_show): if app doesn't take focus on map, place it
just below the focused window in the stack
(process_property_notify): check for changes to _NET_WM_USRE_TIME,
(meta_window_stack_just_below): new function
* src/window.h:
(_MetaWindow struct): new fields for initial_timestamp,
initial_timestamp_set, net_wm_user_time_set, and net_wm_user_time,
(meta_window_stack_just_below): new function
2004-06-24 11:47:05 -04:00
|
|
|
}
|
|
|
|
|
2007-06-17 22:37:14 -04:00
|
|
|
return changed_something;
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_STARTUP,
|
|
|
|
"Did not find startup sequence for window %s ID \"%s\"\n",
|
|
|
|
window->desc, startup_id);
|
|
|
|
}
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2002-11-30 22:58:04 -05:00
|
|
|
#endif /* HAVE_STARTUP_NOTIFICATION */
|
2007-06-17 22:37:14 -04:00
|
|
|
|
|
|
|
return FALSE;
|
2002-11-30 22:58:04 -05:00
|
|
|
}
|
|
|
|
|
2008-05-18 20:00:09 -04:00
|
|
|
int
|
|
|
|
meta_screen_get_screen_number (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
return screen->number;
|
|
|
|
}
|
|
|
|
|
2008-12-02 18:13:11 -05:00
|
|
|
/**
|
|
|
|
* meta_screen_get_display:
|
|
|
|
* @screen: A #MetaScreen
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2011-11-02 11:34:45 -04:00
|
|
|
* Retrieve the display associated with screen.
|
|
|
|
*
|
2014-05-02 09:34:02 -04:00
|
|
|
* Returns: (transfer none): Display
|
2008-12-02 18:13:11 -05:00
|
|
|
*/
|
2008-05-18 20:00:09 -04:00
|
|
|
MetaDisplay *
|
|
|
|
meta_screen_get_display (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
return screen->display;
|
|
|
|
}
|
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_xroot: (skip)
|
2013-02-15 13:42:08 -05:00
|
|
|
* @screen: A #MetaScreen
|
2010-09-01 15:39:53 -04:00
|
|
|
*
|
|
|
|
*/
|
2008-05-18 20:00:09 -04:00
|
|
|
Window
|
|
|
|
meta_screen_get_xroot (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
return screen->xroot;
|
|
|
|
}
|
|
|
|
|
2011-10-04 03:19:11 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_size:
|
|
|
|
* @screen: A #MetaScreen
|
|
|
|
* @width: (out): The width of the screen
|
|
|
|
* @height: (out): The height of the screen
|
|
|
|
*
|
|
|
|
* Retrieve the size of the screen.
|
|
|
|
*/
|
2014-05-02 09:34:02 -04:00
|
|
|
void
|
2008-05-18 20:00:09 -04:00
|
|
|
meta_screen_get_size (MetaScreen *screen,
|
|
|
|
int *width,
|
|
|
|
int *height)
|
|
|
|
{
|
2012-08-29 13:34:30 -04:00
|
|
|
if (width != NULL)
|
|
|
|
*width = screen->rect.width;
|
|
|
|
|
|
|
|
if (height != NULL)
|
|
|
|
*height = screen->rect.height;
|
2008-05-18 20:00:09 -04:00
|
|
|
}
|
|
|
|
|
Merge compositor branch.
2007-12-18 Iain Holmes <iain@gnome.org>
* configure.in, src/theme.c, src/display.c,
src/theme.h, src/display.h, src/theme-parser.c,
src/compositor.c, src/c-screen.c, src/compositor.h,
src/c-screen.h, src/ui.c, src/screen.c, src/ui.h,
src/screen.h, src/c-window.c, src/c-window.h,
src/theme-viewer.c, src/Makefile.am: Merge compositor branch.
svn path=/trunk/; revision=3483
2007-12-18 22:49:50 -05:00
|
|
|
void
|
|
|
|
meta_screen_set_cm_selection (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
char selection[32];
|
|
|
|
Atom a;
|
2014-12-28 22:11:45 -05:00
|
|
|
guint32 timestamp;
|
Merge compositor branch.
2007-12-18 Iain Holmes <iain@gnome.org>
* configure.in, src/theme.c, src/display.c,
src/theme.h, src/display.h, src/theme-parser.c,
src/compositor.c, src/c-screen.c, src/compositor.h,
src/c-screen.h, src/ui.c, src/screen.c, src/ui.h,
src/screen.h, src/c-window.c, src/c-window.h,
src/theme-viewer.c, src/Makefile.am: Merge compositor branch.
svn path=/trunk/; revision=3483
2007-12-18 22:49:50 -05:00
|
|
|
|
2014-12-28 22:11:45 -05:00
|
|
|
timestamp = meta_display_get_current_time_roundtrip (screen->display);
|
|
|
|
g_snprintf (selection, sizeof (selection), "_NET_WM_CM_S%d", screen->number);
|
2014-12-28 22:36:29 -05:00
|
|
|
a = XInternAtom (screen->display->xdisplay, selection, False);
|
2014-12-28 22:11:45 -05:00
|
|
|
screen->wm_cm_selection_window = take_manager_selection (screen->display, screen->xroot, a, timestamp, TRUE);
|
Merge compositor branch.
2007-12-18 Iain Holmes <iain@gnome.org>
* configure.in, src/theme.c, src/display.c,
src/theme.h, src/display.h, src/theme-parser.c,
src/compositor.c, src/c-screen.c, src/compositor.h,
src/c-screen.h, src/ui.c, src/screen.c, src/ui.h,
src/screen.h, src/c-window.c, src/c-window.h,
src/theme-viewer.c, src/Makefile.am: Merge compositor branch.
svn path=/trunk/; revision=3483
2007-12-18 22:49:50 -05:00
|
|
|
}
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_workspaces: (skip)
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (element-type Meta.Workspace): The workspaces for @screen
|
|
|
|
*/
|
2008-09-18 11:09:11 -04:00
|
|
|
GList *
|
|
|
|
meta_screen_get_workspaces (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
return screen->workspaces;
|
|
|
|
}
|
|
|
|
|
2008-11-03 07:32:25 -05:00
|
|
|
int
|
|
|
|
meta_screen_get_active_workspace_index (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
MetaWorkspace *active = screen->active_workspace;
|
|
|
|
|
|
|
|
if (!active)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return meta_workspace_index (active);
|
|
|
|
}
|
2008-11-20 07:41:28 -05:00
|
|
|
|
2009-09-03 20:57:01 -04:00
|
|
|
/**
|
|
|
|
* meta_screen_get_active_workspace:
|
2013-02-15 13:42:08 -05:00
|
|
|
* @screen: A #MetaScreen
|
2009-09-03 20:57:01 -04:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): The current workspace
|
|
|
|
*/
|
2008-11-20 07:41:28 -05:00
|
|
|
MetaWorkspace *
|
|
|
|
meta_screen_get_active_workspace (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
return screen->active_workspace;
|
|
|
|
}
|
2009-03-12 17:07:27 -04:00
|
|
|
|
2012-12-04 14:30:55 -05:00
|
|
|
void
|
|
|
|
meta_screen_focus_default_window (MetaScreen *screen,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
|
|
|
meta_workspace_focus_default_window (screen->active_workspace,
|
|
|
|
NULL,
|
|
|
|
timestamp);
|
|
|
|
}
|
|
|
|
|
2009-03-12 17:07:27 -04:00
|
|
|
void
|
|
|
|
meta_screen_restacked (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
g_signal_emit (screen, screen_signals[RESTACKED], 0);
|
|
|
|
}
|
2009-07-02 11:19:02 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_screen_workspace_switched (MetaScreen *screen,
|
|
|
|
int from,
|
|
|
|
int to,
|
|
|
|
MetaMotionDirection direction)
|
|
|
|
{
|
|
|
|
g_signal_emit (screen, screen_signals[WORKSPACE_SWITCHED], 0,
|
|
|
|
from, to, direction);
|
|
|
|
}
|
|
|
|
|
2011-01-25 16:27:31 -05:00
|
|
|
void
|
|
|
|
meta_screen_set_active_workspace_hint (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
unsigned long data[1];
|
|
|
|
|
|
|
|
/* this is because we destroy the spaces in order,
|
|
|
|
* so we always end up setting a current desktop of
|
|
|
|
* 0 when closing a screen, so lose the current desktop
|
|
|
|
* on restart. By doing this we keep the current
|
|
|
|
* desktop on restart.
|
|
|
|
*/
|
|
|
|
if (screen->closing > 0)
|
|
|
|
return;
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2011-01-25 16:27:31 -05:00
|
|
|
data[0] = meta_workspace_index (screen->active_workspace);
|
|
|
|
|
|
|
|
meta_verbose ("Setting _NET_CURRENT_DESKTOP to %lu\n", data[0]);
|
2014-05-02 09:34:02 -04:00
|
|
|
|
2011-01-25 16:27:31 -05:00
|
|
|
meta_error_trap_push (screen->display);
|
|
|
|
XChangeProperty (screen->display->xdisplay, screen->xroot,
|
|
|
|
screen->display->atom__NET_CURRENT_DESKTOP,
|
|
|
|
XA_CARDINAL,
|
|
|
|
32, PropModeReplace, (guchar*) data, 1);
|
|
|
|
meta_error_trap_pop (screen->display);
|
|
|
|
}
|
|
|
|
|
2013-03-14 16:55:49 -04:00
|
|
|
static gboolean
|
|
|
|
check_fullscreen_func (gpointer data)
|
|
|
|
{
|
|
|
|
MetaScreen *screen = data;
|
2014-10-02 18:55:45 -04:00
|
|
|
MetaWindow *window;
|
2013-03-14 16:55:49 -04:00
|
|
|
GSList *fullscreen_monitors = NULL;
|
2014-10-02 18:55:45 -04:00
|
|
|
GSList *obscured_monitors = NULL;
|
2013-03-14 16:55:49 -04:00
|
|
|
gboolean in_fullscreen_changed = FALSE;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
screen->check_fullscreen_later = 0;
|
|
|
|
|
2014-10-02 18:55:45 -04:00
|
|
|
/* We consider a monitor in fullscreen if it contains a fullscreen window;
|
|
|
|
* however we make an exception for maximized windows above the fullscreen
|
|
|
|
* one, as in that case window+chrome fully obscure the fullscreen window.
|
|
|
|
*/
|
|
|
|
for (window = meta_stack_get_top (screen->stack);
|
|
|
|
window;
|
|
|
|
window = meta_stack_get_below (screen->stack, window, FALSE))
|
2013-03-14 16:55:49 -04:00
|
|
|
{
|
|
|
|
gboolean covers_monitors = FALSE;
|
|
|
|
|
|
|
|
if (window->screen != screen || window->hidden)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (window->fullscreen)
|
2014-10-02 18:55:45 -04:00
|
|
|
{
|
|
|
|
covers_monitors = TRUE;
|
|
|
|
}
|
|
|
|
else if (window->override_redirect)
|
2013-03-14 16:55:49 -04:00
|
|
|
{
|
|
|
|
/* We want to handle the case where an application is creating an
|
|
|
|
* override-redirect window the size of the screen (monitor) and treat
|
|
|
|
* it similarly to a fullscreen window, though it doesn't have fullscreen
|
|
|
|
* window management behavior. (Being O-R, it's not managed at all.)
|
|
|
|
*/
|
|
|
|
if (meta_window_is_monitor_sized (window))
|
|
|
|
covers_monitors = TRUE;
|
|
|
|
}
|
2014-10-02 18:55:45 -04:00
|
|
|
else if (window->maximized_horizontally &&
|
|
|
|
window->maximized_vertically)
|
2013-03-14 16:55:49 -04:00
|
|
|
{
|
2014-10-02 18:55:45 -04:00
|
|
|
int monitor_index = meta_window_get_monitor (window);
|
|
|
|
/* + 1 to avoid NULL */
|
|
|
|
gpointer monitor_p = GINT_TO_POINTER(monitor_index + 1);
|
|
|
|
if (!g_slist_find (obscured_monitors, monitor_p))
|
|
|
|
obscured_monitors = g_slist_prepend (obscured_monitors, monitor_p);
|
2013-03-14 16:55:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (covers_monitors)
|
|
|
|
{
|
|
|
|
int *monitors;
|
|
|
|
gsize n_monitors;
|
|
|
|
gsize j;
|
|
|
|
|
|
|
|
monitors = meta_window_get_all_monitors (window, &n_monitors);
|
|
|
|
for (j = 0; j < n_monitors; j++)
|
|
|
|
{
|
|
|
|
/* + 1 to avoid NULL */
|
|
|
|
gpointer monitor_p = GINT_TO_POINTER(monitors[j] + 1);
|
2014-10-02 18:55:45 -04:00
|
|
|
if (!g_slist_find (fullscreen_monitors, monitor_p) &&
|
|
|
|
!g_slist_find (obscured_monitors, monitor_p))
|
2013-03-14 16:55:49 -04:00
|
|
|
fullscreen_monitors = g_slist_prepend (fullscreen_monitors, monitor_p);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (monitors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-02 18:55:45 -04:00
|
|
|
g_slist_free (obscured_monitors);
|
2013-03-14 16:55:49 -04:00
|
|
|
|
|
|
|
for (i = 0; i < screen->n_monitor_infos; i++)
|
|
|
|
{
|
|
|
|
MetaMonitorInfo *info = &screen->monitor_infos[i];
|
|
|
|
gboolean in_fullscreen = g_slist_find (fullscreen_monitors, GINT_TO_POINTER (i + 1)) != NULL;
|
|
|
|
if (in_fullscreen != info->in_fullscreen)
|
|
|
|
{
|
|
|
|
info->in_fullscreen = in_fullscreen;
|
|
|
|
in_fullscreen_changed = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (fullscreen_monitors);
|
|
|
|
|
|
|
|
if (in_fullscreen_changed)
|
|
|
|
g_signal_emit (screen, screen_signals[IN_FULLSCREEN_CHANGED], 0, NULL);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_screen_queue_check_fullscreen (MetaScreen *screen)
|
|
|
|
{
|
|
|
|
if (!screen->check_fullscreen_later)
|
|
|
|
screen->check_fullscreen_later = meta_later_add (META_LATER_CHECK_FULLSCREEN,
|
|
|
|
check_fullscreen_func,
|
|
|
|
screen, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_screen_get_monitor_in_fullscreen:
|
|
|
|
* @screen: a #MetaScreen
|
|
|
|
* @monitor: the monitor number
|
|
|
|
*
|
|
|
|
* Determines whether there is a fullscreen window obscuring the specified
|
|
|
|
* monitor. If there is a fullscreen window, the desktop environment will
|
|
|
|
* typically hide any controls that might obscure the fullscreen window.
|
|
|
|
*
|
|
|
|
* You can get notification when this changes by connecting to
|
|
|
|
* MetaScreen::in-fullscreen-changed.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if there is a fullscreen window covering the specified monitor.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
meta_screen_get_monitor_in_fullscreen (MetaScreen *screen,
|
|
|
|
int monitor)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (META_IS_SCREEN (screen), FALSE);
|
|
|
|
g_return_val_if_fail (monitor >= 0 && monitor < screen->n_monitor_infos, FALSE);
|
|
|
|
|
|
|
|
/* We use -1 as a flag to mean "not known yet" for notification purposes */
|
|
|
|
return screen->monitor_infos[monitor].in_fullscreen == TRUE;
|
|
|
|
}
|
2013-08-13 06:57:41 -04:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_screen_handle_xevent (MetaScreen *screen,
|
|
|
|
XEvent *xevent)
|
|
|
|
{
|
2014-04-22 11:27:52 -04:00
|
|
|
MetaCursorTracker *tracker = meta_cursor_tracker_get_for_screen (screen);
|
|
|
|
|
|
|
|
if (meta_cursor_tracker_handle_xevent (tracker, xevent))
|
2013-08-13 06:57:41 -04:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|