]> Pileus Git - ~andy/gtk/blob - gtk/gtkrecentmanager.c
Use GSlice to allocate the application data for recently used resources;
[~andy/gtk] / gtk / gtkrecentmanager.c
1 /* GTK - The GIMP Toolkit
2  * gtkrecentmanager.c: a manager for the recently used resources
3  *
4  * Copyright (C) 2006 Emmanuele Bassi
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  */
20
21 #include "config.h"
22
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #ifdef HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28 #include <errno.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <glib.h>
32 #include <glib/gstdio.h>
33 #include <gio/gio.h>
34
35 #include "gtkrecentmanager.h"
36 #include "gtkintl.h"
37 #include "gtkstock.h"
38 #include "gtkicontheme.h"
39 #include "gtktypebuiltins.h"
40 #include "gtkprivate.h"
41 #include "gtkmarshalers.h"
42 #include "gtkalias.h"
43
44 /* the file where we store the recently used items */
45 #define GTK_RECENTLY_USED_FILE  ".recently-used.xbel"
46
47 /* return all items by default */
48 #define DEFAULT_LIMIT   -1
49
50 /* keep in sync with xdgmime */
51 #define GTK_RECENT_DEFAULT_MIME "application/octet-stream"
52
53 typedef struct
54 {
55   gchar *name;
56   gchar *exec;
57   
58   guint count;
59   
60   time_t stamp;
61 } RecentAppInfo;
62
63 struct _GtkRecentInfo
64 {
65   gchar *uri;
66   
67   gchar *display_name;
68   gchar *description;
69   
70   time_t added;
71   time_t modified;
72   time_t visited;
73   
74   gchar *mime_type;
75   
76   GSList *applications;
77   GHashTable *apps_lookup;
78   
79   GSList *groups;
80   
81   gboolean is_private;
82   
83   GdkPixbuf *icon;
84   
85   gint ref_count;
86 };
87
88 #define GTK_RECENT_MANAGER_GET_PRIVATE(obj)     (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_RECENT_MANAGER, GtkRecentManagerPrivate))
89
90 struct _GtkRecentManagerPrivate
91 {
92   gchar *filename;
93
94   guint is_dirty : 1;
95   
96   gint limit;
97   gint size;
98
99   GBookmarkFile *recent_items;
100
101   GFileMonitor *monitor;
102 };
103
104 enum
105 {
106   PROP_0,
107
108   PROP_FILENAME,  
109   PROP_LIMIT,
110   PROP_SIZE
111 };
112
113 static void     gtk_recent_manager_dispose             (GObject           *object);
114 static void     gtk_recent_manager_finalize            (GObject           *object);
115 static void     gtk_recent_manager_set_property        (GObject           *object,
116                                                         guint              prop_id,
117                                                         const GValue      *value,
118                                                         GParamSpec        *pspec);
119 static void     gtk_recent_manager_get_property        (GObject           *object,
120                                                         guint              prop_id,
121                                                         GValue            *value,
122                                                         GParamSpec        *pspec);
123 static void     gtk_recent_manager_add_item_query_info (GObject           *source_object,
124                                                         GAsyncResult      *res,
125                                                         gpointer           user_data);
126 static void     gtk_recent_manager_monitor_changed     (GFileMonitor      *monitor,
127                                                         GFile             *file,
128                                                         GFile             *other_file,
129                                                         GFileMonitorEvent  event_type,
130                                                         gpointer           user_data);
131 static void     gtk_recent_manager_changed             (GtkRecentManager  *manager);
132 static void     gtk_recent_manager_real_changed        (GtkRecentManager  *manager);
133 static void     gtk_recent_manager_set_filename        (GtkRecentManager  *manager,
134                                                         const gchar       *filename);
135 static void     gtk_recent_manager_clamp_to_age        (GtkRecentManager  *manager,
136                                                         gint               age);
137
138
139 static void build_recent_items_list (GtkRecentManager  *manager);
140 static void purge_recent_items_list (GtkRecentManager  *manager,
141                                      GError           **error);
142
143 static RecentAppInfo *recent_app_info_new  (const gchar   *app_name);
144 static void           recent_app_info_free (RecentAppInfo *app_info);
145
146 static GtkRecentInfo *gtk_recent_info_new  (const gchar   *uri);
147 static void           gtk_recent_info_free (GtkRecentInfo *recent_info);
148
149 static guint signal_changed = 0;
150
151 static GtkRecentManager *recent_manager_singleton = NULL;
152
153 G_DEFINE_TYPE (GtkRecentManager, gtk_recent_manager, G_TYPE_OBJECT)
154
155 static void
156 filename_warning (const gchar *format, 
157                   const gchar *filename, 
158                   const gchar *message)
159 {
160   gchar *utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
161   g_warning (format, utf8 ? utf8 : "(invalid filename)", message);
162   g_free (utf8);
163 }
164
165 /* Test of haystack has the needle prefix, comparing case
166  * insensitive. haystack may be UTF-8, but needle must
167  * contain only lowercase ascii. */
168 static gboolean
169 has_case_prefix (const gchar *haystack, 
170                  const gchar *needle)
171 {
172   const gchar *h, *n;
173
174   /* Eat one character at a time. */
175   h = haystack;
176   n = needle;
177
178   while (*n && *h && *n == g_ascii_tolower (*h))
179     {
180       n++;
181       h++;
182     }
183
184   return *n == '\0';
185 }
186
187 GQuark
188 gtk_recent_manager_error_quark (void)
189 {
190   return g_quark_from_static_string ("gtk-recent-manager-error-quark");
191 }
192
193 static void
194 gtk_recent_manager_class_init (GtkRecentManagerClass *klass)
195 {
196   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
197   
198   gobject_class->set_property = gtk_recent_manager_set_property;
199   gobject_class->get_property = gtk_recent_manager_get_property;
200   gobject_class->dispose = gtk_recent_manager_dispose;
201   gobject_class->finalize = gtk_recent_manager_finalize;
202   
203   /**
204    * GtkRecentManager:filename
205    *
206    * The full path to the file to be used to store and read the recently
207    * used resources list
208    *
209    * Since: 2.10
210    */
211   g_object_class_install_property (gobject_class,
212                                    PROP_FILENAME,
213                                    g_param_spec_string ("filename",
214                                                         P_("Filename"),
215                                                         P_("The full path to the file to be used to store and read the list"),
216                                                         NULL,
217                                                         (G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE)));
218   /**
219    * GtkRecentManager:limit
220    *
221    * The maximum number of items to be returned by the
222    * gtk_recent_manager_get_items() function.
223    *
224    * Since: 2.10
225    */
226   g_object_class_install_property (gobject_class,
227                                    PROP_LIMIT,
228                                    g_param_spec_int ("limit",
229                                                      P_("Limit"),
230                                                      P_("The maximum number of items to be returned by gtk_recent_manager_get_items()"),
231                                                      -1,
232                                                      G_MAXINT,
233                                                      DEFAULT_LIMIT,
234                                                      G_PARAM_READWRITE));
235   /**
236    * GtkRecentManager:size
237    * 
238    * The size of the recently used resources list.
239    *
240    * Since: 2.10
241    */
242   g_object_class_install_property (gobject_class,
243                                    PROP_SIZE,
244                                    g_param_spec_int ("size",
245                                                      P_("Size"),
246                                                      P_("The size of the recently used resources list"),
247                                                      -1,
248                                                      G_MAXINT,
249                                                      0,
250                                                      G_PARAM_READABLE));
251   
252   /**
253    * GtkRecentManager::changed
254    * @recent_manager: the recent manager
255    *
256    * Emitted when the current recently used resources manager changes its
257    * contents.
258    *
259    * Since: 2.10
260    */
261   signal_changed =
262     g_signal_new (I_("changed"),
263                   G_TYPE_FROM_CLASS (klass),
264                   G_SIGNAL_RUN_FIRST,
265                   G_STRUCT_OFFSET (GtkRecentManagerClass, changed),
266                   NULL, NULL,
267                   g_cclosure_marshal_VOID__VOID,
268                   G_TYPE_NONE, 0);
269   
270   klass->changed = gtk_recent_manager_real_changed;
271   
272   g_type_class_add_private (klass, sizeof (GtkRecentManagerPrivate));
273 }
274
275 static void
276 gtk_recent_manager_init (GtkRecentManager *manager)
277 {
278   GtkRecentManagerPrivate *priv;
279
280   manager->priv = priv = GTK_RECENT_MANAGER_GET_PRIVATE (manager);
281   
282   priv->limit = DEFAULT_LIMIT;
283   priv->size = 0;
284
285   priv->filename = NULL;
286 }
287
288 static void
289 gtk_recent_manager_set_property (GObject               *object,
290                                  guint                  prop_id,
291                                  const GValue          *value,
292                                  GParamSpec            *pspec)
293 {
294   GtkRecentManager *recent_manager = GTK_RECENT_MANAGER (object);
295  
296   switch (prop_id)
297     {
298     case PROP_FILENAME:
299       gtk_recent_manager_set_filename (recent_manager, g_value_get_string (value));
300       break;      
301     case PROP_LIMIT:
302       gtk_recent_manager_set_limit (recent_manager, g_value_get_int (value));
303       break;
304     default:
305       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
306       break;
307     }
308 }
309
310 static void
311 gtk_recent_manager_get_property (GObject               *object,
312                                  guint                  prop_id,
313                                  GValue                *value,
314                                  GParamSpec            *pspec)
315 {
316   GtkRecentManager *recent_manager = GTK_RECENT_MANAGER (object);
317   
318   switch (prop_id)
319     {
320     case PROP_FILENAME:
321       g_value_set_string (value, recent_manager->priv->filename);
322       break;
323     case PROP_LIMIT:
324       g_value_set_int (value, recent_manager->priv->limit);
325       break;
326     case PROP_SIZE:
327       g_value_set_int (value, recent_manager->priv->size);
328       break;
329     default:
330       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
331       break;
332     }
333
334
335 static void
336 gtk_recent_manager_dispose (GObject *object)
337 {
338   GtkRecentManager *manager = GTK_RECENT_MANAGER (object);
339   GtkRecentManagerPrivate *priv = manager->priv;
340
341   if (priv->monitor)
342     {
343       g_signal_handlers_disconnect_by_func (priv->monitor,
344                                             G_CALLBACK (gtk_recent_manager_monitor_changed),
345                                             manager);
346       g_object_unref (priv->monitor);
347       priv->monitor = NULL;
348     }
349
350   G_OBJECT_CLASS (gtk_recent_manager_parent_class)->dispose (object);
351 }
352
353 static void
354 gtk_recent_manager_finalize (GObject *object)
355 {
356   GtkRecentManager *manager = GTK_RECENT_MANAGER (object);
357   GtkRecentManagerPrivate *priv = manager->priv;
358
359   g_free (priv->filename);
360   
361   if (priv->recent_items)
362     g_bookmark_file_free (priv->recent_items);
363
364   G_OBJECT_CLASS (gtk_recent_manager_parent_class)->finalize (object);
365 }
366
367 static void
368 gtk_recent_manager_real_changed (GtkRecentManager *manager)
369 {
370   GtkRecentManagerPrivate *priv = manager->priv;
371
372   g_object_freeze_notify (G_OBJECT (manager));
373
374   if (priv->is_dirty)
375     {
376       GError *write_error;
377       
378       /* we are marked as dirty, so we dump the content of our
379        * recently used items list
380        */
381       g_assert (priv->filename != NULL);
382
383       if (!priv->recent_items)
384         {
385           /* if no container object has been defined, we create a new
386            * empty container, and dump it
387            */
388           priv->recent_items = g_bookmark_file_new ();
389           priv->size = 0;
390         }
391       else
392         {
393           GtkSettings *settings = gtk_settings_get_default ();
394           gint age = 30;
395
396           g_object_get (G_OBJECT (settings), "gtk-recent-files-max-age", &age, NULL);
397           if (age > 0)
398             gtk_recent_manager_clamp_to_age (manager, age);
399           else if (age == 0)
400             {
401               g_bookmark_file_free (priv->recent_items);
402               priv->recent_items = NULL;
403
404               priv->recent_items = g_bookmark_file_new ();
405             }
406         }
407
408       write_error = NULL;
409       g_bookmark_file_to_file (priv->recent_items, priv->filename, &write_error);
410       if (write_error)
411         {
412           filename_warning ("Attempting to store changes into `%s', "
413                             "but failed: %s",
414                             priv->filename,
415                             write_error->message);
416           g_error_free (write_error);
417         }
418
419       /* mark us as clean */
420       priv->is_dirty = FALSE;
421     }
422   else
423     {
424       /* we are not marked as dirty, so we have been called
425        * because the recently used resources file has been
426        * changed (and not from us).
427        */
428       build_recent_items_list (manager);
429     }
430
431   g_object_thaw_notify (G_OBJECT (manager));
432 }
433
434 static void
435 gtk_recent_manager_monitor_changed (GFileMonitor      *monitor,
436                                     GFile             *file,
437                                     GFile             *other_file,
438                                     GFileMonitorEvent  event_type,
439                                     gpointer           user_data)
440 {
441   GtkRecentManager *manager = user_data;
442
443   switch (event_type)
444     {
445     case G_FILE_MONITOR_EVENT_CHANGED:
446     case G_FILE_MONITOR_EVENT_CREATED:
447       gtk_recent_manager_changed (manager);
448       break;
449
450     case G_FILE_MONITOR_EVENT_DELETED:
451       break;
452
453     default:
454       break;
455     }
456 }
457
458 static void
459 gtk_recent_manager_set_filename (GtkRecentManager *manager,
460                                  const gchar      *filename)
461 {
462   GtkRecentManagerPrivate *priv;
463   GFile *file;
464   GError *error;
465   
466   g_assert (GTK_IS_RECENT_MANAGER (manager));
467
468   priv = manager->priv;
469
470   /* if a filename is already set and filename is not NULL, then copy
471    * it and reset the monitor; otherwise, if it's NULL we're being
472    * called from the finalization sequence, so we simply disconnect the
473    * monitoring and return.
474    *
475    * if no filename is set and filename is NULL, use the default.
476    */
477   if (priv->filename)
478     {
479       g_free (priv->filename);
480
481       if (priv->monitor)
482         {
483           g_signal_handlers_disconnect_by_func (priv->monitor,
484                                                 G_CALLBACK (gtk_recent_manager_monitor_changed),
485                                                 manager);
486           g_object_unref (priv->monitor);
487           priv->monitor = NULL;
488         }
489
490       if (!filename || *filename == '\0')
491         return;
492       else
493         priv->filename = g_strdup (filename);
494     }
495   else
496     {
497       if (!filename || *filename == '\0')
498         priv->filename = g_build_filename (g_get_home_dir (),
499                                            GTK_RECENTLY_USED_FILE,
500                                            NULL);
501       else
502         priv->filename = g_strdup (filename);
503     }
504
505   g_assert (priv->filename != NULL);
506   file = g_file_new_for_path (priv->filename);
507
508   error = NULL;
509   priv->monitor = g_file_monitor_file (file, G_FILE_MONITOR_NONE, NULL, &error);
510   if (error)
511     {
512       filename_warning ("Unable to monitor `%s': %s\n"
513                         "The GtkRecentManager will not update its contents "
514                         "if the file is changed from other instances",
515                         priv->filename,
516                         error->message);
517       g_error_free (error);
518     }
519   else
520     g_signal_connect (priv->monitor, "changed",
521                       G_CALLBACK (gtk_recent_manager_monitor_changed),
522                       manager);
523
524   g_object_unref (file);
525
526   priv->is_dirty = FALSE;
527   build_recent_items_list (manager);
528 }
529
530 /* reads the recently used resources file and builds the items list.
531  * we keep the items list inside the parser object, and build the
532  * RecentInfo object only on user's demand to avoid useless replication.
533  * this function resets the dirty bit of the manager.
534  */
535 static void
536 build_recent_items_list (GtkRecentManager *manager)
537 {
538   GtkRecentManagerPrivate *priv = manager->priv;
539   GError *read_error;
540   gint size;
541
542   g_assert (priv->filename != NULL);
543   
544   if (!priv->recent_items)
545     {
546       priv->recent_items = g_bookmark_file_new ();
547       priv->size = 0;
548     }
549
550   /* the file exists, and it's valid (we hope); if not, destroy the container
551    * object and hope for a better result when the next "changed" signal is
552    * fired. */
553   read_error = NULL;
554   g_bookmark_file_load_from_file (priv->recent_items, priv->filename, &read_error);
555   if (read_error)
556     {
557       /* if the file does not exist we just wait for the first write
558        * operation on this recent manager instance, to avoid creating
559        * empty files and leading to spurious file system events (Sabayon
560        * will not be happy about those)
561        */
562       if (read_error->domain == G_FILE_ERROR &&
563           read_error->code != G_FILE_ERROR_NOENT)
564         filename_warning ("Attempting to read the recently used resources "
565                           "file at `%s', but the parser failed: %s.",
566                           priv->filename,
567                           read_error->message);
568
569       g_bookmark_file_free (priv->recent_items);
570       priv->recent_items = NULL;
571
572       g_error_free (read_error);
573     }
574   else
575     {
576       size = g_bookmark_file_get_size (priv->recent_items);
577       if (priv->size != size)
578         {
579           priv->size = size;
580
581           g_object_notify (G_OBJECT (manager), "size");
582         }
583     }
584
585   priv->is_dirty = FALSE;
586 }
587
588
589 /********************
590  * GtkRecentManager *
591  ********************/
592
593
594 /**
595  * gtk_recent_manager_new:
596  * 
597  * Creates a new recent manager object.  Recent manager objects are used to
598  * handle the list of recently used resources.  A #GtkRecentManager object
599  * monitors the recently used resources list, and emits the "changed" signal
600  * each time something inside the list changes.
601  *
602  * #GtkRecentManager objects are expensive: be sure to create them only when
603  * needed. You should use gtk_recent_manager_get_default() instead.
604  *
605  * Return value: A newly created #GtkRecentManager object.
606  *
607  * Since: 2.10
608  */
609 GtkRecentManager *
610 gtk_recent_manager_new (void)
611 {
612   return g_object_new (GTK_TYPE_RECENT_MANAGER, NULL);
613 }
614
615 /**
616  * gtk_recent_manager_get_default:
617  *
618  * Gets a unique instance of #GtkRecentManager, that you can share
619  * in your application without caring about memory management. The
620  * returned instance will be freed when you application terminates.
621  *
622  * Return value: A unique #GtkRecentManager. Do not ref or unref it.
623  *
624  * Since: 2.10
625  */
626 GtkRecentManager *
627 gtk_recent_manager_get_default (void)
628 {
629   if (G_UNLIKELY (!recent_manager_singleton))
630     recent_manager_singleton = gtk_recent_manager_new ();
631
632   return recent_manager_singleton;
633 }
634
635 /**
636  * gtk_recent_manager_get_for_screen:
637  * @screen: a #GdkScreen
638  *
639  * Gets the recent manager object associated with @screen; if this
640  * function has not previously been called for the given screen,
641  * a new recent manager object will be created and associated with
642  * the screen. Recent manager objects are fairly expensive to create,
643  * so using this function is usually a better choice than calling 
644  * gtk_recent_manager_new() and setting the screen yourself; by using
645  * this function a single recent manager object will be shared between
646  * users.
647  *
648  * Return value: A unique #GtkRecentManager associated with the given
649  *   screen. This recent manager is associated to the with the screen
650  *   and can be used as long as the screen is open. Do not ref or
651  *   unref it.
652  *
653  * Deprecated: 2.12: This function has been deprecated and should
654  *   not be used in newly written code. Calling this function is
655  *   equivalent to calling gtk_recent_manager_get_default().
656  *
657  * Since: 2.10
658  */
659 GtkRecentManager *
660 gtk_recent_manager_get_for_screen (GdkScreen *screen)
661 {
662   return gtk_recent_manager_get_default ();
663 }
664
665 /**
666  * gtk_recent_manager_set_screen:
667  * @manager: a #GtkRecentManager
668  * @screen: a #GdkScreen
669  *
670  * Sets the screen for a recent manager; the screen is used to
671  * track the user's currently configured recently used documents
672  * storage.
673  * 
674  * Since: 2.10
675  *
676  * Deprecated: 2.12: This function has been deprecated and should
677  *   not be used in newly written code. Calling this function has
678  *   no effect.
679  */
680 void
681 gtk_recent_manager_set_screen (GtkRecentManager *manager,
682                                GdkScreen        *screen)
683 {
684
685 }
686
687 /**
688  * gtk_recent_manager_set_limit:
689  * @manager: a #GtkRecentManager
690  * @limit: the maximum number of items to return, or -1.
691  *
692  * Sets the maximum number of item that the gtk_recent_manager_get_items()
693  * function should return.  If @limit is set to -1, then return all the
694  * items.
695  *
696  * Since: 2.10
697  */
698 void
699 gtk_recent_manager_set_limit (GtkRecentManager *manager,
700                               gint              limit)
701 {
702   GtkRecentManagerPrivate *priv;
703   
704   g_return_if_fail (GTK_IS_RECENT_MANAGER (manager));
705   
706   priv = manager->priv;
707   priv->limit = limit;
708 }
709
710 /**
711  * gtk_recent_manager_get_limit:
712  * @manager: a #GtkRecentManager
713  *
714  * Gets the maximum number of items that the gtk_recent_manager_get_items()
715  * function should return.
716  *
717  * Return value: the number of items to return, or -1 for every item.
718  *
719  * Since: 2.10
720  */
721 gint
722 gtk_recent_manager_get_limit (GtkRecentManager *manager)
723 {
724   GtkRecentManagerPrivate *priv;
725   
726   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), DEFAULT_LIMIT);
727   
728   priv = manager->priv;
729   return priv->limit;
730 }
731
732 static void
733 gtk_recent_manager_add_item_query_info (GObject      *source_object,
734                                         GAsyncResult *res,
735                                         gpointer      user_data)
736 {
737   GFile *file = G_FILE (source_object);
738   GtkRecentManager *manager = user_data;
739   GtkRecentData recent_data;
740   GFileInfo *file_info;
741   gchar *uri;
742   GError *error;
743
744   uri = g_file_get_uri (file);
745
746   error = NULL;
747   file_info = g_file_query_info_finish (file, res, &error);
748   if (error)
749     {
750       g_warning ("Unable to retrieve the file info for `%s': %s",
751                  uri,
752                  error->message);
753       g_error_free (error);
754       goto out;
755     }
756
757   recent_data.display_name = NULL;
758   recent_data.description = NULL;
759
760   if (file_info)
761     {
762       gchar *content_type;
763
764       content_type = g_file_info_get_attribute_as_string (file_info, G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
765
766       if (G_LIKELY (content_type))
767         recent_data.mime_type = g_content_type_get_mime_type (content_type);
768       else
769         recent_data.mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME);
770
771       g_free (content_type);
772       g_object_unref (file_info);
773     }
774   else
775     recent_data.mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME);
776
777   recent_data.app_name = g_strdup (g_get_application_name ());
778   recent_data.app_exec = g_strjoin (" ", g_get_prgname (), "%u", NULL);
779   recent_data.groups = NULL;
780   recent_data.is_private = FALSE;
781
782   /* Ignore return value, this can't fail anyway since all required
783    * fields are set */
784   gtk_recent_manager_add_full (manager, uri, &recent_data);
785
786   manager->priv->is_dirty = TRUE;
787   gtk_recent_manager_changed (manager);
788
789   g_free (recent_data.mime_type);
790   g_free (recent_data.app_name);
791   g_free (recent_data.app_exec);
792
793 out:
794   g_object_unref (manager);
795   g_free (uri);
796 }
797
798 /**
799  * gtk_recent_manager_add_item:
800  * @manager: a #GtkRecentManager
801  * @uri: a valid URI
802  *
803  * Adds a new resource, pointed by @uri, into the recently used
804  * resources list.
805  *
806  * This function automatically retrieves some of the needed
807  * metadata and setting other metadata to common default values; it
808  * then feeds the data to gtk_recent_manager_add_full().
809  * 
810  * See gtk_recent_manager_add_full() if you want to explicitly
811  * define the metadata for the resource pointed by @uri.
812  *
813  * Return value: %TRUE if the new item was successfully added
814  *   to the recently used resources list
815  *
816  * Since: 2.10
817  */
818 gboolean
819 gtk_recent_manager_add_item (GtkRecentManager  *manager,
820                              const gchar       *uri)
821 {
822   GFile* file;
823   
824   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
825   g_return_val_if_fail (uri != NULL, FALSE);
826
827   file = g_file_new_for_uri (uri);
828
829   g_file_query_info_async (file,
830                            G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE,
831                            G_PRIORITY_DEFAULT,
832                            G_FILE_QUERY_INFO_NONE,
833                            NULL,
834                            gtk_recent_manager_add_item_query_info,
835                            g_object_ref (manager));
836
837   g_object_unref (file);
838
839   return TRUE;
840 }
841
842 /**
843  * gtk_recent_manager_add_full:
844  * @manager: a #GtkRecentManager
845  * @uri: a valid URI
846  * @recent_data: metadata of the resource
847  *
848  * Adds a new resource, pointed by @uri, into the recently used
849  * resources list, using the metadata specified inside the #GtkRecentData
850  * structure passed in @recent_data.
851  *
852  * The passed URI will be used to identify this resource inside the
853  * list.
854  *
855  * In order to register the new recently used resource, metadata about
856  * the resource must be passed as well as the URI; the metadata is
857  * stored in a #GtkRecentData structure, which must contain the MIME
858  * type of the resource pointed by the URI; the name of the application
859  * that is registering the item, and a command line to be used when
860  * launching the item.
861  *
862  * Optionally, a #GtkRecentData structure might contain a UTF-8 string
863  * to be used when viewing the item instead of the last component of the
864  * URI; a short description of the item; whether the item should be
865  * considered private - that is, should be displayed only by the
866  * applications that have registered it.
867  *
868  * Return value: %TRUE if the new item was successfully added to the
869  * recently used resources list, %FALSE otherwise.
870  *
871  * Since: 2.10
872  */
873 gboolean
874 gtk_recent_manager_add_full (GtkRecentManager     *manager,
875                              const gchar          *uri,
876                              const GtkRecentData  *data)
877 {
878   GtkRecentManagerPrivate *priv;
879   
880   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
881   g_return_val_if_fail (uri != NULL, FALSE);
882   g_return_val_if_fail (data != NULL, FALSE);
883
884   /* sanity checks */
885   if ((data->display_name) &&
886       (!g_utf8_validate (data->display_name, -1, NULL)))
887     {
888       g_warning ("Attempting to add `%s' to the list of recently used "
889                  "resources, but the display name is not a valid UTF-8 "
890                  "encoded string",
891                  uri);
892       return FALSE;
893     }
894   
895   if ((data->description) &&
896       (!g_utf8_validate (data->description, -1, NULL)))
897     {
898       g_warning ("Attempting to add `%s' to the list of recently used "
899                  "resources, but the description is not a valid UTF-8 "
900                  "encoded string",
901                  uri);
902       return FALSE;
903     }
904
905  
906   if (!data->mime_type)
907     {
908       g_warning ("Attempting to add `%s' to the list of recently used "
909                  "resources, but not MIME type was defined",
910                  uri);
911       return FALSE;
912     }
913   
914   if (!data->app_name)
915     {
916       g_warning ("Attempting to add `%s' to the list of recently used "
917                  "resources, but no name of the application that is "
918                  "registering it was defined",
919                  uri);
920       return FALSE;
921     }
922   
923   if (!data->app_exec)
924     {
925       g_warning ("Attempting to add `%s' to the list of recently used "
926                  "resources, but no command line for the application "
927                  "that is registering it was defined",
928                  uri);
929       return FALSE;
930     }
931   
932   priv = manager->priv;
933
934   if (!priv->recent_items)
935     {
936       priv->recent_items = g_bookmark_file_new ();
937       priv->size = 0;
938     }
939
940   if (data->display_name)  
941     g_bookmark_file_set_title (priv->recent_items, uri, data->display_name);
942   
943   if (data->description)
944     g_bookmark_file_set_description (priv->recent_items, uri, data->description);
945
946   g_bookmark_file_set_mime_type (priv->recent_items, uri, data->mime_type);
947   
948   if (data->groups && data->groups[0] != '\0')
949     {
950       gint j;
951       
952       for (j = 0; (data->groups)[j] != NULL; j++)
953         g_bookmark_file_add_group (priv->recent_items, uri, (data->groups)[j]);
954     }
955   
956   /* register the application; this will take care of updating the
957    * registration count and time in case the application has
958    * already registered the same document inside the list
959    */
960   g_bookmark_file_add_application (priv->recent_items, uri,
961                                    data->app_name,
962                                    data->app_exec);
963   
964   g_bookmark_file_set_is_private (priv->recent_items, uri,
965                                   data->is_private);
966   
967   /* mark us as dirty, so that when emitting the "changed" signal we
968    * will dump our changes
969    */
970   priv->is_dirty = TRUE;
971   
972   gtk_recent_manager_changed (manager);
973   
974   return TRUE;
975 }
976
977 /**
978  * gtk_recent_manager_remove_item:
979  * @manager: a #GtkRecentManager
980  * @uri: the URI of the item you wish to remove
981  * @error: return location for a #GError, or %NULL
982  *
983  * Removes a resource pointed by @uri from the recently used resources
984  * list handled by a recent manager.
985  *
986  * Return value: %TRUE if the item pointed by @uri has been successfully
987  *   removed by the recently used resources list, and %FALSE otherwise.
988  *
989  * Since: 2.10
990  */
991 gboolean
992 gtk_recent_manager_remove_item (GtkRecentManager  *manager,
993                                 const gchar       *uri,
994                                 GError           **error)
995 {
996   GtkRecentManagerPrivate *priv;
997   GError *remove_error = NULL;
998
999   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
1000   g_return_val_if_fail (uri != NULL, FALSE);
1001   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1002   
1003   priv = manager->priv;
1004   
1005   if (!priv->recent_items)
1006     {
1007       priv->recent_items = g_bookmark_file_new ();
1008       priv->size = 0;
1009
1010       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1011                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1012                    _("Unable to find an item with URI '%s'"),
1013                    uri);
1014
1015       return FALSE;
1016     }
1017
1018   g_bookmark_file_remove_item (priv->recent_items, uri, &remove_error);
1019   if (remove_error)
1020     {
1021       g_error_free (remove_error);
1022
1023       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1024                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1025                    _("Unable to find an item with URI '%s'"),
1026                    uri);
1027       
1028       return FALSE;
1029     }
1030
1031   priv->is_dirty = TRUE;
1032
1033   gtk_recent_manager_changed (manager);
1034   
1035   return TRUE;
1036 }
1037
1038 /**
1039  * gtk_recent_manager_has_item:
1040  * @manager: a #GtkRecentManager
1041  * @uri: a URI
1042  *
1043  * Checks whether there is a recently used resource registered
1044  * with @uri inside the recent manager.
1045  *
1046  * Return value: %TRUE if the resource was found, %FALSE otherwise.
1047  *
1048  * Since: 2.10
1049  */
1050 gboolean
1051 gtk_recent_manager_has_item (GtkRecentManager *manager,
1052                              const gchar      *uri)
1053 {
1054   GtkRecentManagerPrivate *priv;
1055
1056   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
1057   g_return_val_if_fail (uri != NULL, FALSE);
1058
1059   priv = manager->priv;
1060   g_return_val_if_fail (priv->recent_items != NULL, FALSE);
1061
1062   return g_bookmark_file_has_item (priv->recent_items, uri);
1063 }
1064
1065 static void
1066 build_recent_info (GBookmarkFile  *bookmarks,
1067                    GtkRecentInfo  *info)
1068 {
1069   gchar **apps, **groups;
1070   gsize apps_len, groups_len, i;
1071
1072   g_assert (bookmarks != NULL);
1073   g_assert (info != NULL);
1074   
1075   info->display_name = g_bookmark_file_get_title (bookmarks, info->uri, NULL);
1076   info->description = g_bookmark_file_get_description (bookmarks, info->uri, NULL);
1077   info->mime_type = g_bookmark_file_get_mime_type (bookmarks, info->uri, NULL);
1078     
1079   info->is_private = g_bookmark_file_get_is_private (bookmarks, info->uri, NULL);
1080   
1081   info->added = g_bookmark_file_get_added (bookmarks, info->uri, NULL);
1082   info->modified = g_bookmark_file_get_modified (bookmarks, info->uri, NULL);
1083   info->visited = g_bookmark_file_get_visited (bookmarks, info->uri, NULL);
1084   
1085   groups = g_bookmark_file_get_groups (bookmarks, info->uri, &groups_len, NULL);
1086   for (i = 0; i < groups_len; i++)
1087     {
1088       gchar *group_name = g_strdup (groups[i]);
1089       
1090       info->groups = g_slist_append (info->groups, group_name);
1091     }
1092
1093   g_strfreev (groups);
1094   
1095   apps = g_bookmark_file_get_applications (bookmarks, info->uri, &apps_len, NULL);
1096   for (i = 0; i < apps_len; i++)
1097     {
1098       gchar *app_name, *app_exec;
1099       guint count;
1100       time_t stamp;
1101       RecentAppInfo *app_info;
1102       gboolean res;
1103       
1104       app_name = apps[i];
1105       
1106       res = g_bookmark_file_get_app_info (bookmarks, info->uri, app_name,
1107                                           &app_exec,
1108                                           &count,
1109                                           &stamp,
1110                                           NULL);
1111       if (!res)
1112         continue;
1113       
1114       app_info = recent_app_info_new (app_name);
1115       app_info->exec = app_exec;
1116       app_info->count = count;
1117       app_info->stamp = stamp;
1118       
1119       info->applications = g_slist_prepend (info->applications, app_info);
1120       g_hash_table_replace (info->apps_lookup, app_info->name, app_info);
1121     }
1122   
1123   g_strfreev (apps);
1124 }
1125
1126 /**
1127  * gtk_recent_manager_lookup_item:
1128  * @manager: a #GtkRecentManager
1129  * @uri: a URI
1130  * @error: a return location for a #GError, or %NULL
1131  *
1132  * Searches for a URI inside the recently used resources list, and
1133  * returns a structure containing informations about the resource
1134  * like its MIME type, or its display name.
1135  *
1136  * Return value: a #GtkRecentInfo structure containing information
1137  *   about the resource pointed by @uri, or %NULL if the URI was
1138  *   not registered in the recently used resources list.  Free with
1139  *   gtk_recent_info_unref().
1140  *
1141  * Since: 2.10
1142  */
1143 GtkRecentInfo *
1144 gtk_recent_manager_lookup_item (GtkRecentManager  *manager,
1145                                 const gchar       *uri,
1146                                 GError           **error)
1147 {
1148   GtkRecentManagerPrivate *priv;
1149   GtkRecentInfo *info = NULL;
1150   
1151   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), NULL);
1152   g_return_val_if_fail (uri != NULL, NULL);
1153   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1154   
1155   priv = manager->priv;
1156   if (!priv->recent_items)
1157     {
1158       priv->recent_items = g_bookmark_file_new ();
1159       priv->size = 0;
1160
1161       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1162                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1163                    _("Unable to find an item with URI '%s'"),
1164                    uri);
1165
1166       return NULL;
1167     }
1168   
1169   if (!g_bookmark_file_has_item (priv->recent_items, uri))
1170     {
1171       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1172                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1173                    _("Unable to find an item with URI '%s'"),
1174                    uri);
1175       return NULL;
1176     }
1177   
1178   info = gtk_recent_info_new (uri);
1179   g_return_val_if_fail (info != NULL, NULL);
1180   
1181   /* fill the RecentInfo structure with the data retrieved by our
1182    * parser object from the storage file 
1183    */
1184   build_recent_info (priv->recent_items, info);
1185
1186   return info;
1187 }
1188
1189 /**
1190  * gtk_recent_manager_move_item:
1191  * @manager: a #GtkRecentManager
1192  * @uri: the URI of a recently used resource
1193  * @new_uri: the new URI of the recently used resource, or %NULL to
1194  *    remove the item pointed by @uri in the list
1195  * @error: a return location for a #GError, or %NULL
1196  *
1197  * Changes the location of a recently used resource from @uri to @new_uri.
1198  * 
1199  * Please note that this function will not affect the resource pointed
1200  * by the URIs, but only the URI used in the recently used resources list.
1201  *
1202  * Return value: %TRUE on success.
1203  *
1204  * Since: 2.10
1205  */ 
1206 gboolean
1207 gtk_recent_manager_move_item (GtkRecentManager  *recent_manager,
1208                               const gchar       *uri,
1209                               const gchar       *new_uri,
1210                               GError           **error)
1211 {
1212   GtkRecentManagerPrivate *priv;
1213   GError *move_error;
1214   gboolean res;
1215   
1216   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (recent_manager), FALSE);
1217   g_return_val_if_fail (uri != NULL, FALSE);
1218   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1219   
1220   priv = recent_manager->priv;
1221
1222   if (!priv->recent_items)
1223     {
1224       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1225                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1226                    _("Unable to find an item with URI '%s'"),
1227                    uri);
1228       return FALSE;
1229     }
1230
1231   if (!g_bookmark_file_has_item (priv->recent_items, uri))
1232     {
1233       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1234                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1235                    _("Unable to find an item with URI '%s'"),
1236                    uri);
1237       return FALSE;
1238     }
1239   
1240   move_error = NULL;
1241   res = g_bookmark_file_move_item (priv->recent_items,
1242                                    uri, new_uri,
1243                                    &move_error);
1244   if (move_error)
1245     {
1246       g_error_free (move_error);
1247
1248       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1249                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1250                    _("Unable to find an item with URI '%s'"),
1251                    uri);
1252       return FALSE;
1253     }
1254   
1255   priv->is_dirty = TRUE;
1256
1257   gtk_recent_manager_changed (recent_manager);
1258   
1259   return TRUE;
1260 }
1261
1262 /**
1263  * gtk_recent_manager_get_items:
1264  * @manager: a #GtkRecentManager
1265  *
1266  * Gets the list of recently used resources.
1267  *
1268  * Return value: a list of newly allocated #GtkRecentInfo objects. Use
1269  *   gtk_recent_info_unref() on each item inside the list, and then
1270  *   free the list itself using g_list_free().
1271  *
1272  * Since: 2.10
1273  */
1274 GList *
1275 gtk_recent_manager_get_items (GtkRecentManager *manager)
1276 {
1277   GtkRecentManagerPrivate *priv;
1278   GList *retval = NULL;
1279   gchar **uris;
1280   gsize uris_len, i;
1281   
1282   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), NULL);
1283   
1284   priv = manager->priv;
1285   if (!priv->recent_items)
1286     return NULL;
1287
1288   if (priv->limit == 0)
1289     return NULL;
1290   
1291   uris = g_bookmark_file_get_uris (priv->recent_items, &uris_len);
1292   for (i = 0; i < uris_len; i++)
1293     {
1294       GtkRecentInfo *info;
1295       
1296       if (priv->limit != -1 && i == priv->limit)
1297         break;
1298       
1299       info = gtk_recent_info_new (uris[i]);
1300       build_recent_info (priv->recent_items, info);
1301       
1302       retval = g_list_prepend (retval, info);
1303     }
1304   
1305   g_strfreev (uris);
1306   
1307   return retval;
1308 }
1309
1310 static void
1311 purge_recent_items_list (GtkRecentManager  *manager,
1312                          GError           **error)
1313 {
1314   GtkRecentManagerPrivate *priv = manager->priv;
1315
1316   if (!priv->recent_items)
1317     return;
1318   
1319   g_bookmark_file_free (priv->recent_items);
1320   priv->recent_items = NULL;
1321       
1322   priv->recent_items = g_bookmark_file_new ();
1323   priv->size = 0;
1324   priv->is_dirty = TRUE;
1325       
1326   /* emit the changed signal, to ensure that the purge is written */
1327   gtk_recent_manager_changed (manager);
1328 }
1329
1330 /**
1331  * gtk_recent_manager_purge_items:
1332  * @manager: a #GtkRecentManager
1333  * @error: a return location for a #GError, or %NULL
1334  *
1335  * Purges every item from the recently used resources list.
1336  *
1337  * Return value: the number of items that have been removed from the
1338  *   recently used resources list.
1339  *
1340  * Since: 2.10
1341  */
1342 gint
1343 gtk_recent_manager_purge_items (GtkRecentManager  *manager,
1344                                 GError           **error)
1345 {
1346   GtkRecentManagerPrivate *priv;
1347   gint count, purged;
1348   
1349   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), -1);
1350
1351   priv = manager->priv;
1352   if (!priv->recent_items)
1353     return 0;
1354   
1355   count = g_bookmark_file_get_size (priv->recent_items);
1356   if (!count)
1357     return 0;
1358   
1359   purge_recent_items_list (manager, error);
1360   
1361   purged = count - g_bookmark_file_get_size (priv->recent_items);
1362
1363   return purged;
1364 }
1365
1366 static void
1367 gtk_recent_manager_changed (GtkRecentManager *recent_manager)
1368 {
1369   g_signal_emit (recent_manager, signal_changed, 0);
1370 }
1371
1372 static void
1373 gtk_recent_manager_clamp_to_age (GtkRecentManager *manager,
1374                                  gint              age)
1375 {
1376   GtkRecentManagerPrivate *priv = manager->priv;
1377   gchar **uris;
1378   gsize n_uris, i;
1379   time_t now;
1380
1381   if (G_UNLIKELY (!priv->recent_items))
1382     return;
1383
1384   now = time (NULL);
1385
1386   uris = g_bookmark_file_get_uris (priv->recent_items, &n_uris);
1387
1388   for (i = 0; i < n_uris; i++)
1389     {
1390       const gchar *uri = uris[i];
1391       time_t modified;
1392       gint item_age;
1393
1394       modified = g_bookmark_file_get_modified (priv->recent_items, uri, NULL);
1395       item_age = (gint) ((now - modified) / (60 * 60 * 24));
1396       if (item_age > age)
1397         g_bookmark_file_remove_item (priv->recent_items, uri, NULL);
1398     }
1399
1400   g_strfreev (uris);
1401 }
1402
1403 /*****************
1404  * GtkRecentInfo *
1405  *****************/
1406  
1407 GType
1408 gtk_recent_info_get_type (void)
1409 {
1410   static GType info_type = 0;
1411   
1412   if (!info_type)
1413     info_type = g_boxed_type_register_static (I_("GtkRecentInfo"),
1414                                               (GBoxedCopyFunc) gtk_recent_info_ref,
1415                                               (GBoxedFreeFunc) gtk_recent_info_unref);
1416   return info_type;
1417 }
1418
1419 static GtkRecentInfo *
1420 gtk_recent_info_new (const gchar *uri)
1421 {
1422   GtkRecentInfo *info;
1423
1424   g_assert (uri != NULL);
1425
1426   info = g_new0 (GtkRecentInfo, 1);
1427   info->uri = g_strdup (uri);
1428   
1429   info->applications = NULL;
1430   info->apps_lookup = g_hash_table_new (g_str_hash, g_str_equal);
1431   
1432   info->groups = NULL;
1433   
1434   info->ref_count = 1;
1435
1436   return info;
1437 }
1438
1439 static void
1440 gtk_recent_info_free (GtkRecentInfo *recent_info)
1441 {
1442   if (!recent_info)
1443     return;
1444
1445   g_free (recent_info->uri);
1446   g_free (recent_info->display_name);
1447   g_free (recent_info->description);
1448   g_free (recent_info->mime_type);
1449   
1450   if (recent_info->applications)
1451     {
1452       g_slist_foreach (recent_info->applications,
1453                        (GFunc) recent_app_info_free,
1454                        NULL);
1455       g_slist_free (recent_info->applications);
1456       
1457       recent_info->applications = NULL;
1458     }
1459   
1460   if (recent_info->apps_lookup)
1461     g_hash_table_destroy (recent_info->apps_lookup);
1462
1463   if (recent_info->groups)
1464     {
1465       g_slist_foreach (recent_info->groups,
1466                        (GFunc) g_free,
1467                        NULL);
1468       g_slist_free (recent_info->groups);
1469
1470       recent_info->groups = NULL;
1471     }
1472   
1473   if (recent_info->icon)
1474     g_object_unref (recent_info->icon);
1475
1476   g_free (recent_info);
1477 }
1478
1479 /**
1480  * gtk_recent_info_ref:
1481  * @info: a #GtkRecentInfo
1482  *
1483  * Increases the reference count of @recent_info by one.
1484  *
1485  * Return value: the recent info object with its reference count increased
1486  *   by one.
1487  *
1488  * Since: 2.10
1489  */
1490 GtkRecentInfo *
1491 gtk_recent_info_ref (GtkRecentInfo *info)
1492 {
1493   g_return_val_if_fail (info != NULL, NULL);
1494   g_return_val_if_fail (info->ref_count > 0, NULL);
1495   
1496   info->ref_count += 1;
1497     
1498   return info;
1499 }
1500
1501 /**
1502  * gtk_recent_info_unref:
1503  * @info: a #GtkRecentInfo
1504  *
1505  * Decreases the reference count of @info by one.  If the reference
1506  * count reaches zero, @info is deallocated, and the memory freed.
1507  *
1508  * Since: 2.10
1509  */
1510 void
1511 gtk_recent_info_unref (GtkRecentInfo *info)
1512 {
1513   g_return_if_fail (info != NULL);
1514   g_return_if_fail (info->ref_count > 0);
1515
1516   info->ref_count -= 1;
1517   
1518   if (info->ref_count == 0)
1519     gtk_recent_info_free (info);
1520 }
1521
1522 /**
1523  * gtk_recent_info_get_uri:
1524  * @info: a #GtkRecentInfo
1525  *
1526  * Gets the URI of the resource.
1527  *
1528  * Return value: the URI of the resource.  The returned string is
1529  *   owned by the recent manager, and should not be freed.
1530  *
1531  * Since: 2.10
1532  */
1533 G_CONST_RETURN gchar *
1534 gtk_recent_info_get_uri (GtkRecentInfo *info)
1535 {
1536   g_return_val_if_fail (info != NULL, NULL);
1537   
1538   return info->uri;
1539 }
1540
1541 /**
1542  * gtk_recent_info_get_display_name:
1543  * @info: a #GtkRecentInfo
1544  *
1545  * Gets the name of the resource.  If none has been defined, the basename
1546  * of the resource is obtained.
1547  *
1548  * Return value: the display name of the resource.  The returned string
1549  *   is owned by the recent manager, and should not be freed.
1550  *
1551  * Since: 2.10
1552  */
1553 G_CONST_RETURN gchar *
1554 gtk_recent_info_get_display_name (GtkRecentInfo *info)
1555 {
1556   g_return_val_if_fail (info != NULL, NULL);
1557   
1558   if (!info->display_name)
1559     info->display_name = gtk_recent_info_get_short_name (info);
1560   
1561   return info->display_name;
1562 }
1563
1564 /**
1565  * gtk_recent_info_get_description:
1566  * @info: a #GtkRecentInfo
1567  *
1568  * Gets the (short) description of the resource.
1569  *
1570  * Return value: the description of the resource.  The returned string
1571  *   is owned by the recent manager, and should not be freed.
1572  *
1573  * Since: 2.10
1574  **/
1575 G_CONST_RETURN gchar *
1576 gtk_recent_info_get_description (GtkRecentInfo *info)
1577 {
1578   g_return_val_if_fail (info != NULL, NULL);
1579   
1580   return info->description;
1581 }
1582
1583 /**
1584  * gtk_recent_info_get_mime_type:
1585  * @info: a #GtkRecentInfo
1586  *
1587  * Gets the MIME type of the resource.
1588  *
1589  * Return value: the MIME type of the resource.  The returned string
1590  *   is owned by the recent manager, and should not be freed.
1591  *
1592  * Since: 2.10
1593  */
1594 G_CONST_RETURN gchar *
1595 gtk_recent_info_get_mime_type (GtkRecentInfo *info)
1596 {
1597   g_return_val_if_fail (info != NULL, NULL);
1598   
1599   if (!info->mime_type)
1600     info->mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME);
1601   
1602   return info->mime_type;
1603 }
1604
1605 /**
1606  * gtk_recent_info_get_added:
1607  * @info: a #GtkRecentInfo
1608  *
1609  * Gets the timestamp (seconds from system's Epoch) when the resource
1610  * was added to the recently used resources list.
1611  *
1612  * Return value: the number of seconds elapsed from system's Epoch when
1613  *   the resource was added to the list, or -1 on failure.
1614  *
1615  * Since: 2.10
1616  */
1617 time_t
1618 gtk_recent_info_get_added (GtkRecentInfo *info)
1619 {
1620   g_return_val_if_fail (info != NULL, (time_t) -1);
1621   
1622   return info->added;
1623 }
1624
1625 /**
1626  * gtk_recent_info_get_modified:
1627  * @info: a #GtkRecentInfo
1628  *
1629  * Gets the timestamp (seconds from system's Epoch) when the resource
1630  * was last modified.
1631  *
1632  * Return value: the number of seconds elapsed from system's Epoch when
1633  *   the resource was last modified, or -1 on failure.
1634  *
1635  * Since: 2.10
1636  */
1637 time_t
1638 gtk_recent_info_get_modified (GtkRecentInfo *info)
1639 {
1640   g_return_val_if_fail (info != NULL, (time_t) -1);
1641   
1642   return info->modified;
1643 }
1644
1645 /**
1646  * gtk_recent_info_get_visited:
1647  * @info: a #GtkRecentInfo
1648  *
1649  * Gets the timestamp (seconds from system's Epoch) when the resource
1650  * was last visited.
1651  *
1652  * Return value: the number of seconds elapsed from system's Epoch when
1653  *   the resource was last visited, or -1 on failure.
1654  *
1655  * Since: 2.10
1656  */
1657 time_t
1658 gtk_recent_info_get_visited (GtkRecentInfo *info)
1659 {
1660   g_return_val_if_fail (info != NULL, (time_t) -1);
1661   
1662   return info->visited;
1663 }
1664
1665 /**
1666  * gtk_recent_info_get_private_hint:
1667  * @info: a #GtkRecentInfo
1668  *
1669  * Gets the value of the "private" flag.  Resources in the recently used
1670  * list that have this flag set to %TRUE should only be displayed by the
1671  * applications that have registered them.
1672  *
1673  * Return value: %TRUE if the private flag was found, %FALSE otherwise.
1674  *
1675  * Since: 2.10
1676  */
1677 gboolean
1678 gtk_recent_info_get_private_hint (GtkRecentInfo *info)
1679 {
1680   g_return_val_if_fail (info != NULL, FALSE);
1681   
1682   return info->is_private;
1683 }
1684
1685
1686 static RecentAppInfo *
1687 recent_app_info_new (const gchar *app_name)
1688 {
1689   RecentAppInfo *app_info;
1690
1691   g_assert (app_name != NULL);
1692   
1693   app_info = g_slice_new0 (RecentAppInfo);
1694   app_info->name = g_strdup (app_name);
1695   app_info->exec = NULL;
1696   app_info->count = 1;
1697   app_info->stamp = 0; 
1698   
1699   return app_info;
1700 }
1701
1702 static void
1703 recent_app_info_free (RecentAppInfo *app_info)
1704 {
1705   if (!app_info)
1706     return;
1707   
1708   g_free (app_info->name);
1709   g_free (app_info->exec);
1710   
1711   g_slice_free (RecentAppInfo, app_info);
1712 }
1713
1714 /**
1715  * gtk_recent_info_get_application_info:
1716  * @info: a #GtkRecentInfo
1717  * @app_name: the name of the application that has registered this item
1718  * @app_exec: return location for the string containing the command line
1719  * @count: return location for the number of times this item was registered
1720  * @time_: return location for the timestamp this item was last registered
1721  *    for this application
1722  *
1723  * Gets the data regarding the application that has registered the resource
1724  * pointed by @info.
1725  *
1726  * If the command line contains any escape characters defined inside the
1727  * storage specification, they will be expanded.
1728  *
1729  * Return value: %TRUE if an application with @app_name has registered this
1730  *   resource inside the recently used list, or %FALSE otherwise.  You should
1731  *   free the returned command line using g_free().
1732  *
1733  * Since: 2.10
1734  */
1735 gboolean
1736 gtk_recent_info_get_application_info (GtkRecentInfo  *info,
1737                                       const gchar    *app_name,
1738                                       gchar         **app_exec,
1739                                       guint          *count,
1740                                       time_t         *time_)
1741 {
1742   RecentAppInfo *ai;
1743   
1744   g_return_val_if_fail (info != NULL, FALSE);
1745   g_return_val_if_fail (app_name != NULL, FALSE);
1746   
1747   ai = (RecentAppInfo *) g_hash_table_lookup (info->apps_lookup,
1748                                               app_name);
1749   if (!ai)
1750     {
1751       g_warning ("No registered application with name '%s' "
1752                  "for item with URI '%s' found",
1753                  app_name,
1754                  info->uri);
1755       return FALSE;
1756     }
1757   
1758   if (app_exec)
1759     *app_exec = ai->exec;
1760   
1761   if (count)
1762     *count = ai->count;
1763   
1764   if (time_)
1765     *time_ = ai->stamp;
1766
1767   return TRUE;
1768 }
1769
1770 /**
1771  * gtk_recent_info_get_applications:
1772  * @info: a #GtkRecentInfo
1773  * @length: return location for the length of the returned list, or %NULL
1774  *
1775  * Retrieves the list of applications that have registered this resource.
1776  *
1777  * Return value: a newly allocated %NULL-terminated array of strings.
1778  *   Use g_strfreev() to free it.
1779  *
1780  * Since: 2.10
1781  */                           
1782 gchar **
1783 gtk_recent_info_get_applications (GtkRecentInfo *info,
1784                                   gsize         *length)
1785 {
1786   GSList *l;
1787   gchar **retval;
1788   gsize n_apps, i;
1789   
1790   g_return_val_if_fail (info != NULL, NULL);
1791   
1792   if (!info->applications)
1793     {
1794       if (length)
1795         *length = 0;
1796       
1797       return NULL;    
1798     }
1799   
1800   n_apps = g_slist_length (info->applications);
1801   
1802   retval = g_new0 (gchar *, n_apps + 1);
1803   
1804   for (l = info->applications, i = 0;
1805        l != NULL;
1806        l = l->next)
1807     {
1808       RecentAppInfo *ai = (RecentAppInfo *) l->data;
1809       
1810       g_assert (ai != NULL);
1811       
1812       retval[i++] = g_strdup (ai->name);
1813     }
1814   retval[i] = NULL;
1815   
1816   if (length)
1817     *length = i;
1818   
1819   return retval;
1820 }
1821
1822 /**
1823  * gtk_recent_info_has_application:
1824  * @info: a #GtkRecentInfo
1825  * @app_name: a string containing an application name
1826  *
1827  * Checks whether an application registered this resource using @app_name.
1828  *
1829  * Return value: %TRUE if an application with name @app_name was found,
1830  *   %FALSE otherwise.
1831  *
1832  * Since: 2.10
1833  */
1834 gboolean
1835 gtk_recent_info_has_application (GtkRecentInfo *info,
1836                                  const gchar   *app_name)
1837 {
1838   g_return_val_if_fail (info != NULL, FALSE);
1839   g_return_val_if_fail (app_name != NULL, FALSE);
1840   
1841   return (NULL != g_hash_table_lookup (info->apps_lookup, app_name));
1842 }
1843
1844 /**
1845  * gtk_recent_info_last_application:
1846  * @info: a #GtkRecentInfo
1847  *
1848  * Gets the name of the last application that have registered the
1849  * recently used resource represented by @info.
1850  *
1851  * Return value: an application name.  Use g_free() to free it.
1852  *
1853  * Since: 2.10
1854  */
1855 gchar *
1856 gtk_recent_info_last_application (GtkRecentInfo  *info)
1857 {
1858   GSList *l;
1859   time_t last_stamp = (time_t) -1;
1860   gchar *name = NULL;
1861   
1862   g_return_val_if_fail (info != NULL, NULL);
1863   
1864   for (l = info->applications; l != NULL; l = l->next)
1865     {
1866       RecentAppInfo *ai = (RecentAppInfo *) l->data;
1867       
1868       if (ai->stamp > last_stamp)
1869         {
1870           name = ai->name;
1871           last_stamp = ai->stamp;
1872         }
1873     }
1874   
1875   return g_strdup (name);
1876 }
1877
1878 static GdkPixbuf *
1879 get_icon_for_mime_type (const char *mime_type,
1880                         gint        pixel_size)
1881 {
1882   GtkIconTheme *icon_theme;
1883   char *content_type;
1884   GIcon *icon;
1885   GtkIconInfo *info;
1886   GdkPixbuf *pixbuf;
1887
1888   icon_theme = gtk_icon_theme_get_default ();
1889
1890   content_type = g_content_type_from_mime_type (mime_type);
1891
1892   if (!content_type)
1893     return NULL;
1894
1895   icon = g_content_type_get_icon (content_type);
1896   info = gtk_icon_theme_lookup_by_gicon (icon_theme, 
1897                                          icon, 
1898                                          pixel_size, 
1899                                          GTK_ICON_LOOKUP_USE_BUILTIN);
1900   g_free (content_type);
1901   g_object_unref (icon);
1902
1903   if (!info)
1904     return NULL;
1905
1906   pixbuf = gtk_icon_info_load_icon (info, NULL);
1907   gtk_icon_info_free (info);
1908
1909   return pixbuf;
1910 }
1911
1912 static GdkPixbuf *
1913 get_icon_fallback (const gchar *icon_name,
1914                    gint         size)
1915 {
1916   GtkIconTheme *icon_theme;
1917   GdkPixbuf *retval;
1918
1919   icon_theme = gtk_icon_theme_get_default ();
1920   
1921   retval = gtk_icon_theme_load_icon (icon_theme, icon_name,
1922                                      size,
1923                                      GTK_ICON_LOOKUP_USE_BUILTIN,
1924                                      NULL);
1925   g_assert (retval != NULL);
1926   
1927   return retval; 
1928 }
1929
1930 /**
1931  * gtk_recent_info_get_icon:
1932  * @info: a #GtkRecentInfo
1933  * @size: the size of the icon in pixels
1934  *
1935  * Retrieves the icon of size @size associated to the resource MIME type.
1936  *
1937  * Return value: a #GdkPixbuf containing the icon, or %NULL. Use
1938  *   g_object_unref() when finished using the icon.
1939  *
1940  * Since: 2.10
1941  */
1942 GdkPixbuf *
1943 gtk_recent_info_get_icon (GtkRecentInfo *info,
1944                           gint           size)
1945 {
1946   GdkPixbuf *retval = NULL;
1947   
1948   g_return_val_if_fail (info != NULL, NULL);
1949   
1950   if (info->mime_type)
1951     retval = get_icon_for_mime_type (info->mime_type, size);
1952
1953   /* this function should never fail */  
1954   if (!retval)
1955     {
1956       if (info->mime_type &&
1957           strcmp (info->mime_type, "x-directory/normal") == 0)
1958         retval = get_icon_fallback (GTK_STOCK_DIRECTORY, size);
1959       else
1960         retval = get_icon_fallback (GTK_STOCK_FILE, size);
1961     }
1962   
1963   return retval;
1964 }
1965
1966 /**
1967  * gtk_recent_info_is_local:
1968  * @info: a #GtkRecentInfo
1969  *
1970  * Checks whether the resource is local or not by looking at the
1971  * scheme of its URI.
1972  *
1973  * Return value: %TRUE if the resource is local.
1974  *
1975  * Since: 2.10
1976  */
1977 gboolean
1978 gtk_recent_info_is_local (GtkRecentInfo *info)
1979 {
1980   g_return_val_if_fail (info != NULL, FALSE);
1981   
1982   return has_case_prefix (info->uri, "file:/");
1983 }
1984
1985 /**
1986  * gtk_recent_info_exists:
1987  * @info: a #GtkRecentInfo
1988  *
1989  * Checks whether the resource pointed by @info still exists.  At
1990  * the moment this check is done only on resources pointing to local files.
1991  *
1992  * Return value: %TRUE if the resource exists
1993  *
1994  * Since: 2.10
1995  */
1996 gboolean
1997 gtk_recent_info_exists (GtkRecentInfo *info)
1998 {
1999   gchar *filename;
2000   struct stat stat_buf;
2001   gboolean retval = FALSE;
2002   
2003   g_return_val_if_fail (info != NULL, FALSE);
2004   
2005   /* we guarantee only local resources */
2006   if (!gtk_recent_info_is_local (info))
2007     return FALSE;
2008   
2009   filename = g_filename_from_uri (info->uri, NULL, NULL);
2010   if (filename)
2011     {
2012       if (stat (filename, &stat_buf) == 0)
2013         retval = TRUE;
2014      
2015       g_free (filename);
2016     }
2017   
2018   return retval;
2019 }
2020
2021 /**
2022  * gtk_recent_info_match:
2023  * @info_a: a #GtkRecentInfo
2024  * @info_b: a #GtkRecentInfo
2025  *
2026  * Checks whether two #GtkRecentInfo structures point to the same
2027  * resource.
2028  *
2029  * Return value: %TRUE if both #GtkRecentInfo structures point to se same
2030  *   resource, %FALSE otherwise.
2031  *
2032  * Since: 2.10
2033  */
2034 gboolean
2035 gtk_recent_info_match (GtkRecentInfo *info_a,
2036                        GtkRecentInfo *info_b)
2037 {
2038   g_return_val_if_fail (info_a != NULL, FALSE);
2039   g_return_val_if_fail (info_b != NULL, FALSE);
2040   
2041   return (0 == strcmp (info_a->uri, info_b->uri));
2042 }
2043
2044 /* taken from gnome-vfs-uri.c */
2045 static const gchar *
2046 get_method_string (const gchar  *substring, 
2047                    gchar       **method_string)
2048 {
2049   const gchar *p;
2050   char *method;
2051         
2052   for (p = substring;
2053        g_ascii_isalnum (*p) || *p == '+' || *p == '-' || *p == '.';
2054        p++)
2055     ;
2056
2057   if (*p == ':'
2058 #ifdef G_OS_WIN32
2059                 &&
2060       !(p == substring + 1 && g_ascii_isalpha (*substring))
2061 #endif
2062                                                            )
2063     {
2064       /* Found toplevel method specification.  */
2065       method = g_strndup (substring, p - substring);
2066       *method_string = g_ascii_strdown (method, -1);
2067       g_free (method);
2068       p++;
2069     }
2070   else
2071     {
2072       *method_string = g_strdup ("file");
2073       p = substring;
2074     }
2075   
2076   return p;
2077 }
2078
2079 /* Stolen from gnome_vfs_make_valid_utf8() */
2080 static char *
2081 make_valid_utf8 (const char *name)
2082 {
2083   GString *string;
2084   const char *remainder, *invalid;
2085   int remaining_bytes, valid_bytes;
2086
2087   string = NULL;
2088   remainder = name;
2089   remaining_bytes = name ? strlen (name) : 0;
2090
2091   while (remaining_bytes != 0)
2092     {
2093       if (g_utf8_validate (remainder, remaining_bytes, &invalid))
2094         break;
2095       
2096       valid_bytes = invalid - remainder;
2097       
2098       if (string == NULL)
2099         string = g_string_sized_new (remaining_bytes);
2100       
2101       g_string_append_len (string, remainder, valid_bytes);
2102       g_string_append_c (string, '?');
2103       
2104       remaining_bytes -= valid_bytes + 1;
2105       remainder = invalid + 1;
2106     }
2107   
2108   if (string == NULL)
2109     return g_strdup (name);
2110
2111   g_string_append (string, remainder);
2112   g_assert (g_utf8_validate (string->str, -1, NULL));
2113
2114   return g_string_free (string, FALSE);
2115 }
2116
2117 static gchar *
2118 get_uri_shortname_for_display (const gchar *uri)
2119 {
2120   gchar *name = NULL;
2121   gboolean validated = FALSE;
2122
2123   if (has_case_prefix (uri, "file:/"))
2124     {
2125       gchar *local_file;
2126       
2127       local_file = g_filename_from_uri (uri, NULL, NULL);
2128       
2129       if (local_file)
2130         {
2131           name = g_filename_display_basename (local_file);
2132           validated = TRUE;
2133         }
2134                 
2135       g_free (local_file);
2136     } 
2137   
2138   if (!name)
2139     {
2140       gchar *method;
2141       gchar *local_file;
2142       const gchar *rest;
2143       
2144       rest = get_method_string (uri, &method);
2145       local_file = g_filename_display_basename (rest);
2146       
2147       name = g_strconcat (method, ": ", local_file, NULL);
2148       
2149       g_free (local_file);
2150       g_free (method);
2151     }
2152   
2153   g_assert (name != NULL);
2154   
2155   if (!validated && !g_utf8_validate (name, -1, NULL))
2156     {
2157       gchar *utf8_name;
2158       
2159       utf8_name = make_valid_utf8 (name);
2160       g_free (name);
2161       
2162       name = utf8_name;
2163     }
2164
2165   return name;
2166 }
2167
2168 /**
2169  * gtk_recent_info_get_short_name:
2170  * @info: an #GtkRecentInfo
2171  *
2172  * Computes a valid UTF-8 string that can be used as the name of the item in a
2173  * menu or list.  For example, calling this function on an item that refers to
2174  * "file:///foo/bar.txt" will yield "bar.txt".
2175  *
2176  * Return value: A newly-allocated string in UTF-8 encoding; free it with
2177  *   g_free().
2178  *
2179  * Since: 2.10
2180  */
2181 gchar *
2182 gtk_recent_info_get_short_name (GtkRecentInfo *info)
2183 {
2184   gchar *short_name;
2185
2186   g_return_val_if_fail (info != NULL, NULL);
2187
2188   if (info->uri == NULL)
2189     return NULL;
2190
2191   short_name = get_uri_shortname_for_display (info->uri);
2192
2193   return short_name;
2194 }
2195
2196 /**
2197  * gtk_recent_info_get_uri_display:
2198  * @info: a #GtkRecentInfo
2199  *
2200  * Gets a displayable version of the resource's URI.  If the resource
2201  * is local, it returns a local path; if the resource is not local,
2202  * it returns the UTF-8 encoded content of gtk_recent_info_get_uri().
2203  *
2204  * Return value: a newly allocated UTF-8 string containing the
2205  *   resource's URI or %NULL. Use g_free() when done using it.
2206  *
2207  * Since: 2.10
2208  */
2209 gchar *
2210 gtk_recent_info_get_uri_display (GtkRecentInfo *info)
2211 {
2212   gchar *retval;
2213   
2214   g_return_val_if_fail (info != NULL, NULL);
2215
2216   retval = NULL;
2217   if (gtk_recent_info_is_local (info))
2218     {
2219       gchar *filename;
2220
2221       filename = g_filename_from_uri (info->uri, NULL, NULL);
2222       if (!filename)
2223         return NULL;
2224       
2225       retval = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
2226       g_free (filename);
2227     }
2228   else
2229     {
2230       retval = make_valid_utf8 (info->uri);
2231     }
2232
2233   return retval;
2234 }
2235
2236 /**
2237  * gtk_recent_info_get_age:
2238  * @info: a #GtkRecentInfo
2239  *
2240  * Gets the number of days elapsed since the last update of the resource
2241  * pointed by @info.
2242  *
2243  * Return value: a positive integer containing the number of days elapsed
2244  *   since the time this resource was last modified.  
2245  *
2246  * Since: 2.10
2247  */
2248 gint
2249 gtk_recent_info_get_age (GtkRecentInfo *info)
2250 {
2251   time_t now, delta;
2252   gint retval;
2253
2254   g_return_val_if_fail (info != NULL, -1);
2255
2256   now = time (NULL);
2257   
2258   delta = now - info->modified;
2259   
2260   retval = (gint) (delta / (60 * 60 * 24));
2261   
2262   return retval;
2263 }
2264
2265 /**
2266  * gtk_recent_info_get_groups:
2267  * @info: a #GtkRecentInfo
2268  * @length: return location for the number of groups returned, or %NULL
2269  *
2270  * Returns all groups registered for the recently used item @info.  The
2271  * array of returned group names will be %NULL terminated, so length might
2272  * optionally be %NULL.
2273  *
2274  * Return value: a newly allocated %NULL terminated array of strings.  Use
2275  *   g_strfreev() to free it.
2276  *
2277  * Since: 2.10
2278  */
2279 gchar **
2280 gtk_recent_info_get_groups (GtkRecentInfo *info,
2281                             gsize         *length)
2282 {
2283   GSList *l;
2284   gchar **retval;
2285   gsize n_groups, i;
2286   
2287   g_return_val_if_fail (info != NULL, NULL);
2288   
2289   if (!info->groups)
2290     {
2291       if (length)
2292         *length = 0;
2293       
2294       return NULL;
2295     }
2296   
2297   n_groups = g_slist_length (info->groups);
2298   
2299   retval = g_new0 (gchar *, n_groups + 1);
2300   
2301   for (l = info->groups, i = 0;
2302        l != NULL;
2303        l = l->next)
2304     {
2305       gchar *group_name = (gchar *) l->data;
2306       
2307       g_assert (group_name != NULL);
2308       
2309       retval[i++] = g_strdup (group_name);
2310     }
2311   retval[i] = NULL;
2312   
2313   if (length)
2314     *length = i;
2315   
2316   return retval;
2317 }
2318
2319 /**
2320  * gtk_recent_info_has_group:
2321  * @info: a #GtkRecentInfo
2322  * @group_name: name of a group
2323  *
2324  * Checks whether @group_name appears inside the groups registered for the
2325  * recently used item @info.
2326  *
2327  * Return value: %TRUE if the group was found.
2328  *
2329  * Since: 2.10
2330  */
2331 gboolean
2332 gtk_recent_info_has_group (GtkRecentInfo *info,
2333                            const gchar   *group_name)
2334 {
2335   GSList *l;
2336   
2337   g_return_val_if_fail (info != NULL, FALSE);
2338   g_return_val_if_fail (group_name != NULL, FALSE);
2339
2340   if (!info->groups)
2341     return FALSE;
2342
2343   for (l = info->groups; l != NULL; l = l->next)
2344     {
2345       gchar *g = (gchar *) l->data;
2346
2347       if (strcmp (g, group_name) == 0)
2348         return TRUE;
2349     }
2350
2351   return FALSE;
2352 }
2353
2354 /*
2355  * _gtk_recent_manager_sync:
2356  * 
2357  * Private function for synchronising the recent manager singleton.
2358  */
2359 void
2360 _gtk_recent_manager_sync (void)
2361 {
2362   if (recent_manager_singleton)
2363     {
2364       /* force a dump of the contents of the recent manager singleton */
2365       recent_manager_singleton->priv->is_dirty = TRUE;
2366       gtk_recent_manager_real_changed (recent_manager_singleton);
2367     }
2368 }
2369
2370 #define __GTK_RECENT_MANAGER_C__
2371 #include "gtkaliasdef.c"