2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2001-06-09 17:58:30 -04:00
|
|
|
/* Metacity Session Management */
|
|
|
|
|
|
|
|
/*
|
2001-06-22 02:21:44 -04:00
|
|
|
* Copyright (C) 2001 Havoc Pennington (some code in here from
|
|
|
|
* libgnomeui, (C) Tom Tromey, Carsten Schaar)
|
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
|
|
|
* Copyright (C) 2004, 2005 Elijah Newren
|
2001-06-09 17:58:30 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
2002-03-13 23:09:42 -05:00
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
2001-06-09 17:58:30 -04:00
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-06-09 17:58:30 -04:00
|
|
|
#include "session.h"
|
2005-01-07 00:19:26 -05:00
|
|
|
#include <X11/Xatom.h>
|
2001-06-09 17:58:30 -04:00
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
#include <time.h>
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
#ifndef HAVE_SM
|
|
|
|
void
|
2002-03-13 23:36:02 -05:00
|
|
|
meta_session_init (const char *client_id,
|
|
|
|
const char *save_file)
|
2001-06-22 02:21:44 -04:00
|
|
|
{
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Compiled without session management support\n");
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
2001-12-09 17:41:12 -05:00
|
|
|
|
2002-06-08 18:04:59 -04:00
|
|
|
void
|
|
|
|
meta_session_shutdown (void)
|
|
|
|
{
|
|
|
|
/* nothing */
|
|
|
|
}
|
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
const MetaWindowSessionInfo*
|
|
|
|
meta_window_lookup_saved_state (MetaWindow *window)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_release_saved_state (const MetaWindowSessionInfo *info)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2001-06-22 02:21:44 -04:00
|
|
|
#else /* HAVE_SM */
|
2001-06-09 17:58:30 -04:00
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
#include <X11/ICE/ICElib.h>
|
|
|
|
#include <X11/SM/SMlib.h>
|
|
|
|
#include <unistd.h>
|
2001-07-26 01:10:01 -04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2001-06-22 02:21:44 -04:00
|
|
|
#include <fcntl.h>
|
2001-07-26 01:10:01 -04:00
|
|
|
#include <errno.h>
|
2001-06-22 02:21:44 -04:00
|
|
|
#include <glib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "main.h"
|
|
|
|
#include "util.h"
|
2008-05-18 20:00:09 -04:00
|
|
|
#include "display-private.h"
|
2001-07-26 01:10:01 -04:00
|
|
|
#include "workspace.h"
|
2001-06-09 17:58:30 -04:00
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
static void ice_io_error_handler (IceConn connection);
|
2001-06-09 17:58:30 -04:00
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
static void new_ice_connection (IceConn connection, IcePointer client_data,
|
|
|
|
Bool opening, IcePointer *watch_data);
|
2001-06-09 17:58:30 -04:00
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
static void save_state (void);
|
2002-03-13 23:36:02 -05:00
|
|
|
static char* load_state (const char *previous_save_file);
|
2002-03-13 23:09:42 -05:00
|
|
|
static void regenerate_save_file (void);
|
|
|
|
static const char* full_save_file (void);
|
2002-07-12 23:40:05 -04:00
|
|
|
static void warn_about_lame_clients_and_finish_interact (gboolean shutdown);
|
2001-07-26 01:10:01 -04:00
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
/* This is called when data is available on an ICE connection. */
|
|
|
|
static gboolean
|
|
|
|
process_ice_messages (GIOChannel *channel,
|
|
|
|
GIOCondition condition,
|
|
|
|
gpointer client_data)
|
|
|
|
{
|
|
|
|
IceConn connection = (IceConn) client_data;
|
|
|
|
IceProcessMessagesStatus status;
|
|
|
|
|
2001-07-12 01:53:56 -04:00
|
|
|
/* This blocks infinitely sometimes. I don't know what
|
|
|
|
* to do about it. Checking "condition" just breaks
|
|
|
|
* session management.
|
|
|
|
*/
|
2001-06-22 02:21:44 -04:00
|
|
|
status = IceProcessMessages (connection, NULL, NULL);
|
|
|
|
|
|
|
|
if (status == IceProcessMessagesIOError)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
IcePointer context = IceGetConnectionContext (connection);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* We were disconnected */
|
|
|
|
IceSetShutdownNegotiation (connection, False);
|
|
|
|
IceCloseConnection (connection);
|
|
|
|
|
2001-09-17 00:11:25 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is called when a new ICE connection is made. It arranges for
|
|
|
|
the ICE connection to be handled via the event loop. */
|
|
|
|
static void
|
|
|
|
new_ice_connection (IceConn connection, IcePointer client_data, Bool opening,
|
|
|
|
IcePointer *watch_data)
|
|
|
|
{
|
|
|
|
guint input_id;
|
|
|
|
|
|
|
|
if (opening)
|
|
|
|
{
|
|
|
|
/* Make sure we don't pass on these file descriptors to any
|
|
|
|
* exec'ed children
|
|
|
|
*/
|
|
|
|
GIOChannel *channel;
|
|
|
|
|
2001-09-15 20:30:45 -04:00
|
|
|
fcntl (IceConnectionNumber (connection), F_SETFD,
|
|
|
|
fcntl (IceConnectionNumber (connection), F_GETFD, 0) | FD_CLOEXEC);
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
channel = g_io_channel_unix_new (IceConnectionNumber (connection));
|
|
|
|
|
|
|
|
input_id = g_io_add_watch (channel,
|
|
|
|
G_IO_IN | G_IO_ERR,
|
|
|
|
process_ice_messages,
|
|
|
|
connection);
|
|
|
|
|
|
|
|
g_io_channel_unref (channel);
|
|
|
|
|
|
|
|
*watch_data = (IcePointer) GUINT_TO_POINTER (input_id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
input_id = GPOINTER_TO_UINT ((gpointer) *watch_data);
|
|
|
|
|
|
|
|
g_source_remove (input_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-15 20:30:45 -04:00
|
|
|
static IceIOErrorHandler ice_installed_handler;
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
/* We call any handler installed before (or after) gnome_ice_init but
|
|
|
|
avoid calling the default libICE handler which does an exit() */
|
|
|
|
static void
|
|
|
|
ice_io_error_handler (IceConn connection)
|
|
|
|
{
|
2001-09-15 20:30:45 -04:00
|
|
|
if (ice_installed_handler)
|
|
|
|
(*ice_installed_handler) (connection);
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ice_init (void)
|
|
|
|
{
|
|
|
|
static gboolean ice_initted = FALSE;
|
|
|
|
|
|
|
|
if (! ice_initted)
|
|
|
|
{
|
|
|
|
IceIOErrorHandler default_handler;
|
|
|
|
|
2001-09-15 20:30:45 -04:00
|
|
|
ice_installed_handler = IceSetIOErrorHandler (NULL);
|
2001-06-22 02:21:44 -04:00
|
|
|
default_handler = IceSetIOErrorHandler (ice_io_error_handler);
|
|
|
|
|
2001-09-15 20:30:45 -04:00
|
|
|
if (ice_installed_handler == default_handler)
|
|
|
|
ice_installed_handler = NULL;
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
IceAddConnectionWatch (new_ice_connection, NULL);
|
|
|
|
|
|
|
|
ice_initted = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
STATE_DISCONNECTED,
|
|
|
|
STATE_IDLE,
|
|
|
|
STATE_SAVING_PHASE_1,
|
|
|
|
STATE_WAITING_FOR_PHASE_2,
|
|
|
|
STATE_SAVING_PHASE_2,
|
2002-05-29 23:54:10 -04:00
|
|
|
STATE_WAITING_FOR_INTERACT,
|
|
|
|
STATE_DONE_WITH_INTERACT,
|
2002-07-31 21:49:08 -04:00
|
|
|
STATE_SKIPPING_GLOBAL_SAVE,
|
2001-06-22 02:21:44 -04:00
|
|
|
STATE_FROZEN,
|
|
|
|
STATE_REGISTERING
|
|
|
|
} ClientState;
|
|
|
|
|
|
|
|
static void save_phase_2_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data);
|
|
|
|
static void interact_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data);
|
|
|
|
static void shutdown_cancelled_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data);
|
|
|
|
static void save_complete_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data);
|
|
|
|
static void die_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data);
|
|
|
|
static void save_yourself_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data,
|
|
|
|
int save_style,
|
|
|
|
Bool shutdown,
|
|
|
|
int interact_style,
|
|
|
|
Bool fast);
|
|
|
|
static void set_clone_restart_commands (void);
|
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
static char *client_id = NULL;
|
2001-06-22 02:21:44 -04:00
|
|
|
static gpointer session_connection = NULL;
|
|
|
|
static ClientState current_state = STATE_DISCONNECTED;
|
2002-05-29 23:54:10 -04:00
|
|
|
static gboolean interaction_allowed = FALSE;
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
void
|
2002-03-13 23:36:02 -05:00
|
|
|
meta_session_init (const char *previous_client_id,
|
|
|
|
const char *previous_save_file)
|
2001-06-22 02:21:44 -04:00
|
|
|
{
|
|
|
|
/* Some code here from twm */
|
|
|
|
char buf[256];
|
|
|
|
unsigned long mask;
|
|
|
|
SmcCallbacks callbacks;
|
2002-03-13 23:36:02 -05:00
|
|
|
char *saved_client_id;
|
2002-03-13 23:09:42 -05:00
|
|
|
|
|
|
|
meta_topic (META_DEBUG_SM, "Initializing session with save file '%s'\n",
|
|
|
|
previous_save_file ? previous_save_file : "(none)");
|
2001-06-22 02:21:44 -04:00
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
if (previous_save_file)
|
2002-03-13 23:36:02 -05:00
|
|
|
{
|
|
|
|
saved_client_id = load_state (previous_save_file);
|
|
|
|
previous_client_id = saved_client_id;
|
|
|
|
}
|
2007-03-26 17:38:19 -04:00
|
|
|
else if (previous_client_id)
|
|
|
|
{
|
|
|
|
char *save_file = g_strconcat (previous_client_id, ".ms", NULL);
|
|
|
|
saved_client_id = load_state (save_file);
|
|
|
|
g_free (save_file);
|
|
|
|
}
|
2002-03-13 23:36:02 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
saved_client_id = NULL;
|
|
|
|
}
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
ice_init ();
|
|
|
|
|
|
|
|
mask = SmcSaveYourselfProcMask | SmcDieProcMask |
|
|
|
|
SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask;
|
|
|
|
|
|
|
|
callbacks.save_yourself.callback = save_yourself_callback;
|
|
|
|
callbacks.save_yourself.client_data = NULL;
|
|
|
|
|
|
|
|
callbacks.die.callback = die_callback;
|
|
|
|
callbacks.die.client_data = NULL;
|
|
|
|
|
|
|
|
callbacks.save_complete.callback = save_complete_callback;
|
|
|
|
callbacks.save_complete.client_data = NULL;
|
|
|
|
|
|
|
|
callbacks.shutdown_cancelled.callback = shutdown_cancelled_callback;
|
|
|
|
callbacks.shutdown_cancelled.client_data = NULL;
|
2002-03-13 23:09:42 -05:00
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
session_connection =
|
|
|
|
SmcOpenConnection (NULL, /* use SESSION_MANAGER env */
|
|
|
|
NULL, /* means use existing ICE connection */
|
|
|
|
SmProtoMajor,
|
|
|
|
SmProtoMinor,
|
|
|
|
mask,
|
|
|
|
&callbacks,
|
2002-03-13 23:36:02 -05:00
|
|
|
(char*) previous_client_id,
|
2001-06-22 02:21:44 -04:00
|
|
|
&client_id,
|
|
|
|
255, buf);
|
|
|
|
|
|
|
|
if (session_connection == NULL)
|
|
|
|
{
|
2004-06-24 13:02:54 -04:00
|
|
|
meta_topic (META_DEBUG_SM,
|
|
|
|
"Failed to a open connection to a session manager, so window positions will not be saved: %s\n",
|
|
|
|
buf);
|
2002-03-13 23:36:02 -05:00
|
|
|
|
|
|
|
goto out;
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
else
|
2001-07-26 01:10:01 -04:00
|
|
|
{
|
|
|
|
if (client_id == NULL)
|
|
|
|
meta_bug ("Session manager gave us a NULL client ID?");
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Obtained session ID '%s'\n", client_id);
|
2001-07-26 01:10:01 -04:00
|
|
|
}
|
2001-06-22 02:21:44 -04:00
|
|
|
|
2002-03-13 23:36:02 -05:00
|
|
|
if (previous_client_id && strcmp (previous_client_id, client_id) == 0)
|
2001-06-22 02:21:44 -04:00
|
|
|
current_state = STATE_IDLE;
|
|
|
|
else
|
|
|
|
current_state = STATE_REGISTERING;
|
|
|
|
|
|
|
|
{
|
2001-10-12 00:52:53 -04:00
|
|
|
SmProp prop1, prop2, prop3, prop4, prop5, prop6, *props[6];
|
|
|
|
SmPropValue prop1val, prop2val, prop3val, prop4val, prop5val, prop6val;
|
2001-06-22 02:21:44 -04:00
|
|
|
char pid[32];
|
2002-06-08 18:04:59 -04:00
|
|
|
char hint = SmRestartImmediately;
|
2001-10-12 00:52:53 -04:00
|
|
|
char priority = 20; /* low to run before other apps */
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
prop1.name = SmProgram;
|
|
|
|
prop1.type = SmARRAY8;
|
|
|
|
prop1.num_vals = 1;
|
|
|
|
prop1.vals = &prop1val;
|
|
|
|
prop1val.value = "metacity";
|
|
|
|
prop1val.length = strlen ("metacity");
|
|
|
|
|
|
|
|
/* twm sets getuid() for this, but the SM spec plainly
|
|
|
|
* says pw_name, twm is on crack
|
|
|
|
*/
|
|
|
|
prop2.name = SmUserID;
|
|
|
|
prop2.type = SmARRAY8;
|
|
|
|
prop2.num_vals = 1;
|
|
|
|
prop2.vals = &prop2val;
|
2002-03-13 23:09:42 -05:00
|
|
|
prop2val.value = (char*) g_get_user_name ();
|
2001-06-22 02:21:44 -04:00
|
|
|
prop2val.length = strlen (prop2val.value);
|
|
|
|
|
|
|
|
prop3.name = SmRestartStyleHint;
|
|
|
|
prop3.type = SmCARD8;
|
|
|
|
prop3.num_vals = 1;
|
|
|
|
prop3.vals = &prop3val;
|
|
|
|
prop3val.value = &hint;
|
|
|
|
prop3val.length = 1;
|
|
|
|
|
|
|
|
sprintf (pid, "%d", getpid ());
|
|
|
|
prop4.name = SmProcessID;
|
|
|
|
prop4.type = SmARRAY8;
|
|
|
|
prop4.num_vals = 1;
|
|
|
|
prop4.vals = &prop4val;
|
|
|
|
prop4val.value = pid;
|
|
|
|
prop4val.length = strlen (prop4val.value);
|
|
|
|
|
|
|
|
/* Always start in home directory */
|
|
|
|
prop5.name = SmCurrentDirectory;
|
|
|
|
prop5.type = SmARRAY8;
|
|
|
|
prop5.num_vals = 1;
|
|
|
|
prop5.vals = &prop5val;
|
2002-03-13 23:09:42 -05:00
|
|
|
prop5val.value = (char*) g_get_home_dir ();
|
2001-06-22 02:21:44 -04:00
|
|
|
prop5val.length = strlen (prop5val.value);
|
2001-10-12 00:52:53 -04:00
|
|
|
|
|
|
|
prop6.name = "_GSM_Priority";
|
2001-10-13 00:02:59 -04:00
|
|
|
prop6.type = SmCARD8;
|
2001-10-12 00:52:53 -04:00
|
|
|
prop6.num_vals = 1;
|
|
|
|
prop6.vals = &prop6val;
|
|
|
|
prop6val.value = &priority;
|
|
|
|
prop6val.length = 1;
|
2001-06-22 02:21:44 -04:00
|
|
|
|
|
|
|
props[0] = &prop1;
|
|
|
|
props[1] = &prop2;
|
|
|
|
props[2] = &prop3;
|
|
|
|
props[3] = &prop4;
|
|
|
|
props[4] = &prop5;
|
2001-10-12 00:52:53 -04:00
|
|
|
props[5] = &prop6;
|
2001-06-22 02:21:44 -04:00
|
|
|
|
2001-10-12 00:52:53 -04:00
|
|
|
SmcSetProperties (session_connection, 6, props);
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
2002-03-13 23:36:02 -05:00
|
|
|
|
|
|
|
out:
|
|
|
|
g_free (saved_client_id);
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
2002-06-08 18:04:59 -04:00
|
|
|
void
|
|
|
|
meta_session_shutdown (void)
|
|
|
|
{
|
|
|
|
/* Change our restart mode to IfRunning */
|
|
|
|
|
|
|
|
SmProp prop1;
|
|
|
|
SmPropValue prop1val;
|
|
|
|
SmProp *props[1];
|
|
|
|
char hint = SmRestartIfRunning;
|
|
|
|
|
|
|
|
if (session_connection == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
prop1.name = SmRestartStyleHint;
|
|
|
|
prop1.type = SmCARD8;
|
|
|
|
prop1.num_vals = 1;
|
|
|
|
prop1.vals = &prop1val;
|
|
|
|
prop1val.value = &hint;
|
|
|
|
prop1val.length = 1;
|
|
|
|
|
|
|
|
props[0] = &prop1;
|
|
|
|
|
|
|
|
SmcSetProperties (session_connection, 1, props);
|
|
|
|
}
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
static void
|
|
|
|
disconnect (void)
|
|
|
|
{
|
|
|
|
SmcCloseConnection (session_connection, 0, NULL);
|
|
|
|
session_connection = NULL;
|
|
|
|
current_state = STATE_DISCONNECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_yourself_possibly_done (gboolean shutdown,
|
|
|
|
gboolean successful)
|
|
|
|
{
|
2002-06-01 11:46:04 -04:00
|
|
|
meta_topic (META_DEBUG_SM,
|
|
|
|
"save possibly done shutdown = %d success = %d\n",
|
|
|
|
shutdown, successful);
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
if (current_state == STATE_SAVING_PHASE_1)
|
|
|
|
{
|
|
|
|
Status status;
|
|
|
|
|
|
|
|
status = SmcRequestSaveYourselfPhase2 (session_connection,
|
|
|
|
save_phase_2_callback,
|
|
|
|
GINT_TO_POINTER (shutdown));
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
current_state = STATE_WAITING_FOR_PHASE_2;
|
2002-06-01 11:46:04 -04:00
|
|
|
|
|
|
|
meta_topic (META_DEBUG_SM,
|
|
|
|
"Requested phase 2, status = %d\n", status);
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
if (current_state == STATE_SAVING_PHASE_2 &&
|
|
|
|
interaction_allowed)
|
|
|
|
{
|
|
|
|
Status status;
|
|
|
|
|
|
|
|
status = SmcInteractRequest (session_connection,
|
|
|
|
/* ignore this feature of the protocol by always
|
|
|
|
* claiming normal
|
|
|
|
*/
|
|
|
|
SmDialogNormal,
|
|
|
|
interact_callback,
|
|
|
|
GINT_TO_POINTER (shutdown));
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
current_state = STATE_WAITING_FOR_INTERACT;
|
2002-06-01 11:46:04 -04:00
|
|
|
|
|
|
|
meta_topic (META_DEBUG_SM,
|
|
|
|
"Requested interact, status = %d\n", status);
|
2002-05-29 23:54:10 -04:00
|
|
|
}
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
if (current_state == STATE_SAVING_PHASE_1 ||
|
2002-05-29 23:54:10 -04:00
|
|
|
current_state == STATE_SAVING_PHASE_2 ||
|
2002-07-31 21:49:08 -04:00
|
|
|
current_state == STATE_DONE_WITH_INTERACT ||
|
|
|
|
current_state == STATE_SKIPPING_GLOBAL_SAVE)
|
2001-06-22 02:21:44 -04:00
|
|
|
{
|
2002-06-01 11:46:04 -04:00
|
|
|
meta_topic (META_DEBUG_SM, "Sending SaveYourselfDone\n");
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
SmcSaveYourselfDone (session_connection,
|
|
|
|
successful);
|
|
|
|
|
|
|
|
if (shutdown)
|
|
|
|
current_state = STATE_FROZEN;
|
|
|
|
else
|
|
|
|
current_state = STATE_IDLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_phase_2_callback (SmcConn smc_conn, SmPointer client_data)
|
|
|
|
{
|
|
|
|
gboolean shutdown;
|
|
|
|
|
2002-06-01 11:46:04 -04:00
|
|
|
meta_topic (META_DEBUG_SM, "Phase 2 save");
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
shutdown = GPOINTER_TO_INT (client_data);
|
|
|
|
|
|
|
|
current_state = STATE_SAVING_PHASE_2;
|
|
|
|
|
2001-07-26 01:10:01 -04:00
|
|
|
save_state ();
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
save_yourself_possibly_done (shutdown, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_yourself_callback (SmcConn smc_conn,
|
|
|
|
SmPointer client_data,
|
|
|
|
int save_style,
|
|
|
|
Bool shutdown,
|
|
|
|
int interact_style,
|
|
|
|
Bool fast)
|
|
|
|
{
|
|
|
|
gboolean successful;
|
|
|
|
|
2002-06-01 11:46:04 -04:00
|
|
|
meta_topic (META_DEBUG_SM, "SaveYourself received");
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
successful = TRUE;
|
|
|
|
|
|
|
|
/* The first SaveYourself after registering for the first time
|
|
|
|
* is a special case (SM specs 7.2).
|
|
|
|
*/
|
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
#if 0 /* I think the GnomeClient rationale for this doesn't apply */
|
2001-06-22 02:21:44 -04:00
|
|
|
if (current_state == STATE_REGISTERING)
|
|
|
|
{
|
|
|
|
current_state = STATE_IDLE;
|
|
|
|
/* Double check that this is a section 7.2 SaveYourself: */
|
|
|
|
|
|
|
|
if (save_style == SmSaveLocal &&
|
|
|
|
interact_style == SmInteractStyleNone &&
|
|
|
|
!shutdown && !fast)
|
|
|
|
{
|
|
|
|
/* The protocol requires this even if xsm ignores it. */
|
|
|
|
SmcSaveYourselfDone (session_connection, successful);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2002-03-13 23:09:42 -05:00
|
|
|
#endif
|
2001-06-22 02:21:44 -04:00
|
|
|
|
2002-07-31 21:49:08 -04:00
|
|
|
/* ignore Global style saves
|
|
|
|
*
|
|
|
|
* This interpretaion of the Local/Global/Both styles
|
|
|
|
* was discussed extensively on the xdg-list. See:
|
|
|
|
*
|
|
|
|
* https://listman.redhat.com/pipermail/xdg-list/2002-July/000615.html
|
|
|
|
*/
|
|
|
|
if (save_style == SmSaveGlobal)
|
|
|
|
{
|
|
|
|
current_state = STATE_SKIPPING_GLOBAL_SAVE;
|
|
|
|
save_yourself_possibly_done (shutdown, successful);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
interaction_allowed = interact_style != SmInteractStyleNone;
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
current_state = STATE_SAVING_PHASE_1;
|
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
regenerate_save_file ();
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
set_clone_restart_commands ();
|
|
|
|
|
|
|
|
save_yourself_possibly_done (shutdown, successful);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
die_callback (SmcConn smc_conn, SmPointer client_data)
|
|
|
|
{
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Exiting at request of session manager\n");
|
2001-06-22 02:21:44 -04:00
|
|
|
disconnect ();
|
|
|
|
meta_quit (META_EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_complete_callback (SmcConn smc_conn, SmPointer client_data)
|
|
|
|
{
|
|
|
|
/* nothing */
|
2002-06-01 13:03:25 -04:00
|
|
|
meta_topic (META_DEBUG_SM, "SaveComplete received\n");
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shutdown_cancelled_callback (SmcConn smc_conn, SmPointer client_data)
|
|
|
|
{
|
2002-06-01 13:03:25 -04:00
|
|
|
meta_topic (META_DEBUG_SM, "Shutdown cancelled received\n");
|
2002-06-01 11:46:04 -04:00
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
if (session_connection != NULL &&
|
|
|
|
(current_state != STATE_IDLE && current_state != STATE_FROZEN))
|
|
|
|
{
|
|
|
|
SmcSaveYourselfDone (session_connection, True);
|
|
|
|
current_state = STATE_IDLE;
|
|
|
|
}
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
interact_callback (SmcConn smc_conn, SmPointer client_data)
|
|
|
|
{
|
|
|
|
/* nothing */
|
2002-05-29 23:54:10 -04:00
|
|
|
gboolean shutdown;
|
|
|
|
|
2002-06-01 13:03:25 -04:00
|
|
|
meta_topic (META_DEBUG_SM, "Interaction permission received\n");
|
2002-06-01 11:46:04 -04:00
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
shutdown = GPOINTER_TO_INT (client_data);
|
|
|
|
|
|
|
|
current_state = STATE_DONE_WITH_INTERACT;
|
|
|
|
|
2002-07-12 23:40:05 -04:00
|
|
|
warn_about_lame_clients_and_finish_interact (shutdown);
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_clone_restart_commands (void)
|
|
|
|
{
|
|
|
|
char *restartv[10];
|
|
|
|
char *clonev[10];
|
2001-07-26 01:10:01 -04:00
|
|
|
char *discardv[10];
|
2001-06-22 02:21:44 -04:00
|
|
|
int i;
|
2001-07-26 01:10:01 -04:00
|
|
|
SmProp prop1, prop2, prop3, *props[3];
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
/* Restart (use same client ID) */
|
|
|
|
|
|
|
|
prop1.name = SmRestartCommand;
|
|
|
|
prop1.type = SmLISTofARRAY8;
|
|
|
|
|
2007-03-26 17:38:19 -04:00
|
|
|
g_return_if_fail (client_id);
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
i = 0;
|
|
|
|
restartv[i] = "metacity";
|
|
|
|
++i;
|
2007-03-26 17:38:19 -04:00
|
|
|
restartv[i] = "--sm-client-id";
|
2001-06-22 02:21:44 -04:00
|
|
|
++i;
|
2007-03-26 17:38:19 -04:00
|
|
|
restartv[i] = client_id;
|
2001-06-22 02:21:44 -04:00
|
|
|
++i;
|
|
|
|
restartv[i] = NULL;
|
|
|
|
|
|
|
|
prop1.vals = g_new (SmPropValue, i);
|
|
|
|
i = 0;
|
|
|
|
while (restartv[i])
|
|
|
|
{
|
|
|
|
prop1.vals[i].value = restartv[i];
|
|
|
|
prop1.vals[i].length = strlen (restartv[i]);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
prop1.num_vals = i;
|
|
|
|
|
|
|
|
/* Clone (no client ID) */
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
clonev[i] = "metacity";
|
|
|
|
++i;
|
|
|
|
clonev[i] = NULL;
|
|
|
|
|
|
|
|
prop2.name = SmCloneCommand;
|
|
|
|
prop2.type = SmLISTofARRAY8;
|
|
|
|
|
|
|
|
prop2.vals = g_new (SmPropValue, i);
|
|
|
|
i = 0;
|
|
|
|
while (clonev[i])
|
|
|
|
{
|
|
|
|
prop2.vals[i].value = clonev[i];
|
|
|
|
prop2.vals[i].length = strlen (clonev[i]);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
prop2.num_vals = i;
|
|
|
|
|
2001-07-26 01:10:01 -04:00
|
|
|
/* Discard */
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
discardv[i] = "rm";
|
|
|
|
++i;
|
|
|
|
discardv[i] = "-f";
|
|
|
|
++i;
|
2002-03-13 23:09:42 -05:00
|
|
|
discardv[i] = (char*) full_save_file ();
|
2002-03-17 10:26:13 -05:00
|
|
|
++i;
|
|
|
|
discardv[i] = NULL;
|
|
|
|
|
|
|
|
prop3.name = SmDiscardCommand;
|
2001-07-26 01:10:01 -04:00
|
|
|
prop3.type = SmLISTofARRAY8;
|
|
|
|
|
|
|
|
prop3.vals = g_new (SmPropValue, i);
|
|
|
|
i = 0;
|
2002-03-17 10:26:13 -05:00
|
|
|
while (discardv[i])
|
2001-07-26 01:10:01 -04:00
|
|
|
{
|
|
|
|
prop3.vals[i].value = discardv[i];
|
|
|
|
prop3.vals[i].length = strlen (discardv[i]);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
prop3.num_vals = i;
|
|
|
|
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
props[0] = &prop1;
|
|
|
|
props[1] = &prop2;
|
2001-07-26 01:10:01 -04:00
|
|
|
props[2] = &prop3;
|
|
|
|
|
|
|
|
SmcSetProperties (session_connection, 3, props);
|
|
|
|
|
2001-07-28 02:35:19 -04:00
|
|
|
g_free (prop1.vals);
|
|
|
|
g_free (prop2.vals);
|
|
|
|
g_free (prop3.vals);
|
2001-07-26 01:10:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The remaining code in this file actually loads/saves the session,
|
|
|
|
* while the code above this comment handles chatting with the
|
|
|
|
* session manager.
|
|
|
|
*/
|
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
static const char*
|
|
|
|
window_type_to_string (MetaWindowType type)
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case META_WINDOW_NORMAL:
|
|
|
|
return "normal";
|
|
|
|
case META_WINDOW_DESKTOP:
|
|
|
|
return "desktop";
|
|
|
|
case META_WINDOW_DOCK:
|
|
|
|
return "dock";
|
|
|
|
case META_WINDOW_DIALOG:
|
|
|
|
return "dialog";
|
|
|
|
case META_WINDOW_MODAL_DIALOG:
|
|
|
|
return "modal_dialog";
|
|
|
|
case META_WINDOW_TOOLBAR:
|
|
|
|
return "toolbar";
|
|
|
|
case META_WINDOW_MENU:
|
|
|
|
return "menu";
|
2002-02-09 01:54:44 -05:00
|
|
|
case META_WINDOW_SPLASHSCREEN:
|
|
|
|
return "splashscreen";
|
|
|
|
case META_WINDOW_UTILITY:
|
|
|
|
return "utility";
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaWindowType
|
|
|
|
window_type_from_string (const char *str)
|
|
|
|
{
|
|
|
|
if (strcmp (str, "normal") == 0)
|
|
|
|
return META_WINDOW_NORMAL;
|
|
|
|
else if (strcmp (str, "desktop") == 0)
|
|
|
|
return META_WINDOW_DESKTOP;
|
|
|
|
else if (strcmp (str, "dock") == 0)
|
|
|
|
return META_WINDOW_DOCK;
|
|
|
|
else if (strcmp (str, "dialog") == 0)
|
|
|
|
return META_WINDOW_DIALOG;
|
|
|
|
else if (strcmp (str, "modal_dialog") == 0)
|
|
|
|
return META_WINDOW_MODAL_DIALOG;
|
|
|
|
else if (strcmp (str, "toolbar") == 0)
|
|
|
|
return META_WINDOW_TOOLBAR;
|
|
|
|
else if (strcmp (str, "menu") == 0)
|
|
|
|
return META_WINDOW_MENU;
|
2002-02-09 01:54:44 -05:00
|
|
|
else if (strcmp (str, "utility") == 0)
|
|
|
|
return META_WINDOW_UTILITY;
|
|
|
|
else if (strcmp (str, "splashscreen") == 0)
|
|
|
|
return META_WINDOW_SPLASHSCREEN;
|
2001-07-27 00:22:18 -04:00
|
|
|
else
|
|
|
|
return META_WINDOW_NORMAL;
|
|
|
|
}
|
|
|
|
|
2001-07-28 02:11:15 -04:00
|
|
|
static int
|
|
|
|
window_gravity_from_string (const char *str)
|
|
|
|
{
|
|
|
|
if (strcmp (str, "NorthWestGravity") == 0)
|
|
|
|
return NorthWestGravity;
|
|
|
|
else if (strcmp (str, "NorthGravity") == 0)
|
|
|
|
return NorthGravity;
|
|
|
|
else if (strcmp (str, "NorthEastGravity") == 0)
|
|
|
|
return NorthEastGravity;
|
|
|
|
else if (strcmp (str, "WestGravity") == 0)
|
|
|
|
return WestGravity;
|
|
|
|
else if (strcmp (str, "CenterGravity") == 0)
|
|
|
|
return CenterGravity;
|
|
|
|
else if (strcmp (str, "EastGravity") == 0)
|
|
|
|
return EastGravity;
|
|
|
|
else if (strcmp (str, "SouthWestGravity") == 0)
|
|
|
|
return SouthWestGravity;
|
|
|
|
else if (strcmp (str, "SouthGravity") == 0)
|
|
|
|
return SouthGravity;
|
|
|
|
else if (strcmp (str, "SouthEastGravity") == 0)
|
|
|
|
return SouthEastGravity;
|
|
|
|
else if (strcmp (str, "StaticGravity") == 0)
|
|
|
|
return StaticGravity;
|
|
|
|
else
|
|
|
|
return NorthWestGravity;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char*
|
2001-10-04 22:58:48 -04:00
|
|
|
encode_text_as_utf8_markup (const char *text)
|
2001-07-28 02:11:15 -04:00
|
|
|
{
|
|
|
|
/* text can be any encoding, and is nul-terminated.
|
|
|
|
* we pretend it's Latin-1 and encode as UTF-8
|
|
|
|
*/
|
|
|
|
GString *str;
|
|
|
|
const char *p;
|
2001-10-04 22:58:48 -04:00
|
|
|
char *escaped;
|
2001-07-28 02:11:15 -04:00
|
|
|
|
|
|
|
str = g_string_new ("");
|
|
|
|
|
|
|
|
p = text;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
g_string_append_unichar (str, *p);
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
|
2001-10-04 22:58:48 -04:00
|
|
|
escaped = g_markup_escape_text (str->str, str->len);
|
|
|
|
g_string_free (str, TRUE);
|
|
|
|
|
|
|
|
return escaped;
|
2001-07-28 02:11:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static char*
|
|
|
|
decode_text_from_utf8 (const char *text)
|
|
|
|
{
|
2001-10-04 22:58:48 -04:00
|
|
|
/* Convert back from the encoded (but not escaped) UTF-8 */
|
2001-07-28 02:11:15 -04:00
|
|
|
GString *str;
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
str = g_string_new ("");
|
|
|
|
|
|
|
|
p = text;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
/* obviously this barfs if the UTF-8 contains chars > 255 */
|
|
|
|
g_string_append_c (str, g_utf8_get_char (p));
|
|
|
|
|
|
|
|
p = g_utf8_next_char (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_string_free (str, FALSE);
|
|
|
|
}
|
|
|
|
|
2001-07-26 01:10:01 -04:00
|
|
|
static void
|
|
|
|
save_state (void)
|
|
|
|
{
|
|
|
|
char *metacity_dir;
|
|
|
|
char *session_dir;
|
|
|
|
FILE *outfile;
|
2008-04-07 16:50:37 -04:00
|
|
|
GSList *windows;
|
|
|
|
GSList *tmp;
|
|
|
|
int stack_position;
|
2001-07-26 01:10:01 -04:00
|
|
|
|
|
|
|
g_assert (client_id);
|
|
|
|
|
|
|
|
outfile = NULL;
|
|
|
|
|
2008-03-27 09:12:28 -04:00
|
|
|
/*
|
|
|
|
* g_get_user_config_dir() is guaranteed to return an existing directory.
|
|
|
|
* Eventually, if SM stays with the WM, I'd like to make this
|
|
|
|
* something like <config>/window_placement in a standard format.
|
|
|
|
* Future optimisers should note also that by the time we get here
|
|
|
|
* we probably already have full_save_path figured out and therefore
|
|
|
|
* can just use the directory name from that.
|
|
|
|
*/
|
|
|
|
metacity_dir = g_strconcat (g_get_user_config_dir (),
|
|
|
|
G_DIR_SEPARATOR_S "metacity",
|
2001-07-26 01:10:01 -04:00
|
|
|
NULL);
|
|
|
|
|
2008-03-27 09:12:28 -04:00
|
|
|
session_dir = g_strconcat (metacity_dir,
|
|
|
|
G_DIR_SEPARATOR_S "sessions",
|
2001-07-26 01:10:01 -04:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (mkdir (metacity_dir, 0700) < 0 &&
|
|
|
|
errno != EEXIST)
|
|
|
|
{
|
|
|
|
meta_warning (_("Could not create directory '%s': %s\n"),
|
|
|
|
metacity_dir, g_strerror (errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mkdir (session_dir, 0700) < 0 &&
|
|
|
|
errno != EEXIST)
|
|
|
|
{
|
|
|
|
meta_warning (_("Could not create directory '%s': %s\n"),
|
|
|
|
session_dir, g_strerror (errno));
|
|
|
|
}
|
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Saving session to '%s'\n", full_save_file ());
|
2001-07-26 01:10:01 -04:00
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
outfile = fopen (full_save_file (), "w");
|
2001-07-26 01:10:01 -04:00
|
|
|
|
|
|
|
if (outfile == NULL)
|
|
|
|
{
|
|
|
|
meta_warning (_("Could not open session file '%s' for writing: %s\n"),
|
2002-03-13 23:09:42 -05:00
|
|
|
full_save_file (), g_strerror (errno));
|
2001-07-26 01:10:01 -04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The file format is:
|
|
|
|
* <metacity_session id="foo">
|
2002-06-22 20:21:20 -04:00
|
|
|
* <window id="bar" class="XTerm" name="xterm" title="/foo/bar" role="blah" type="normal" stacking="5">
|
2001-07-27 00:22:18 -04:00
|
|
|
* <workspace index="2"/>
|
|
|
|
* <workspace index="4"/>
|
2002-06-22 20:21:20 -04:00
|
|
|
* <sticky/> <minimized/> <maximized/>
|
2001-07-26 01:10:01 -04:00
|
|
|
* <geometry x="100" y="100" width="200" height="200" gravity="northwest"/>
|
|
|
|
* </window>
|
|
|
|
* </metacity_session>
|
2001-07-27 00:22:18 -04:00
|
|
|
*
|
|
|
|
* Note that attributes on <window> are the match info we use to
|
|
|
|
* see if the saved state applies to a restored window, and
|
|
|
|
* child elements are the saved state to be applied.
|
|
|
|
*
|
2001-07-26 01:10:01 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf (outfile, "<metacity_session id=\"%s\">\n",
|
|
|
|
client_id);
|
2008-04-07 16:50:37 -04:00
|
|
|
|
|
|
|
windows = meta_display_list_windows (meta_get_display ());
|
|
|
|
stack_position = 0;
|
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
windows = g_slist_sort (windows, meta_display_stack_cmp);
|
|
|
|
tmp = windows;
|
|
|
|
stack_position = 0;
|
2002-06-22 20:21:20 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
MetaWindow *window;
|
2001-07-26 01:10:01 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
window = tmp->data;
|
2001-07-26 01:10:01 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
if (window->sm_client_id)
|
|
|
|
{
|
|
|
|
char *sm_client_id;
|
|
|
|
char *res_class;
|
|
|
|
char *res_name;
|
|
|
|
char *role;
|
|
|
|
char *title;
|
|
|
|
|
|
|
|
/* client id, class, name, role are not expected to be
|
|
|
|
* in UTF-8 (I think they are in XPCS which is Latin-1?
|
|
|
|
* in practice they are always ascii though.)
|
|
|
|
*/
|
2001-07-28 02:11:15 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
sm_client_id = encode_text_as_utf8_markup (window->sm_client_id);
|
|
|
|
res_class = window->res_class ?
|
|
|
|
encode_text_as_utf8_markup (window->res_class) : NULL;
|
|
|
|
res_name = window->res_name ?
|
|
|
|
encode_text_as_utf8_markup (window->res_name) : NULL;
|
|
|
|
role = window->role ?
|
|
|
|
encode_text_as_utf8_markup (window->role) : NULL;
|
|
|
|
if (window->title)
|
|
|
|
title = g_markup_escape_text (window->title, -1);
|
|
|
|
else
|
|
|
|
title = NULL;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_SM, "Saving session managed window %s, client ID '%s'\n",
|
|
|
|
window->desc, window->sm_client_id);
|
|
|
|
|
|
|
|
fprintf (outfile,
|
|
|
|
" <window id=\"%s\" class=\"%s\" name=\"%s\" title=\"%s\" role=\"%s\" type=\"%s\" stacking=\"%d\">\n",
|
|
|
|
sm_client_id,
|
|
|
|
res_class ? res_class : "",
|
|
|
|
res_name ? res_name : "",
|
|
|
|
title ? title : "",
|
|
|
|
role ? role : "",
|
|
|
|
window_type_to_string (window->type),
|
|
|
|
stack_position);
|
|
|
|
|
|
|
|
g_free (sm_client_id);
|
|
|
|
g_free (res_class);
|
|
|
|
g_free (res_name);
|
|
|
|
g_free (role);
|
|
|
|
g_free (title);
|
2001-07-28 02:11:15 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
/* Sticky */
|
|
|
|
if (window->on_all_workspaces)
|
|
|
|
fputs (" <sticky/>\n", outfile);
|
2001-07-26 01:10:01 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
/* Minimized */
|
|
|
|
if (window->minimized)
|
|
|
|
fputs (" <minimized/>\n", outfile);
|
|
|
|
|
|
|
|
/* Maximized */
|
|
|
|
if (META_WINDOW_MAXIMIZED (window))
|
|
|
|
{
|
2001-07-26 01:10:01 -04:00
|
|
|
fprintf (outfile,
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
" <maximized saved_x=\"%d\" saved_y=\"%d\" saved_width=\"%d\" saved_height=\"%d\"/>\n",
|
|
|
|
window->saved_rect.x,
|
|
|
|
window->saved_rect.y,
|
|
|
|
window->saved_rect.width,
|
|
|
|
window->saved_rect.height);
|
|
|
|
}
|
2002-06-22 20:21:20 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
/* Workspaces we're on */
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
n = meta_workspace_index (window->workspace);
|
|
|
|
fprintf (outfile,
|
|
|
|
" <workspace index=\"%d\"/>\n", n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Gravity */
|
|
|
|
{
|
|
|
|
int x, y, w, h;
|
|
|
|
meta_window_get_geometry (window, &x, &y, &w, &h);
|
|
|
|
|
|
|
|
fprintf (outfile,
|
|
|
|
" <geometry x=\"%d\" y=\"%d\" width=\"%d\" height=\"%d\" gravity=\"%s\"/>\n",
|
|
|
|
x, y, w, h,
|
|
|
|
meta_gravity_to_string (window->size_hints.win_gravity));
|
|
|
|
}
|
2001-07-26 01:10:01 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
fputs (" </window>\n", outfile);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_SM, "Not saving window '%s', not session managed\n",
|
|
|
|
window->desc);
|
2001-07-26 01:10:01 -04:00
|
|
|
}
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
|
|
|
|
tmp = tmp->next;
|
|
|
|
++stack_position;
|
|
|
|
}
|
2001-07-26 01:10:01 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
g_slist_free (windows);
|
2001-07-26 01:10:01 -04:00
|
|
|
|
|
|
|
fputs ("</metacity_session>\n", outfile);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (outfile)
|
|
|
|
{
|
2001-09-15 20:30:45 -04:00
|
|
|
/* FIXME need a dialog for this */
|
|
|
|
if (ferror (outfile))
|
2001-07-26 01:10:01 -04:00
|
|
|
{
|
|
|
|
meta_warning (_("Error writing session file '%s': %s\n"),
|
2002-03-13 23:09:42 -05:00
|
|
|
full_save_file (), g_strerror (errno));
|
2001-07-26 01:10:01 -04:00
|
|
|
}
|
2001-09-15 20:30:45 -04:00
|
|
|
if (fclose (outfile))
|
|
|
|
{
|
|
|
|
meta_warning (_("Error closing session file '%s': %s\n"),
|
2002-03-13 23:09:42 -05:00
|
|
|
full_save_file (), g_strerror (errno));
|
2001-09-15 20:30:45 -04:00
|
|
|
}
|
2001-07-26 01:10:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (metacity_dir);
|
|
|
|
g_free (session_dir);
|
|
|
|
}
|
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
WINDOW_TAG_NONE,
|
|
|
|
WINDOW_TAG_DESKTOP,
|
|
|
|
WINDOW_TAG_STICKY,
|
2002-06-22 20:21:20 -04:00
|
|
|
WINDOW_TAG_MINIMIZED,
|
|
|
|
WINDOW_TAG_MAXIMIZED,
|
2001-07-27 00:22:18 -04:00
|
|
|
WINDOW_TAG_GEOMETRY
|
|
|
|
} WindowTag;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MetaWindowSessionInfo *info;
|
2002-03-13 23:36:02 -05:00
|
|
|
char *previous_id;
|
2001-07-27 00:22:18 -04:00
|
|
|
} ParseData;
|
|
|
|
|
|
|
|
static void session_info_free (MetaWindowSessionInfo *info);
|
|
|
|
static MetaWindowSessionInfo* session_info_new (void);
|
|
|
|
|
|
|
|
static void start_element_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **attribute_names,
|
|
|
|
const gchar **attribute_values,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error);
|
|
|
|
static void end_element_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error);
|
|
|
|
static void text_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *text,
|
|
|
|
gsize text_len,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
static GMarkupParser metacity_session_parser = {
|
|
|
|
start_element_handler,
|
|
|
|
end_element_handler,
|
|
|
|
text_handler,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static GSList *window_info_list = NULL;
|
|
|
|
|
2002-03-13 23:36:02 -05:00
|
|
|
static char*
|
2002-03-13 23:09:42 -05:00
|
|
|
load_state (const char *previous_save_file)
|
2001-07-26 01:10:01 -04:00
|
|
|
{
|
2001-07-27 00:22:18 -04:00
|
|
|
GMarkupParseContext *context;
|
|
|
|
GError *error;
|
|
|
|
ParseData parse_data;
|
|
|
|
char *text;
|
2002-04-25 12:25:07 -04:00
|
|
|
gsize length;
|
2001-07-27 00:22:18 -04:00
|
|
|
char *session_file;
|
|
|
|
|
2008-03-27 09:12:28 -04:00
|
|
|
session_file = g_strconcat (g_get_user_config_dir (),
|
|
|
|
G_DIR_SEPARATOR_S "metacity"
|
|
|
|
G_DIR_SEPARATOR_S "sessions" G_DIR_SEPARATOR_S,
|
2002-03-13 23:09:42 -05:00
|
|
|
previous_save_file,
|
2001-07-27 00:22:18 -04:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
if (!g_file_get_contents (session_file,
|
|
|
|
&text,
|
|
|
|
&length,
|
|
|
|
&error))
|
|
|
|
{
|
2008-03-27 09:12:28 -04:00
|
|
|
char *canonical_session_file = session_file;
|
|
|
|
|
|
|
|
/* Maybe they were doing it the old way, with ~/.metacity */
|
|
|
|
session_file = g_strconcat (g_get_home_dir (),
|
|
|
|
G_DIR_SEPARATOR_S ".metacity"
|
|
|
|
G_DIR_SEPARATOR_S "sessions"
|
|
|
|
G_DIR_SEPARATOR_S,
|
|
|
|
previous_save_file,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (!g_file_get_contents (session_file,
|
|
|
|
&text,
|
|
|
|
&length,
|
|
|
|
NULL))
|
|
|
|
{
|
|
|
|
/* oh, just give up */
|
|
|
|
|
|
|
|
meta_warning (_("Failed to read saved session file %s: %s\n"),
|
|
|
|
canonical_session_file, error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
g_free (session_file);
|
|
|
|
g_free (canonical_session_file);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (canonical_session_file);
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Parsing saved session file %s\n", session_file);
|
2001-07-28 02:11:15 -04:00
|
|
|
g_free (session_file);
|
|
|
|
session_file = NULL;
|
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
parse_data.info = NULL;
|
2002-03-13 23:36:02 -05:00
|
|
|
parse_data.previous_id = NULL;
|
2001-07-27 00:22:18 -04:00
|
|
|
|
|
|
|
context = g_markup_parse_context_new (&metacity_session_parser,
|
|
|
|
0, &parse_data, NULL);
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
if (!g_markup_parse_context_parse (context,
|
|
|
|
text,
|
|
|
|
length,
|
|
|
|
&error))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
|
|
error = NULL;
|
|
|
|
if (!g_markup_parse_context_end_parse (context, &error))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
g_markup_parse_context_free (context);
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
error:
|
2001-07-28 02:11:15 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
meta_warning (_("Failed to parse saved session file: %s\n"),
|
|
|
|
error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
|
2001-07-28 02:11:15 -04:00
|
|
|
if (parse_data.info)
|
|
|
|
session_info_free (parse_data.info);
|
2002-03-13 23:36:02 -05:00
|
|
|
|
|
|
|
g_free (parse_data.previous_id);
|
|
|
|
parse_data.previous_id = NULL;
|
2001-07-28 02:11:15 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
out:
|
2001-07-28 02:11:15 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
g_free (text);
|
2002-03-13 23:36:02 -05:00
|
|
|
|
|
|
|
return parse_data.previous_id;
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
|
2001-07-27 00:36:44 -04:00
|
|
|
/* FIXME this isn't very robust against bogus session files */
|
2001-07-27 00:22:18 -04:00
|
|
|
static void
|
|
|
|
start_element_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **attribute_names,
|
|
|
|
const gchar **attribute_values,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
ParseData *pd;
|
|
|
|
|
|
|
|
pd = user_data;
|
|
|
|
|
2001-07-27 00:36:44 -04:00
|
|
|
if (strcmp (element_name, "metacity_session") == 0)
|
|
|
|
{
|
2002-03-13 23:09:42 -05:00
|
|
|
/* Get previous ID */
|
|
|
|
int i;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (attribute_names[i])
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
const char *val;
|
|
|
|
|
|
|
|
name = attribute_names[i];
|
|
|
|
val = attribute_values[i];
|
|
|
|
|
2002-03-13 23:36:02 -05:00
|
|
|
if (pd->previous_id)
|
2002-03-13 23:09:42 -05:00
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_PARSE,
|
|
|
|
_("<metacity_session> attribute seen but we already have the session ID"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp (name, "id") == 0)
|
|
|
|
{
|
2002-03-13 23:36:02 -05:00
|
|
|
pd->previous_id = decode_text_from_utf8 (val);
|
2002-03-13 23:09:42 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
|
|
|
|
_("Unknown attribute %s on <metacity_session> element"),
|
|
|
|
name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
2001-07-27 00:36:44 -04:00
|
|
|
}
|
|
|
|
else if (strcmp (element_name, "window") == 0)
|
2001-07-27 00:22:18 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (pd->info)
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_PARSE,
|
|
|
|
_("nested <window> tag"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pd->info = session_info_new ();
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (attribute_names[i])
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
const char *val;
|
|
|
|
|
|
|
|
name = attribute_names[i];
|
|
|
|
val = attribute_values[i];
|
|
|
|
|
|
|
|
if (strcmp (name, "id") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
2001-07-28 02:11:15 -04:00
|
|
|
pd->info->id = decode_text_from_utf8 (val);
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
else if (strcmp (name, "class") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
2001-07-28 02:11:15 -04:00
|
|
|
pd->info->res_class = decode_text_from_utf8 (val);
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
else if (strcmp (name, "name") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
2001-07-28 02:11:15 -04:00
|
|
|
pd->info->res_name = decode_text_from_utf8 (val);
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
else if (strcmp (name, "title") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->title = g_strdup (val);
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "role") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
2001-07-28 02:11:15 -04:00
|
|
|
pd->info->role = decode_text_from_utf8 (val);
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
else if (strcmp (name, "type") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->type = window_type_from_string (val);
|
|
|
|
}
|
2002-06-22 20:21:20 -04:00
|
|
|
else if (strcmp (name, "stacking") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
{
|
|
|
|
pd->info->stack_position = atoi (val);
|
|
|
|
pd->info->stack_position_set = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2001-07-27 00:22:18 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
|
|
|
|
_("Unknown attribute %s on <window> element"),
|
|
|
|
name);
|
|
|
|
session_info_free (pd->info);
|
|
|
|
pd->info = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp (element_name, "workspace") == 0)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (attribute_names[i])
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
name = attribute_names[i];
|
|
|
|
|
|
|
|
if (strcmp (name, "index") == 0)
|
|
|
|
{
|
|
|
|
pd->info->workspace_indices =
|
|
|
|
g_slist_prepend (pd->info->workspace_indices,
|
|
|
|
GINT_TO_POINTER (atoi (attribute_values[i])));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
|
|
|
|
_("Unknown attribute %s on <window> element"),
|
|
|
|
name);
|
|
|
|
session_info_free (pd->info);
|
|
|
|
pd->info = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp (element_name, "sticky") == 0)
|
|
|
|
{
|
|
|
|
pd->info->on_all_workspaces = TRUE;
|
|
|
|
pd->info->on_all_workspaces_set = TRUE;
|
|
|
|
}
|
2002-06-22 20:21:20 -04:00
|
|
|
else if (strcmp (element_name, "minimized") == 0)
|
|
|
|
{
|
|
|
|
pd->info->minimized = TRUE;
|
|
|
|
pd->info->minimized_set = TRUE;
|
|
|
|
}
|
|
|
|
else if (strcmp (element_name, "maximized") == 0)
|
|
|
|
{
|
2002-09-03 22:44:52 -04:00
|
|
|
int i;
|
|
|
|
|
|
|
|
i = 0;
|
2002-06-22 20:21:20 -04:00
|
|
|
pd->info->maximized = TRUE;
|
|
|
|
pd->info->maximized_set = TRUE;
|
2002-09-03 22:44:52 -04:00
|
|
|
while (attribute_names[i])
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
const char *val;
|
|
|
|
|
|
|
|
name = attribute_names[i];
|
|
|
|
val = attribute_values[i];
|
|
|
|
|
|
|
|
if (strcmp (name, "saved_x") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
{
|
|
|
|
pd->info->saved_rect.x = atoi (val);
|
|
|
|
pd->info->saved_rect_set = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "saved_y") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
{
|
|
|
|
pd->info->saved_rect.y = atoi (val);
|
|
|
|
pd->info->saved_rect_set = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "saved_width") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
{
|
|
|
|
pd->info->saved_rect.width = atoi (val);
|
|
|
|
pd->info->saved_rect_set = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "saved_height") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
{
|
|
|
|
pd->info->saved_rect.height = atoi (val);
|
|
|
|
pd->info->saved_rect_set = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
|
|
|
|
_("Unknown attribute %s on <maximized> element"),
|
|
|
|
name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pd->info->saved_rect_set)
|
|
|
|
meta_topic (META_DEBUG_SM, "Saved unmaximized size %d,%d %dx%d \n",
|
|
|
|
pd->info->saved_rect.x,
|
|
|
|
pd->info->saved_rect.y,
|
|
|
|
pd->info->saved_rect.width,
|
|
|
|
pd->info->saved_rect.height);
|
2002-06-22 20:21:20 -04:00
|
|
|
}
|
2001-07-27 00:22:18 -04:00
|
|
|
else if (strcmp (element_name, "geometry") == 0)
|
|
|
|
{
|
2001-07-28 02:11:15 -04:00
|
|
|
int i;
|
2001-07-27 00:22:18 -04:00
|
|
|
|
2001-07-28 02:11:15 -04:00
|
|
|
pd->info->geometry_set = TRUE;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (attribute_names[i])
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
const char *val;
|
|
|
|
|
|
|
|
name = attribute_names[i];
|
|
|
|
val = attribute_values[i];
|
|
|
|
|
|
|
|
if (strcmp (name, "x") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->rect.x = atoi (val);
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "y") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->rect.y = atoi (val);
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "width") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->rect.width = atoi (val);
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "height") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->rect.height = atoi (val);
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "gravity") == 0)
|
|
|
|
{
|
|
|
|
if (*val)
|
|
|
|
pd->info->gravity = window_gravity_from_string (val);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
|
|
|
|
_("Unknown attribute %s on <geometry> element"),
|
|
|
|
name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
2001-07-27 00:22:18 -04:00
|
|
|
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Loaded geometry %d,%d %dx%d gravity %s\n",
|
|
|
|
pd->info->rect.x,
|
|
|
|
pd->info->rect.y,
|
|
|
|
pd->info->rect.width,
|
|
|
|
pd->info->rect.height,
|
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
|
|
|
meta_gravity_to_string (pd->info->gravity));
|
2001-07-27 00:22:18 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_UNKNOWN_ELEMENT,
|
|
|
|
_("Unknown element %s"),
|
|
|
|
element_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_element_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
ParseData *pd;
|
|
|
|
|
|
|
|
pd = user_data;
|
|
|
|
|
|
|
|
if (strcmp (element_name, "window") == 0)
|
|
|
|
{
|
|
|
|
g_assert (pd->info);
|
|
|
|
|
|
|
|
window_info_list = g_slist_prepend (window_info_list,
|
|
|
|
pd->info);
|
|
|
|
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Loaded window info from session with class: %s name: %s role: %s\n",
|
|
|
|
pd->info->res_class ? pd->info->res_class : "(none)",
|
|
|
|
pd->info->res_name ? pd->info->res_name : "(none)",
|
|
|
|
pd->info->role ? pd->info->role : "(none)");
|
2001-07-27 00:22:18 -04:00
|
|
|
|
|
|
|
pd->info = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
text_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *text,
|
|
|
|
gsize text_len,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
/* Right now we don't have any elements where we care about their
|
|
|
|
* content
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
both_null_or_matching (const char *a,
|
|
|
|
const char *b)
|
|
|
|
{
|
|
|
|
if (a == NULL && b == NULL)
|
|
|
|
return TRUE;
|
|
|
|
else if (a && b && strcmp (a, b) == 0)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList*
|
|
|
|
get_possible_matches (MetaWindow *window)
|
|
|
|
{
|
|
|
|
/* Get all windows with this client ID */
|
|
|
|
GSList *retval;
|
|
|
|
GSList *tmp;
|
2001-07-28 02:11:15 -04:00
|
|
|
gboolean ignore_client_id;
|
2001-07-27 00:22:18 -04:00
|
|
|
|
|
|
|
retval = NULL;
|
|
|
|
|
2001-07-28 02:11:15 -04:00
|
|
|
ignore_client_id = g_getenv ("METACITY_DEBUG_SM") != NULL;
|
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
tmp = window_info_list;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
MetaWindowSessionInfo *info;
|
|
|
|
|
|
|
|
info = tmp->data;
|
|
|
|
|
2001-07-28 02:11:15 -04:00
|
|
|
if ((ignore_client_id ||
|
|
|
|
both_null_or_matching (info->id, window->sm_client_id)) &&
|
2001-07-27 00:22:18 -04:00
|
|
|
both_null_or_matching (info->res_class, window->res_class) &&
|
|
|
|
both_null_or_matching (info->res_name, window->res_name) &&
|
|
|
|
both_null_or_matching (info->role, window->role))
|
|
|
|
{
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Window %s may match saved window with class: %s name: %s role: %s\n",
|
|
|
|
window->desc,
|
|
|
|
info->res_class ? info->res_class : "(none)",
|
|
|
|
info->res_name ? info->res_name : "(none)",
|
|
|
|
info->role ? info->role : "(none)");
|
2001-07-27 00:22:18 -04:00
|
|
|
|
|
|
|
retval = g_slist_prepend (retval, info);
|
|
|
|
}
|
2001-07-27 00:36:44 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (meta_is_verbose ())
|
|
|
|
{
|
|
|
|
if (!both_null_or_matching (info->id, window->sm_client_id))
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Window %s has SM client ID %s, saved state has %s, no match\n",
|
|
|
|
window->desc,
|
|
|
|
window->sm_client_id ? window->sm_client_id : "(none)",
|
|
|
|
info->id ? info->id : "(none)");
|
2001-07-27 00:36:44 -04:00
|
|
|
else if (!both_null_or_matching (info->res_class, window->res_class))
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Window %s has class %s doesn't match saved class %s, no match\n",
|
|
|
|
window->desc,
|
|
|
|
window->res_class ? window->res_class : "(none)",
|
|
|
|
info->res_class ? info->res_class : "(none)");
|
|
|
|
|
2001-07-27 00:36:44 -04:00
|
|
|
else if (!both_null_or_matching (info->res_name, window->res_name))
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Window %s has name %s doesn't match saved name %s, no match\n",
|
|
|
|
window->desc,
|
|
|
|
window->res_name ? window->res_name : "(none)",
|
|
|
|
info->res_name ? info->res_name : "(none)");
|
2001-07-27 00:36:44 -04:00
|
|
|
else if (!both_null_or_matching (info->role, window->role))
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Window %s has role %s doesn't match saved role %s, no match\n",
|
|
|
|
window->desc,
|
|
|
|
window->role ? window->role : "(none)",
|
|
|
|
info->role ? info->role : "(none)");
|
2001-07-27 00:36:44 -04:00
|
|
|
else
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "???? should not happen - window %s doesn't match saved state %s for no good reason\n",
|
|
|
|
window->desc, info->id);
|
2001-07-27 00:36:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
static const MetaWindowSessionInfo*
|
2001-07-27 00:22:18 -04:00
|
|
|
find_best_match (GSList *infos,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
const MetaWindowSessionInfo *matching_title;
|
|
|
|
const MetaWindowSessionInfo *matching_type;
|
|
|
|
|
|
|
|
matching_title = NULL;
|
|
|
|
matching_type = NULL;
|
|
|
|
|
|
|
|
tmp = infos;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
MetaWindowSessionInfo *info;
|
|
|
|
|
|
|
|
info = tmp->data;
|
|
|
|
|
|
|
|
if (matching_title == NULL &&
|
|
|
|
both_null_or_matching (info->title, window->title))
|
|
|
|
matching_title = info;
|
|
|
|
|
|
|
|
if (matching_type == NULL &&
|
|
|
|
info->type == window->type)
|
|
|
|
matching_type = info;
|
|
|
|
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prefer same title, then same type of window, then
|
|
|
|
* just pick something. Eventually we could enhance this
|
|
|
|
* to e.g. break ties by geometry hint similarity,
|
|
|
|
* or other window features.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (matching_title)
|
|
|
|
return matching_title;
|
|
|
|
else if (matching_type)
|
|
|
|
return matching_type;
|
|
|
|
else
|
|
|
|
return infos->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MetaWindowSessionInfo*
|
|
|
|
meta_window_lookup_saved_state (MetaWindow *window)
|
|
|
|
{
|
|
|
|
GSList *possibles;
|
|
|
|
const MetaWindowSessionInfo *info;
|
|
|
|
|
|
|
|
/* Window is not session managed.
|
|
|
|
* I haven't yet figured out how to deal with these
|
|
|
|
* in a way that doesn't cause broken side effects in
|
|
|
|
* situations other than on session restore.
|
|
|
|
*/
|
|
|
|
if (window->sm_client_id == NULL)
|
2001-07-27 00:36:44 -04:00
|
|
|
{
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM,
|
|
|
|
"Window %s is not session managed, not checking for saved state\n",
|
|
|
|
window->desc);
|
2001-07-27 00:36:44 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-07-26 01:10:01 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
possibles = get_possible_matches (window);
|
2001-07-26 01:10:01 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
if (possibles == NULL)
|
2001-07-27 00:36:44 -04:00
|
|
|
{
|
2002-02-07 22:34:26 -05:00
|
|
|
meta_topic (META_DEBUG_SM, "Window %s has no possible matches in the list of saved window states\n",
|
|
|
|
window->desc);
|
2001-07-27 00:36:44 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-07-27 00:22:18 -04:00
|
|
|
|
2001-07-27 00:36:44 -04:00
|
|
|
info = find_best_match (possibles, window);
|
2001-07-27 00:22:18 -04:00
|
|
|
|
|
|
|
g_slist_free (possibles);
|
|
|
|
|
|
|
|
return info;
|
2001-07-26 01:10:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-27 00:22:18 -04:00
|
|
|
meta_window_release_saved_state (const MetaWindowSessionInfo *info)
|
2001-07-26 01:10:01 -04:00
|
|
|
{
|
2001-07-27 00:22:18 -04:00
|
|
|
/* We don't want to use the same saved state again for another
|
|
|
|
* window.
|
|
|
|
*/
|
|
|
|
window_info_list = g_slist_remove (window_info_list, info);
|
|
|
|
|
|
|
|
session_info_free ((MetaWindowSessionInfo*) info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
session_info_free (MetaWindowSessionInfo *info)
|
|
|
|
{
|
|
|
|
g_free (info->id);
|
|
|
|
g_free (info->res_class);
|
|
|
|
g_free (info->res_name);
|
|
|
|
g_free (info->title);
|
|
|
|
g_free (info->role);
|
|
|
|
|
|
|
|
g_slist_free (info->workspace_indices);
|
2001-07-26 01:10:01 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
g_free (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaWindowSessionInfo*
|
|
|
|
session_info_new (void)
|
|
|
|
{
|
|
|
|
MetaWindowSessionInfo *info;
|
2001-07-26 01:10:01 -04:00
|
|
|
|
2001-07-27 00:22:18 -04:00
|
|
|
info = g_new0 (MetaWindowSessionInfo, 1);
|
|
|
|
|
|
|
|
info->type = META_WINDOW_NORMAL;
|
2001-07-28 02:11:15 -04:00
|
|
|
info->gravity = NorthWestGravity;
|
2001-07-27 00:22:18 -04:00
|
|
|
|
|
|
|
return info;
|
2001-06-22 02:21:44 -04:00
|
|
|
}
|
|
|
|
|
2002-03-13 23:09:42 -05:00
|
|
|
static char* full_save_path = NULL;
|
|
|
|
|
|
|
|
static void
|
|
|
|
regenerate_save_file (void)
|
|
|
|
{
|
|
|
|
g_free (full_save_path);
|
2007-03-26 17:38:19 -04:00
|
|
|
|
|
|
|
if (client_id)
|
2008-03-27 09:12:28 -04:00
|
|
|
full_save_path = g_strconcat (g_get_user_config_dir (),
|
|
|
|
G_DIR_SEPARATOR_S "metacity"
|
|
|
|
G_DIR_SEPARATOR_S "sessions" G_DIR_SEPARATOR_S,
|
2007-03-26 17:38:19 -04:00
|
|
|
client_id,
|
|
|
|
".ms",
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
full_save_path = NULL;
|
2002-03-13 23:09:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char*
|
|
|
|
full_save_file (void)
|
|
|
|
{
|
|
|
|
return full_save_path;
|
|
|
|
}
|
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
static int
|
|
|
|
windows_cmp_by_title (MetaWindow *a,
|
|
|
|
MetaWindow *b)
|
|
|
|
{
|
|
|
|
return g_utf8_collate (a->title, b->title);
|
|
|
|
}
|
|
|
|
|
2002-07-12 23:40:05 -04:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int child_pid;
|
|
|
|
int child_pipe;
|
|
|
|
gboolean shutdown;
|
|
|
|
} LameClientsDialogData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
finish_interact (gboolean shutdown)
|
|
|
|
{
|
|
|
|
if (current_state == STATE_DONE_WITH_INTERACT) /* paranoia */
|
|
|
|
{
|
|
|
|
SmcInteractDone (session_connection, False /* don't cancel logout */);
|
|
|
|
|
|
|
|
save_yourself_possibly_done (shutdown, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
io_from_warning_dialog (GIOChannel *channel,
|
|
|
|
GIOCondition condition,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
LameClientsDialogData *d;
|
|
|
|
|
|
|
|
d = data;
|
|
|
|
|
|
|
|
meta_topic (META_DEBUG_PING,
|
|
|
|
"IO handler from lame clients dialog, condition = %x\n",
|
|
|
|
condition);
|
|
|
|
|
|
|
|
if (condition & (G_IO_HUP | G_IO_NVAL | G_IO_ERR))
|
|
|
|
{
|
|
|
|
finish_interact (d->shutdown);
|
|
|
|
|
|
|
|
/* Remove the callback, freeing data */
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-09-24 21:50:30 -04:00
|
|
|
else if (condition & G_IO_IN)
|
|
|
|
{
|
|
|
|
/* Check for EOF */
|
|
|
|
|
|
|
|
char buf[16];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = read (d->child_pipe, buf, sizeof (buf));
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
finish_interact (d->shutdown);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2002-07-12 23:40:05 -04:00
|
|
|
|
|
|
|
/* Keep callback installed */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
static void
|
2002-07-12 23:40:05 -04:00
|
|
|
warn_about_lame_clients_and_finish_interact (gboolean shutdown)
|
2002-05-29 23:54:10 -04:00
|
|
|
{
|
|
|
|
GSList *lame;
|
2008-04-07 16:50:37 -04:00
|
|
|
GSList *windows;
|
2002-05-29 23:54:10 -04:00
|
|
|
char **argv;
|
|
|
|
int i;
|
|
|
|
GSList *tmp;
|
|
|
|
int len;
|
|
|
|
int child_pid;
|
2002-07-12 23:40:05 -04:00
|
|
|
int child_pipe;
|
2002-05-29 23:54:10 -04:00
|
|
|
GError *err;
|
2002-07-12 23:40:05 -04:00
|
|
|
GIOChannel *channel;
|
|
|
|
LameClientsDialogData *d;
|
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;
|
2004-08-25 20:59:12 -04:00
|
|
|
char timestampbuf[32];
|
2002-05-29 23:54:10 -04:00
|
|
|
|
|
|
|
lame = NULL;
|
2008-04-07 16:50:37 -04:00
|
|
|
windows = meta_display_list_windows (meta_get_display ());
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
tmp = windows;
|
|
|
|
while (tmp != NULL)
|
2002-05-29 23:54:10 -04:00
|
|
|
{
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
MetaWindow *window;
|
2002-05-29 23:54:10 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
window = tmp->data;
|
2002-05-29 23:54:10 -04:00
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
/* only complain about normal windows, the others
|
|
|
|
* are kind of dumb to worry about
|
|
|
|
*/
|
|
|
|
if (window->sm_client_id == NULL &&
|
|
|
|
window->type == META_WINDOW_NORMAL)
|
|
|
|
lame = g_slist_prepend (lame, window);
|
|
|
|
|
|
|
|
tmp = tmp->next;
|
2002-05-29 23:54:10 -04:00
|
|
|
}
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
|
|
|
|
g_slist_free (windows);
|
|
|
|
|
2002-07-12 23:47:06 -04:00
|
|
|
if (lame == NULL)
|
|
|
|
{
|
|
|
|
/* No lame apps. */
|
|
|
|
finish_interact (shutdown);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
lame = g_slist_sort (lame, (GCompareFunc) windows_cmp_by_title);
|
|
|
|
|
MetaDisplay becomes a singleton. The static variable which holds this
2008-03-25 Thomas Thurman <tthurman@gnome.org>
* src/core/display.c (meta_display_queue_retheme_all_windows,
meta_set_syncing, meta_display_set_cursor_theme, disable_compositor,
meta_display_for_x_display, meta_display_open, meta_display_close,
meta_display_ungrab): MetaDisplay becomes a singleton. The static
variable which holds this singleton is renamed "the_display" so as
not to mask the this parameter in the methods.
* src/core/main.c (main):
* src/core/session.c (warn_about_lame_clients_and_finish_inte,
save_state, io_from_warning_dialog):
* src/core/core.c (meta_core_increment_event_serial):
* src/core/delete.c (release_window_with_fd, search_and_destroy_window):
sympathy changes for this, and consequent simplification.
Closes #499301.
svn path=/trunk/; revision=3663
2008-03-24 23:39:13 -04:00
|
|
|
timestamp = meta_display_get_current_time_roundtrip (meta_get_display ());
|
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
|
|
|
sprintf (timestampbuf, "%u", timestamp);
|
2004-08-25 20:59:12 -04:00
|
|
|
|
2002-05-29 23:54:10 -04:00
|
|
|
len = g_slist_length (lame);
|
|
|
|
len *= 2; /* titles and also classes */
|
2004-08-25 20:59:12 -04:00
|
|
|
len += 2; /* --timestamp flag and actual timestamp */
|
2002-05-29 23:54:10 -04:00
|
|
|
len += 1; /* NULL term */
|
|
|
|
len += 2; /* metacity-dialog command and option */
|
|
|
|
|
|
|
|
argv = g_new0 (char*, len);
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
argv[i] = METACITY_LIBEXECDIR"/metacity-dialog";
|
|
|
|
++i;
|
2004-08-25 20:59:12 -04:00
|
|
|
argv[i] = "--timestamp";
|
|
|
|
++i;
|
|
|
|
argv[i] = timestampbuf;
|
|
|
|
++i;
|
2002-05-29 23:54:10 -04:00
|
|
|
argv[i] = "--warn-about-no-sm-support";
|
|
|
|
++i;
|
|
|
|
|
|
|
|
tmp = lame;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
MetaWindow *w = tmp->data;
|
|
|
|
|
|
|
|
argv[i] = w->title;
|
|
|
|
++i;
|
|
|
|
argv[i] = w->res_class ? w->res_class : "";
|
|
|
|
++i;
|
|
|
|
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
2002-07-12 23:40:05 -04:00
|
|
|
|
|
|
|
child_pipe = -1;
|
|
|
|
child_pid = -1;
|
2002-05-29 23:54:10 -04:00
|
|
|
err = NULL;
|
|
|
|
if (!g_spawn_async_with_pipes ("/",
|
|
|
|
argv,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
&child_pid,
|
|
|
|
NULL,
|
2002-07-12 23:40:05 -04:00
|
|
|
&child_pipe,
|
2002-05-29 23:54:10 -04:00
|
|
|
NULL,
|
|
|
|
&err))
|
|
|
|
{
|
|
|
|
meta_warning (_("Error launching metacity-dialog to warn about apps that don't support session management: %s\n"),
|
|
|
|
err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (argv);
|
|
|
|
g_slist_free (lame);
|
|
|
|
|
2002-07-12 23:40:05 -04:00
|
|
|
d = g_new0 (LameClientsDialogData, 1);
|
|
|
|
d->child_pipe = child_pipe;
|
|
|
|
d->child_pid = child_pid;
|
|
|
|
d->shutdown = shutdown;
|
|
|
|
|
|
|
|
channel = g_io_channel_unix_new (d->child_pipe);
|
|
|
|
g_io_add_watch_full (channel, G_PRIORITY_DEFAULT,
|
|
|
|
G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
|
|
|
|
io_from_warning_dialog,
|
|
|
|
d, g_free);
|
|
|
|
g_io_channel_unref (channel);
|
2002-05-29 23:54:10 -04:00
|
|
|
}
|
|
|
|
|
2001-06-22 02:21:44 -04:00
|
|
|
#endif /* HAVE_SM */
|