aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-06 04:42:57 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-06 04:42:57 +0800
commite9a3200abea4eaa4259d59f89dc0a406af6760a2 (patch)
tree6c509c16799a6b3de334bcad1d78f5f5b1733687
parent79f942b4654f9192270c9c55dd58f217bf7e32e6 (diff)
downloadgsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.tar
gsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.tar.gz
gsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.tar.bz2
gsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.tar.lz
gsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.tar.xz
gsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.tar.zst
gsoc2013-evolution-e9a3200abea4eaa4259d59f89dc0a406af6760a2.zip
New. (get_efolder_from_shortcut): Removed. (impl_shortcut_dropped): Use
* e-shortcuts-view.c (get_shortcut_info): New. (get_efolder_from_shortcut): Removed. (impl_shortcut_dropped): Use `get_shortcut_info()' instead. svn path=/trunk/; revision=12628
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-shortcuts-view.c47
2 files changed, 40 insertions, 13 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index eb04501571..940f2ed41c 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,11 @@
2001-09-05 Ettore Perazzoli <ettore@ximian.com>
+ * e-shortcuts-view.c (get_shortcut_info): New.
+ (get_efolder_from_shortcut): Removed.
+ (impl_shortcut_dropped): Use `get_shortcut_info()' instead.
+
+2001-09-05 Ettore Perazzoli <ettore@ximian.com>
+
* main.c (development_warning): s/Evolution/Ximian Evolution/.
(idle_cb): Likewise.
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c
index 768a4bde1d..192d05ab56 100644
--- a/shell/e-shortcuts-view.c
+++ b/shell/e-shortcuts-view.c
@@ -43,6 +43,8 @@
#include "e-util/e-request.h"
+#include "e-shell-constants.h"
+
#include "e-shortcuts-view-model.h"
#include "e-shortcuts-view.h"
@@ -471,22 +473,45 @@ item_selected (EShortcutBar *shortcut_bar,
shortcuts, shortcut_item->uri, FALSE);
}
-static EFolder *
-get_efolder_from_shortcut (EShortcuts *shortcuts,
- const char *item_url)
+static void
+get_shortcut_info (EShortcutsView *shortcuts_view,
+ const char *item_url,
+ int *unread_count_return,
+ const char **type_return)
{
- EFolderTypeRegistry *folder_type_registry;
+ EShortcutsViewPrivate *priv;
EStorageSet *storage_set;
+ EStorage *storage;
EFolder *folder;
- char *path;
+ const char *path;
+
+ priv = shortcuts_view->priv;
+
+ if (strncmp (item_url, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) != 0) {
+ *unread_count_return = 0;
+ *type_return = NULL;
+ return;
+ }
path = strchr (item_url, G_DIR_SEPARATOR);
- storage_set = e_shortcuts_get_storage_set (shortcuts);
- folder_type_registry = e_storage_set_get_folder_type_registry (storage_set);
+ storage_set = e_shortcuts_get_storage_set (priv->shortcuts);
folder = e_storage_set_get_folder (storage_set, path);
+ if (folder != NULL) {
+ *unread_count_return = e_folder_get_unread_count (folder);
+ *type_return = e_folder_get_type_string (folder);
+ return;
+ }
- return folder;
+ storage = e_storage_set_get_storage (storage_set, path + 1);
+ if (storage != NULL) {
+ *unread_count_return = 0;
+ *type_return = e_storage_get_toplevel_node_type (storage);
+ return;
+ }
+
+ *unread_count_return = 0;
+ *type_return = NULL;
}
static void
@@ -498,7 +523,6 @@ impl_shortcut_dropped (EShortcutBar *shortcut_bar,
{
EShortcutsView *shortcuts_view;
EShortcutsViewPrivate *priv;
- EFolder *folder;
int unread_count;
const char *type;
char *tmp;
@@ -508,10 +532,7 @@ impl_shortcut_dropped (EShortcutBar *shortcut_bar,
shortcuts_view = E_SHORTCUTS_VIEW (shortcut_bar);
priv = shortcuts_view->priv;
- folder = get_efolder_from_shortcut (priv->shortcuts, item_url);
-
- unread_count = e_folder_get_unread_count (folder);
- type = e_folder_get_type_string (folder);
+ get_shortcut_info (shortcuts_view, item_url, &unread_count, &type);
/* Looks funny, but keeps it from adding the unread count
repeatedly when dragging folders around */