Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-05-16 16:09:08 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2009-05-16 16:09:08 (GMT)
commit2fc3dcecc52241f84e007306f04f7329870ebf70 (patch)
tree098128f8e5147f48c4e121420c21f98d11c6de74 /shell/main.c
parent07330833c7e90d6b82f4dca2d4840547a25afe4c (diff)
[shell] Recover previous session when running evince after a crash
Fixes bug #578894
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c30
1 files changed, 25 insertions, 5 deletions
diff --git a/shell/main.c b/shell/main.c
index 22d42af..43fca48 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -226,14 +226,27 @@ arguments_parse (void)
return args;
}
+static gint
+find_window_list (EvWindow *window,
+ const gchar *uri)
+{
+ return g_ascii_strcasecmp (uri, ev_window_get_uri (window));
+}
+
static void
load_files (const char **files,
GHashTable *args)
{
- int i;
+ int i;
+ GList *windows;
+
+ windows = ev_application_get_windows (EV_APP);
if (!files) {
- ev_application_open_window (EV_APP, args, GDK_CURRENT_TIME, NULL);
+ if (!windows)
+ ev_application_open_window (EV_APP, args, GDK_CURRENT_TIME, NULL);
+ else
+ g_list_free (windows);
return;
}
@@ -246,7 +259,12 @@ load_files (const char **files,
file = g_file_new_for_commandline_arg (files[i]);
uri = g_file_get_uri (file);
g_object_unref (file);
-
+
+ if (g_list_find_custom (windows, uri, (GCompareFunc) find_window_list)) {
+ g_free (uri);
+ continue;
+ }
+
label = strchr (uri, '#');
if (label) {
@@ -272,6 +290,8 @@ load_files (const char **files,
g_free (uri);
}
+
+ g_list_free (windows);
}
#ifdef ENABLE_DBUS
@@ -424,8 +444,8 @@ main (int argc, char *argv[])
egg_set_desktop_file (GNOMEDATADIR "/applications/evince.desktop");
#endif /* G_OS_WIN32 */
- if (!ev_application_load_session (EV_APP))
- load_files (file_arguments, args);
+ ev_application_load_session (EV_APP);
+ load_files (file_arguments, args);
g_hash_table_destroy (args);
/* Change directory so we don't prevent unmounting in case the initial cwd