From d5a93f01c1a20edf80be106993f64fc0385a7a59 Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Thu, 5 Oct 2000 07:10:04 +0000 Subject: Disable summary stuff, it appears to be badly broken. 2000-10-05 Michael Meeks * component-factory.c (summary_fn, component_factory_init): Disable summary stuff, it appears to be badly broken. * Makefile.am (evolution_mail_SOURCES): add mail-summary.[ch] * subscribe-dialog.c (update_pixmaps): upd. (set_pixmap): upd. (subscribe_dialog_gui_init): upd. remove redundant and annoying forward definitions. * folder-browser-factory.c (control_deactivate): upd. (control_activate_cb): upd. (control_activate): upd. (set_pixmap): upd. (update_pixmaps): upd. (register_ondemand): upd. (create_ondemand_hooks): upd. 2000-10-05 Michael Meeks * e-shell-view-menu.c (shortcut_bar_mode_changed_cb): upd. (folder_bar_mode_changed_cb): upd. (command_xml_dump): clobber. (e_shell_view_menu_setup): upd. * e-shell-view.c (shell_view_interface_set_message_cb): upd. (shell_view_interface_unset_message_cb): upd. (e_shell_view_construct): upd. (get_control_for_uri): upd. (e_shell_view_get_bonobo_ui_component): upd. 2000-10-05 Michael Meeks * contact-editor/e-contact-editor.c (create_ui): upd. (e_contact_editor_init): upd. * gui/component/addressbook.c (control_activate_cb): upd. (control_deactivate): kill. (control_activate): upd. 2000-10-05 Michael Meeks * gui/calendar-commands.c: upd. (calendar_control_activate): upd. (calendar_control_deactivate): upd. 2000-10-05 Michael Meeks * component/e-summary-factory.c (control_activate): upd. (set_pixmap): upd. (update_pixmaps): upd. (control_activate_cb): upd. (control_deactivate): upd. svn path=/trunk/; revision=5742 --- executive-summary/component/Makefile.in | 11 ++-- executive-summary/component/e-summary-factory.c | 67 +++++++++++-------------- 2 files changed, 35 insertions(+), 43 deletions(-) (limited to 'executive-summary/component') diff --git a/executive-summary/component/Makefile.in b/executive-summary/component/Makefile.in index 7aed4eb957..49846a2b60 100644 --- a/executive-summary/component/Makefile.in +++ b/executive-summary/component/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated automatically by automake 1.4a from Makefile.am +# Makefile.in generated automatically by automake 1.4 from Makefile.am # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation @@ -46,10 +46,9 @@ AUTOMAKE = @AUTOMAKE@ AUTOHEADER = @AUTOHEADER@ INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) INSTALL_DATA = @INSTALL_DATA@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_FLAG = transform = @program_transform_name@ NORMAL_INSTALL = : @@ -241,8 +240,8 @@ install-binPROGRAMS: $(bin_PROGRAMS) $(mkinstalldirs) $(DESTDIR)$(bindir) @list='$(bin_PROGRAMS)'; for p in $$list; do \ if test -f $$p; then \ - echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ + echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ + $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ else :; fi; \ done @@ -391,7 +390,7 @@ uninstall: uninstall-am all-am: Makefile $(PROGRAMS) all-local all-redirect: all-am install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install installdirs: $(mkinstalldirs) $(DESTDIR)$(bindir) diff --git a/executive-summary/component/e-summary-factory.c b/executive-summary/component/e-summary-factory.c index c87985be34..b023d38316 100644 --- a/executive-summary/component/e-summary-factory.c +++ b/executive-summary/component/e-summary-factory.c @@ -65,14 +65,14 @@ static void flash (ExecutiveSummary *summary, void *closure); BonoboUIVerb verbs[] = { - BONOBO_UI_VERB ("AddService", embed_service), + BONOBO_UI_UNSAFE_VERB ("AddService", embed_service), BONOBO_UI_VERB_END }; static void -set_pixmap (Bonobo_UIContainer container, - const char *xml_path, - const char *icon) +set_pixmap (BonoboUIComponent *component, + const char *xml_path, + const char *icon) { char *path; GdkPixbuf *pixbuf; @@ -82,53 +82,46 @@ set_pixmap (Bonobo_UIContainer container, pixbuf = gdk_pixbuf_new_from_file (path); g_return_if_fail (pixbuf != NULL); - bonobo_ui_util_set_pixbuf (container, xml_path, pixbuf); + bonobo_ui_util_set_pixbuf (component, xml_path, pixbuf); gdk_pixbuf_unref (pixbuf); g_free (path); } static void -update_pixmaps (Bonobo_UIContainer container) +update_pixmaps (BonoboUIComponent *component) { - set_pixmap (container, "/Toolbar/AddService", "add-service.png"); + set_pixmap (component, "/Toolbar/AddService", "add-service.png"); } static void -control_activate (BonoboControl *control, - BonoboUIHandler *uih, - ESummary *esummary) +control_activate (BonoboControl *control, + BonoboUIComponent *ui_component, + ESummary *esummary) { - BonoboUIComponent *component; Bonobo_UIContainer container; container = bonobo_control_get_remote_ui_handler (control); - bonobo_ui_handler_set_container (uih, container); + bonobo_ui_component_set_container (ui_component, container); bonobo_object_release_unref (container, NULL); - g_assert (container == bonobo_ui_compat_get_container (uih)); - g_return_if_fail (container != CORBA_OBJECT_NIL); - - component = bonobo_ui_compat_get_component (uih); - bonobo_ui_component_add_verb_list_with_data (component, verbs, esummary); + bonobo_ui_component_add_verb_list_with_data (ui_component, verbs, esummary); - bonobo_ui_container_freeze (container, NULL); + bonobo_ui_component_freeze (ui_component, NULL); - bonobo_ui_util_set_ui (component, container, EVOLUTION_DATADIR, + bonobo_ui_util_set_ui (ui_component, EVOLUTION_DATADIR, "evolution-executive-summary.xml", "evolution-executive-summary"); - update_pixmaps (container); - bonobo_ui_container_thaw (container, NULL); + update_pixmaps (ui_component); + bonobo_ui_component_thaw (ui_component, NULL); } static void -control_deactivate (BonoboControl *control, - BonoboUIHandler *uih, - ESummary *esummary) +control_deactivate (BonoboControl *control, + BonoboUIComponent *ui_component, + ESummary *esummary) { - bonobo_ui_component_rm (bonobo_ui_compat_get_component (uih), - bonobo_ui_compat_get_container (uih), "/", NULL); - bonobo_ui_handler_unset_container (uih); + bonobo_ui_component_unset_container (ui_component); } static void @@ -136,26 +129,26 @@ control_activate_cb (BonoboControl *control, gboolean activate, gpointer user_data) { - BonoboUIHandler *uih; + BonoboUIComponent *ui_component; - uih = bonobo_control_get_ui_handler (control); - g_assert (uih); + ui_component = bonobo_control_get_ui_component (control); + g_assert (ui_component != NULL); - if (activate) - control_activate (control, uih, user_data); - else - control_deactivate (control, uih, user_data); + if (activate) + control_activate (control, ui_component, user_data); + else + control_deactivate (control, ui_component, user_data); } static void control_destroy_cb (BonoboControl *control, gpointer user_data) { - GtkWidget *esummary = user_data; + GtkWidget *esummary = user_data; - control_list = g_list_remove (control_list, control); + control_list = g_list_remove (control_list, control); - gtk_object_destroy (GTK_OBJECT (esummary)); + gtk_object_destroy (GTK_OBJECT (esummary)); } static void -- cgit v1.2.3