From e2f3815ed0e40b423d2b4f9fdee31a440fe14614 Mon Sep 17 00:00:00 2001
From: Nick Schermer <nick@xfce.org>
Date: Sun, 2 Dec 2012 19:06:42 +0100
Subject: [PATCH] Add special tooltip for the trash in shortcuts.

---
 thunar/thunar-shortcuts-model.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/thunar/thunar-shortcuts-model.c b/thunar/thunar-shortcuts-model.c
index 49ed7a765..c1dcfa8ec 100644
--- a/thunar/thunar-shortcuts-model.c
+++ b/thunar/thunar-shortcuts-model.c
@@ -528,6 +528,8 @@ thunar_shortcuts_model_get_value (GtkTreeModel *tree_model,
   gboolean        can_eject;
   GFile          *file;
   gchar          *disk_usage;
+  guint32         trash_items;
+  gchar          *trash_string;
 
   _thunar_return_if_fail (iter->stamp == THUNAR_SHORTCUTS_MODEL (tree_model)->stamp);
   _thunar_return_if_fail (THUNAR_IS_SHORTCUTS_MODEL (tree_model));
@@ -590,6 +592,22 @@ thunar_shortcuts_model_get_value (GtkTreeModel *tree_model,
             }
           break;
         }
+      else if ((shortcut->group & THUNAR_SHORTCUT_GROUP_PLACES_TRASH) != 0)
+        {
+          trash_items = thunar_file_get_item_count (shortcut->file);
+          if (trash_items == 0)
+            {
+              g_value_set_static_string (value, _("Trash is empty"));
+            }
+          else
+            {
+              trash_string = g_strdup_printf (ngettext ("Trash contains %d file",
+                                                        "Trash contains %d files",
+                                                        trash_items), trash_items);
+              g_value_take_string (value, trash_string);
+            }
+          break;
+        }
       else if (shortcut->tooltip == NULL)
         {
           if (shortcut->file != NULL)
-- 
GitLab