aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-03-21 05:18:08 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-03-21 05:18:08 +0800
commitbc11ab14a5de4bf928a254b18b5ab6eb04c6f012 (patch)
tree8b465b360f5ea7570ad2d9072b2dad41853159d1
parentc18057139cfa336fb52e7933de80e18e4e48daca (diff)
downloadgsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.tar
gsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.tar.gz
gsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.tar.bz2
gsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.tar.lz
gsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.tar.xz
gsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.tar.zst
gsoc2013-evolution-bc11ab14a5de4bf928a254b18b5ab6eb04c6f012.zip
Remove all the SearchBar items before setting them up again.
* e-search-bar.c (update_bonobo_menus): Remove all the SearchBar items before setting them up again. (free_menu_items): New. (impl_destroy): Call it. (set_menu): Call it here too before adding the new items. svn path=/trunk/; revision=16218
-rw-r--r--widgets/misc/ChangeLog13
-rw-r--r--widgets/misc/e-search-bar.c92
2 files changed, 80 insertions, 25 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 7c0e38f02e..06b2bfaf4a 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,16 @@
+2002-03-20 Ettore Perazzoli <ettore@ximian.com>
+
+ * e-search-bar.c (update_bonobo_menus): Remove all the SearchBar
+ items before setting them up again.
+ (free_menu_items): New.
+ (impl_destroy): Call it.
+ (set_menu): Call it here too before adding the new items.
+
+2002-03-18 Ettore Perazzoli <ettore@ximian.com>
+
+ * e-search-bar.c (verb_name_from_id): New.
+ (e_search_bar_set_menu_sensitive): Rewritten using it.
+
2002-03-18 Ettore Perazzoli <ettore@ximian.com>
* e-search-bar.c (update_bonobo_menus): No accelerator for
diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c
index 76db37ab2c..901b08a8a1 100644
--- a/widgets/misc/e-search-bar.c
+++ b/widgets/misc/e-search-bar.c
@@ -121,6 +121,12 @@ update_sensitivity (ESearchBar *search_bar)
}
}
+static char *
+verb_name_from_id (int id)
+{
+ return g_strdup_printf ("ESearchBar:Activate:%d", id);
+}
+
/* This implements the "clear" action, i.e. clears the text and then emits
* ::search_activated. */
@@ -131,6 +137,46 @@ clear_search (ESearchBar *esb)
emit_search_activated (esb);
}
+/* Frees an array of subitem information */
+static void
+free_subitems (ESearchBarSubitem *subitems)
+{
+ ESearchBarSubitem *s;
+
+ g_assert (subitems != NULL);
+
+ for (s = subitems; s->id != -1; s++) {
+ if (s->text)
+ g_free (s->text);
+ }
+
+ g_free (subitems);
+}
+
+static void
+free_menu_items (ESearchBar *esb)
+{
+ GSList *p;
+
+ if (esb->menu_items == NULL)
+ return;
+
+ for (p = esb->menu_items; p != NULL; p = p->next) {
+ ESearchBarItem *item;
+
+ item = (ESearchBarItem *) p->data;
+
+ /* (No submitems for the menu_items, so no need to free that
+ member.) */
+
+ g_free (item->text);
+ g_free (item);
+ }
+
+ g_slist_free (esb->menu_items);
+ esb->menu_items = NULL;
+}
+
/* Callbacks -- Standard verbs. */
@@ -424,6 +470,8 @@ update_bonobo_menus (ESearchBar *esb)
GSList *p;
char *verb_name;
+ bonobo_ui_component_rm (esb->ui_component, "/menu/Search/SearchBar", NULL);
+
xml = g_string_new ("<placeholder name=\"SearchBar\">");
append_xml_menu_item (xml, "FindNow", _("Find Now"), "ESearchBar:FindNow", NULL);
@@ -434,7 +482,7 @@ update_bonobo_menus (ESearchBar *esb)
item = (const ESearchBarItem *) p->data;
- verb_name = g_strdup_printf ("ESearchBar:Activate:%d", item->id);
+ verb_name = verb_name_from_id (item->id);
bonobo_ui_component_add_verb (esb->ui_component, verb_name, search_verb_cb, esb);
if (item->text == NULL)
@@ -458,6 +506,8 @@ set_menu (ESearchBar *esb,
{
int i;
+ free_menu_items (esb);
+
if (items == NULL)
return;
@@ -467,7 +517,7 @@ set_menu (ESearchBar *esb,
g_assert (items[i].subitems == NULL);
new_item = g_new (ESearchBarItem, 1);
- new_item->text = items[i].text;
+ new_item->text = g_strdup (items[i].text);
new_item->id = items[i].id;
new_item->subitems = NULL;
@@ -478,22 +528,6 @@ set_menu (ESearchBar *esb,
update_bonobo_menus (esb);
}
-/* Frees an array of subitem information */
-static void
-free_subitems (ESearchBarSubitem *subitems)
-{
- ESearchBarSubitem *s;
-
- g_assert (subitems != NULL);
-
- for (s = subitems; s->id != -1; s++) {
- if (s->text)
- g_free (s->text);
- }
-
- g_free (subitems);
-}
-
/* Callback used when an option item is destroyed. We have to destroy its
* suboption items.
*/
@@ -694,6 +728,8 @@ impl_destroy (GtkObject *object)
gtk_idle_remove (esb->pending_activate);
esb->pending_activate = 0;
}
+
+ free_menu_items (esb);
if (GTK_OBJECT_CLASS (parent_class)->destroy)
GTK_OBJECT_CLASS (parent_class)->destroy (object);
@@ -929,14 +965,20 @@ e_search_bar_set_ui_component (ESearchBar *search_bar,
}
void
-e_search_bar_set_menu_sensitive (ESearchBar *esb, int id, gboolean state)
+e_search_bar_set_menu_sensitive (ESearchBar *search_bar, int id, gboolean state)
{
- int row;
- GtkWidget *widget;
-
- row = find_id (esb->dropdown_menu, id, "EsbMenuId", &widget);
- if (row != -1)
- gtk_widget_set_sensitive (widget, state);
+ char *verb_name;
+ char *path;
+
+ verb_name = verb_name_from_id (id);
+ path = g_strconcat ("/commands/", verb_name, NULL);
+ g_free (verb_name);
+
+ bonobo_ui_component_set_prop (search_bar->ui_component, path,
+ "sensitive", state ? "1" : "0",
+ NULL);
+
+ g_free (path);
}
GtkType