summaryrefslogtreecommitdiffstats
path: root/gedit/gedit-recent.c
diff options
context:
space:
mode:
Diffstat (limited to 'gedit/gedit-recent.c')
-rw-r--r--gedit/gedit-recent.c113
1 files changed, 113 insertions, 0 deletions
diff --git a/gedit/gedit-recent.c b/gedit/gedit-recent.c
new file mode 100644
index 0000000..d8cd7bd
--- /dev/null
+++ b/gedit/gedit-recent.c
@@ -0,0 +1,113 @@
+/*
+ * This file is part of gedit
+ *
+ * Copyright (C) 2005 - Paolo Maggi
+ * Copyright (C) 2014 - Paolo Borelli
+ * Copyright (C) 2014 - Jesse van den Kieboom
+ * Copyright (C) 2022 - Sébastien Wilmet
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "gedit-recent.h"
+
+void
+gedit_recent_add_document (GeditDocument *document)
+{
+ TeplFile *file;
+ GFile *location;
+ GtkRecentManager *recent_manager;
+ GtkRecentData *recent_data;
+ gchar *uri;
+
+ g_return_if_fail (GEDIT_IS_DOCUMENT (document));
+
+ file = tepl_buffer_get_file (TEPL_BUFFER (document));
+ location = tepl_file_get_location (file);
+
+ if (location == NULL)
+ {
+ return;
+ }
+
+ recent_manager = gtk_recent_manager_get_default ();
+
+ /* Ensures to initialize the whole struct to 0's. Useful if the struct
+ * is extended.
+ */
+ recent_data = g_new0 (GtkRecentData, 1);
+
+ /* We use gtk_recent_manager_add_full() because GeditDocument's mime
+ * type is more accurate. The other fields are normally set to the same
+ * values as what gtk_recent_manager_add_item() does.
+ */
+ recent_data->mime_type = gedit_document_get_mime_type (document);
+ recent_data->app_name = (gchar *) g_get_application_name ();
+ recent_data->app_exec = g_strjoin (" ", g_get_prgname (), "%u", NULL);
+
+ uri = g_file_get_uri (location);
+
+ if (!gtk_recent_manager_add_full (recent_manager, uri, recent_data))
+ {
+ g_warning ("Failed to add uri '%s' to the recent manager.", uri);
+ }
+
+ g_free (recent_data->mime_type);
+ g_free (recent_data->app_exec);
+ g_free (recent_data);
+ g_free (uri);
+}
+
+/* If a file is local, chances are that if load/save fails the file has been
+ * removed and the failure is permanent so we remove it from the list of recent
+ * files. For remote files the failure may be just transitory and we keep the
+ * file in the list.
+ *
+ * FIXME: for files coming from external disks, USB keys etc, if the external
+ * storage device is not mounted, do not remove the file from the list. On the
+ * other hand, if the external storage device is mounted and the file isn't
+ * there, remove it from the list.
+ *
+ * FIXME: for remote files, perhaps do the same as for external storage devices,
+ * IF the connection to the server succeeds (the directory is there).
+ *
+ * FIXME: for the above FIXMEs, we should probably rely (in part) on the GError
+ * we receive.
+ * And if it was a file loading, a useful information to have is whether the
+ * file was opened from the list of recent files. If it was *not*, the user can
+ * also just navigate again through the file hierarchy to re-open it later if
+ * the file comes back.
+ *
+ * IDEA: or just never remove files from the recent list, and call it the
+ * Recent History or something like that.
+ */
+void
+gedit_recent_remove_if_local (GFile *location)
+{
+ g_return_if_fail (G_IS_FILE (location));
+
+ if (g_file_has_uri_scheme (location, "file"))
+ {
+ GtkRecentManager *recent_manager;
+ gchar *uri;
+
+ recent_manager = gtk_recent_manager_get_default ();
+
+ uri = g_file_get_uri (location);
+ gtk_recent_manager_remove_item (recent_manager, uri, NULL);
+ g_free (uri);
+ }
+}
+
+/* ex:set ts=8 noet: */