]> Pileus Git - ~andy/gtk/blob - gtk/gtkrecentmanager.c
Fix two potential critical warnings. Bug #539470.
[~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_new0 (RecentAppInfo, 1);
1694   app_info->name = g_strdup (app_name);
1695   app_info->exec = NULL;
1696   app_info->count = 1;
1697   app_info->stamp = time (NULL);
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   
1710   g_free (app_info->exec);
1711   
1712   g_free (app_info);
1713 }
1714
1715 /**
1716  * gtk_recent_info_get_application_info:
1717  * @info: a #GtkRecentInfo
1718  * @app_name: the name of the application that has registered this item
1719  * @app_exec: return location for the string containing the command line
1720  * @count: return location for the number of times this item was registered
1721  * @time_: return location for the timestamp this item was last registered
1722  *    for this application
1723  *
1724  * Gets the data regarding the application that has registered the resource
1725  * pointed by @info.
1726  *
1727  * If the command line contains any escape characters defined inside the
1728  * storage specification, they will be expanded.
1729  *
1730  * Return value: %TRUE if an application with @app_name has registered this
1731  *   resource inside the recently used list, or %FALSE otherwise.  You should
1732  *   free the returned command line using g_free().
1733  *
1734  * Since: 2.10
1735  */
1736 gboolean
1737 gtk_recent_info_get_application_info (GtkRecentInfo  *info,
1738                                       const gchar    *app_name,
1739                                       gchar         **app_exec,
1740                                       guint          *count,
1741                                       time_t         *time_)
1742 {
1743   RecentAppInfo *ai;
1744   
1745   g_return_val_if_fail (info != NULL, FALSE);
1746   g_return_val_if_fail (app_name != NULL, FALSE);
1747   
1748   ai = (RecentAppInfo *) g_hash_table_lookup (info->apps_lookup,
1749                                               app_name);
1750   if (!ai)
1751     {
1752       g_warning ("No registered application with name '%s' "
1753                  "for item with URI '%s' found",
1754                  app_name,
1755                  info->uri);
1756       return FALSE;
1757     }
1758   
1759   if (app_exec)
1760     *app_exec = ai->exec;
1761   
1762   if (count)
1763     *count = ai->count;
1764   
1765   if (time_)
1766     *time_ = ai->stamp;
1767
1768   return TRUE;
1769 }
1770
1771 /**
1772  * gtk_recent_info_get_applications:
1773  * @info: a #GtkRecentInfo
1774  * @length: return location for the length of the returned list, or %NULL
1775  *
1776  * Retrieves the list of applications that have registered this resource.
1777  *
1778  * Return value: a newly allocated %NULL-terminated array of strings.
1779  *   Use g_strfreev() to free it.
1780  *
1781  * Since: 2.10
1782  */                           
1783 gchar **
1784 gtk_recent_info_get_applications (GtkRecentInfo *info,
1785                                   gsize         *length)
1786 {
1787   GSList *l;
1788   gchar **retval;
1789   gsize n_apps, i;
1790   
1791   g_return_val_if_fail (info != NULL, NULL);
1792   
1793   if (!info->applications)
1794     {
1795       if (length)
1796         *length = 0;
1797       
1798       return NULL;    
1799     }
1800   
1801   n_apps = g_slist_length (info->applications);
1802   
1803   retval = g_new0 (gchar *, n_apps + 1);
1804   
1805   for (l = info->applications, i = 0;
1806        l != NULL;
1807        l = l->next)
1808     {
1809       RecentAppInfo *ai = (RecentAppInfo *) l->data;
1810       
1811       g_assert (ai != NULL);
1812       
1813       retval[i++] = g_strdup (ai->name);
1814     }
1815   retval[i] = NULL;
1816   
1817   if (length)
1818     *length = i;
1819   
1820   return retval;
1821 }
1822
1823 /**
1824  * gtk_recent_info_has_application:
1825  * @info: a #GtkRecentInfo
1826  * @app_name: a string containing an application name
1827  *
1828  * Checks whether an application registered this resource using @app_name.
1829  *
1830  * Return value: %TRUE if an application with name @app_name was found,
1831  *   %FALSE otherwise.
1832  *
1833  * Since: 2.10
1834  */
1835 gboolean
1836 gtk_recent_info_has_application (GtkRecentInfo *info,
1837                                  const gchar   *app_name)
1838 {
1839   g_return_val_if_fail (info != NULL, FALSE);
1840   g_return_val_if_fail (app_name != NULL, FALSE);
1841   
1842   return (NULL != g_hash_table_lookup (info->apps_lookup, app_name));
1843 }
1844
1845 /**
1846  * gtk_recent_info_last_application:
1847  * @info: a #GtkRecentInfo
1848  *
1849  * Gets the name of the last application that have registered the
1850  * recently used resource represented by @info.
1851  *
1852  * Return value: an application name.  Use g_free() to free it.
1853  *
1854  * Since: 2.10
1855  */
1856 gchar *
1857 gtk_recent_info_last_application (GtkRecentInfo  *info)
1858 {
1859   GSList *l;
1860   time_t last_stamp = (time_t) -1;
1861   gchar *name = NULL;
1862   
1863   g_return_val_if_fail (info != NULL, NULL);
1864   
1865   for (l = info->applications; l != NULL; l = l->next)
1866     {
1867       RecentAppInfo *ai = (RecentAppInfo *) l->data;
1868       
1869       if (ai->stamp > last_stamp)
1870         {
1871           name = ai->name;
1872           last_stamp = ai->stamp;
1873         }
1874     }
1875   
1876   return g_strdup (name);
1877 }
1878
1879 static GdkPixbuf *
1880 get_icon_for_mime_type (const char *mime_type,
1881                         gint        pixel_size)
1882 {
1883   GtkIconTheme *icon_theme;
1884   char *content_type;
1885   GIcon *icon;
1886   GtkIconInfo *info;
1887   GdkPixbuf *pixbuf;
1888
1889   icon_theme = gtk_icon_theme_get_default ();
1890
1891   content_type = g_content_type_from_mime_type (mime_type);
1892
1893   if (!content_type)
1894     return NULL;
1895
1896   icon = g_content_type_get_icon (content_type);
1897   info = gtk_icon_theme_lookup_by_gicon (icon_theme, 
1898                                          icon, 
1899                                          pixel_size, 
1900                                          GTK_ICON_LOOKUP_USE_BUILTIN);
1901   g_free (content_type);
1902   g_object_unref (icon);
1903
1904   if (!info)
1905     return NULL;
1906
1907   pixbuf = gtk_icon_info_load_icon (info, NULL);
1908   gtk_icon_info_free (info);
1909
1910   return pixbuf;
1911 }
1912
1913 static GdkPixbuf *
1914 get_icon_fallback (const gchar *icon_name,
1915                    gint         size)
1916 {
1917   GtkIconTheme *icon_theme;
1918   GdkPixbuf *retval;
1919
1920   icon_theme = gtk_icon_theme_get_default ();
1921   
1922   retval = gtk_icon_theme_load_icon (icon_theme, icon_name,
1923                                      size,
1924                                      GTK_ICON_LOOKUP_USE_BUILTIN,
1925                                      NULL);
1926   g_assert (retval != NULL);
1927   
1928   return retval; 
1929 }
1930
1931 /**
1932  * gtk_recent_info_get_icon:
1933  * @info: a #GtkRecentInfo
1934  * @size: the size of the icon in pixels
1935  *
1936  * Retrieves the icon of size @size associated to the resource MIME type.
1937  *
1938  * Return value: a #GdkPixbuf containing the icon, or %NULL. Use
1939  *   g_object_unref() when finished using the icon.
1940  *
1941  * Since: 2.10
1942  */
1943 GdkPixbuf *
1944 gtk_recent_info_get_icon (GtkRecentInfo *info,
1945                           gint           size)
1946 {
1947   GdkPixbuf *retval = NULL;
1948   
1949   g_return_val_if_fail (info != NULL, NULL);
1950   
1951   if (info->mime_type)
1952     retval = get_icon_for_mime_type (info->mime_type, size);
1953
1954   /* this function should never fail */  
1955   if (!retval)
1956     {
1957       if (info->mime_type &&
1958           strcmp (info->mime_type, "x-directory/normal") == 0)
1959         retval = get_icon_fallback (GTK_STOCK_DIRECTORY, size);
1960       else
1961         retval = get_icon_fallback (GTK_STOCK_FILE, size);
1962     }
1963   
1964   return retval;
1965 }
1966
1967 /**
1968  * gtk_recent_info_is_local:
1969  * @info: a #GtkRecentInfo
1970  *
1971  * Checks whether the resource is local or not by looking at the
1972  * scheme of its URI.
1973  *
1974  * Return value: %TRUE if the resource is local.
1975  *
1976  * Since: 2.10
1977  */
1978 gboolean
1979 gtk_recent_info_is_local (GtkRecentInfo *info)
1980 {
1981   g_return_val_if_fail (info != NULL, FALSE);
1982   
1983   return has_case_prefix (info->uri, "file:/");
1984 }
1985
1986 /**
1987  * gtk_recent_info_exists:
1988  * @info: a #GtkRecentInfo
1989  *
1990  * Checks whether the resource pointed by @info still exists.  At
1991  * the moment this check is done only on resources pointing to local files.
1992  *
1993  * Return value: %TRUE if the resource exists
1994  *
1995  * Since: 2.10
1996  */
1997 gboolean
1998 gtk_recent_info_exists (GtkRecentInfo *info)
1999 {
2000   gchar *filename;
2001   struct stat stat_buf;
2002   gboolean retval = FALSE;
2003   
2004   g_return_val_if_fail (info != NULL, FALSE);
2005   
2006   /* we guarantee only local resources */
2007   if (!gtk_recent_info_is_local (info))
2008     return FALSE;
2009   
2010   filename = g_filename_from_uri (info->uri, NULL, NULL);
2011   if (filename)
2012     {
2013       if (stat (filename, &stat_buf) == 0)
2014         retval = TRUE;
2015      
2016       g_free (filename);
2017     }
2018   
2019   return retval;
2020 }
2021
2022 /**
2023  * gtk_recent_info_match:
2024  * @info_a: a #GtkRecentInfo
2025  * @info_b: a #GtkRecentInfo
2026  *
2027  * Checks whether two #GtkRecentInfo structures point to the same
2028  * resource.
2029  *
2030  * Return value: %TRUE if both #GtkRecentInfo structures point to se same
2031  *   resource, %FALSE otherwise.
2032  *
2033  * Since: 2.10
2034  */
2035 gboolean
2036 gtk_recent_info_match (GtkRecentInfo *info_a,
2037                        GtkRecentInfo *info_b)
2038 {
2039   g_return_val_if_fail (info_a != NULL, FALSE);
2040   g_return_val_if_fail (info_b != NULL, FALSE);
2041   
2042   return (0 == strcmp (info_a->uri, info_b->uri));
2043 }
2044
2045 /* taken from gnome-vfs-uri.c */
2046 static const gchar *
2047 get_method_string (const gchar  *substring, 
2048                    gchar       **method_string)
2049 {
2050   const gchar *p;
2051   char *method;
2052         
2053   for (p = substring;
2054        g_ascii_isalnum (*p) || *p == '+' || *p == '-' || *p == '.';
2055        p++)
2056     ;
2057
2058   if (*p == ':'
2059 #ifdef G_OS_WIN32
2060                 &&
2061       !(p == substring + 1 && g_ascii_isalpha (*substring))
2062 #endif
2063                                                            )
2064     {
2065       /* Found toplevel method specification.  */
2066       method = g_strndup (substring, p - substring);
2067       *method_string = g_ascii_strdown (method, -1);
2068       g_free (method);
2069       p++;
2070     }
2071   else
2072     {
2073       *method_string = g_strdup ("file");
2074       p = substring;
2075     }
2076   
2077   return p;
2078 }
2079
2080 /* Stolen from gnome_vfs_make_valid_utf8() */
2081 static char *
2082 make_valid_utf8 (const char *name)
2083 {
2084   GString *string;
2085   const char *remainder, *invalid;
2086   int remaining_bytes, valid_bytes;
2087
2088   string = NULL;
2089   remainder = name;
2090   remaining_bytes = name ? strlen (name) : 0;
2091
2092   while (remaining_bytes != 0)
2093     {
2094       if (g_utf8_validate (remainder, remaining_bytes, &invalid))
2095         break;
2096       
2097       valid_bytes = invalid - remainder;
2098       
2099       if (string == NULL)
2100         string = g_string_sized_new (remaining_bytes);
2101       
2102       g_string_append_len (string, remainder, valid_bytes);
2103       g_string_append_c (string, '?');
2104       
2105       remaining_bytes -= valid_bytes + 1;
2106       remainder = invalid + 1;
2107     }
2108   
2109   if (string == NULL)
2110     return g_strdup (name);
2111
2112   g_string_append (string, remainder);
2113   g_assert (g_utf8_validate (string->str, -1, NULL));
2114
2115   return g_string_free (string, FALSE);
2116 }
2117
2118 static gchar *
2119 get_uri_shortname_for_display (const gchar *uri)
2120 {
2121   gchar *name = NULL;
2122   gboolean validated = FALSE;
2123
2124   if (has_case_prefix (uri, "file:/"))
2125     {
2126       gchar *local_file;
2127       
2128       local_file = g_filename_from_uri (uri, NULL, NULL);
2129       
2130       if (local_file)
2131         {
2132           name = g_filename_display_basename (local_file);
2133           validated = TRUE;
2134         }
2135                 
2136       g_free (local_file);
2137     } 
2138   
2139   if (!name)
2140     {
2141       gchar *method;
2142       gchar *local_file;
2143       const gchar *rest;
2144       
2145       rest = get_method_string (uri, &method);
2146       local_file = g_filename_display_basename (rest);
2147       
2148       name = g_strconcat (method, ": ", local_file, NULL);
2149       
2150       g_free (local_file);
2151       g_free (method);
2152     }
2153   
2154   g_assert (name != NULL);
2155   
2156   if (!validated && !g_utf8_validate (name, -1, NULL))
2157     {
2158       gchar *utf8_name;
2159       
2160       utf8_name = make_valid_utf8 (name);
2161       g_free (name);
2162       
2163       name = utf8_name;
2164     }
2165
2166   return name;
2167 }
2168
2169 /**
2170  * gtk_recent_info_get_short_name:
2171  * @info: an #GtkRecentInfo
2172  *
2173  * Computes a valid UTF-8 string that can be used as the name of the item in a
2174  * menu or list.  For example, calling this function on an item that refers to
2175  * "file:///foo/bar.txt" will yield "bar.txt".
2176  *
2177  * Return value: A newly-allocated string in UTF-8 encoding; free it with
2178  *   g_free().
2179  *
2180  * Since: 2.10
2181  */
2182 gchar *
2183 gtk_recent_info_get_short_name (GtkRecentInfo *info)
2184 {
2185   gchar *short_name;
2186
2187   g_return_val_if_fail (info != NULL, NULL);
2188
2189   if (info->uri == NULL)
2190     return NULL;
2191
2192   short_name = get_uri_shortname_for_display (info->uri);
2193
2194   return short_name;
2195 }
2196
2197 /**
2198  * gtk_recent_info_get_uri_display:
2199  * @info: a #GtkRecentInfo
2200  *
2201  * Gets a displayable version of the resource's URI.  If the resource
2202  * is local, it returns a local path; if the resource is not local,
2203  * it returns the UTF-8 encoded content of gtk_recent_info_get_uri().
2204  *
2205  * Return value: a newly allocated UTF-8 string containing the
2206  *   resource's URI or %NULL. Use g_free() when done using it.
2207  *
2208  * Since: 2.10
2209  */
2210 gchar *
2211 gtk_recent_info_get_uri_display (GtkRecentInfo *info)
2212 {
2213   gchar *retval;
2214   
2215   g_return_val_if_fail (info != NULL, NULL);
2216
2217   retval = NULL;
2218   if (gtk_recent_info_is_local (info))
2219     {
2220       gchar *filename;
2221
2222       filename = g_filename_from_uri (info->uri, NULL, NULL);
2223       if (!filename)
2224         return NULL;
2225       
2226       retval = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
2227       g_free (filename);
2228     }
2229   else
2230     {
2231       retval = make_valid_utf8 (info->uri);
2232     }
2233
2234   return retval;
2235 }
2236
2237 /**
2238  * gtk_recent_info_get_age:
2239  * @info: a #GtkRecentInfo
2240  *
2241  * Gets the number of days elapsed since the last update of the resource
2242  * pointed by @info.
2243  *
2244  * Return value: a positive integer containing the number of days elapsed
2245  *   since the time this resource was last modified.  
2246  *
2247  * Since: 2.10
2248  */
2249 gint
2250 gtk_recent_info_get_age (GtkRecentInfo *info)
2251 {
2252   time_t now, delta;
2253   gint retval;
2254
2255   g_return_val_if_fail (info != NULL, -1);
2256
2257   now = time (NULL);
2258   
2259   delta = now - info->modified;
2260   
2261   retval = (gint) (delta / (60 * 60 * 24));
2262   
2263   return retval;
2264 }
2265
2266 /**
2267  * gtk_recent_info_get_groups:
2268  * @info: a #GtkRecentInfo
2269  * @length: return location for the number of groups returned, or %NULL
2270  *
2271  * Returns all groups registered for the recently used item @info.  The
2272  * array of returned group names will be %NULL terminated, so length might
2273  * optionally be %NULL.
2274  *
2275  * Return value: a newly allocated %NULL terminated array of strings.  Use
2276  *   g_strfreev() to free it.
2277  *
2278  * Since: 2.10
2279  */
2280 gchar **
2281 gtk_recent_info_get_groups (GtkRecentInfo *info,
2282                             gsize         *length)
2283 {
2284   GSList *l;
2285   gchar **retval;
2286   gsize n_groups, i;
2287   
2288   g_return_val_if_fail (info != NULL, NULL);
2289   
2290   if (!info->groups)
2291     {
2292       if (length)
2293         *length = 0;
2294       
2295       return NULL;
2296     }
2297   
2298   n_groups = g_slist_length (info->groups);
2299   
2300   retval = g_new0 (gchar *, n_groups + 1);
2301   
2302   for (l = info->groups, i = 0;
2303        l != NULL;
2304        l = l->next)
2305     {
2306       gchar *group_name = (gchar *) l->data;
2307       
2308       g_assert (group_name != NULL);
2309       
2310       retval[i++] = g_strdup (group_name);
2311     }
2312   retval[i] = NULL;
2313   
2314   if (length)
2315     *length = i;
2316   
2317   return retval;
2318 }
2319
2320 /**
2321  * gtk_recent_info_has_group:
2322  * @info: a #GtkRecentInfo
2323  * @group_name: name of a group
2324  *
2325  * Checks whether @group_name appears inside the groups registered for the
2326  * recently used item @info.
2327  *
2328  * Return value: %TRUE if the group was found.
2329  *
2330  * Since: 2.10
2331  */
2332 gboolean
2333 gtk_recent_info_has_group (GtkRecentInfo *info,
2334                            const gchar   *group_name)
2335 {
2336   GSList *l;
2337   
2338   g_return_val_if_fail (info != NULL, FALSE);
2339   g_return_val_if_fail (group_name != NULL, FALSE);
2340
2341   if (!info->groups)
2342     return FALSE;
2343
2344   for (l = info->groups; l != NULL; l = l->next)
2345     {
2346       gchar *g = (gchar *) l->data;
2347
2348       if (strcmp (g, group_name) == 0)
2349         return TRUE;
2350     }
2351
2352   return FALSE;
2353 }
2354
2355 /*
2356  * _gtk_recent_manager_sync:
2357  * 
2358  * Private function for synchronising the recent manager singleton.
2359  */
2360 void
2361 _gtk_recent_manager_sync (void)
2362 {
2363   if (recent_manager_singleton)
2364     {
2365       /* force a dump of the contents of the recent manager singleton */
2366       recent_manager_singleton->priv->is_dirty = TRUE;
2367       gtk_recent_manager_real_changed (recent_manager_singleton);
2368     }
2369 }
2370
2371 #define __GTK_RECENT_MANAGER_C__
2372 #include "gtkaliasdef.c"