aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook.c
diff options
context:
space:
mode:
authorMichael Meeks <michael@helixcode.com>2000-10-05 15:10:04 +0800
committerMichael Meeks <mmeeks@src.gnome.org>2000-10-05 15:10:04 +0800
commitd5a93f01c1a20edf80be106993f64fc0385a7a59 (patch)
treed4cc42300219571c4b1865bb9c42d5d7a0ff87fa /addressbook/gui/component/addressbook.c
parent83b5ac87fca211734b8712b1bbe3247ab89f98fc (diff)
downloadgsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.tar
gsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.tar.gz
gsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.tar.bz2
gsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.tar.lz
gsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.tar.xz
gsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.tar.zst
gsoc2013-evolution-d5a93f01c1a20edf80be106993f64fc0385a7a59.zip
Disable summary stuff, it appears to be badly broken.
2000-10-05 Michael Meeks <michael@helixcode.com> * 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 <michael@helixcode.com> * 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 <michael@helixcode.com> * 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 <michael@helixcode.com> * gui/calendar-commands.c: upd. (calendar_control_activate): upd. (calendar_control_deactivate): upd. 2000-10-05 Michael Meeks <michael@helixcode.com> * 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
Diffstat (limited to 'addressbook/gui/component/addressbook.c')
-rw-r--r--addressbook/gui/component/addressbook.c76
1 files changed, 29 insertions, 47 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c
index 1c0aa4ada7..65f4fdca93 100644
--- a/addressbook/gui/component/addressbook.c
+++ b/addressbook/gui/component/addressbook.c
@@ -49,18 +49,6 @@ typedef struct {
static void change_view_type (AddressbookView *view, EAddressbookViewType view_type);
static void
-control_deactivate (BonoboControl *control, BonoboUIHandler *uih)
-{
- Bonobo_UIContainer container = bonobo_ui_compat_get_container (uih);
-
- g_return_if_fail (container != CORBA_OBJECT_NIL);
-
- bonobo_ui_component_rm (
- bonobo_ui_compat_get_component (uih),
- container, "/", NULL);
-}
-
-static void
card_added_cb (EBook* book, EBookStatus status, const char *id,
gpointer user_data)
{
@@ -323,48 +311,42 @@ stop_loading_cb (BonoboUIHandler *uih, void *user_data, const char *path)
}
BonoboUIVerb verbs [] = {
- BONOBO_UI_VERB ("ContactsPrint", print_cb),
- BONOBO_UI_VERB ("ViewAsTable", toggle_view_as_cb),
- BONOBO_UI_VERB ("ViewNewContact", new_contact_cb),
- BONOBO_UI_VERB ("ToolSearch", search_cb),
-
- BONOBO_UI_VERB ("ContactNew", new_contact_cb),
-/* BONOBO_UI_VERB ("ContactFind", find_contact_cb),*/
- BONOBO_UI_VERB ("ContactDelete", delete_contact_cb),
- BONOBO_UI_VERB ("ContactViewAll", show_all_contacts_cb),
- BONOBO_UI_VERB ("ContactStop", stop_loading_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactsPrint", print_cb),
+ BONOBO_UI_UNSAFE_VERB ("ViewAsTable", toggle_view_as_cb),
+ BONOBO_UI_UNSAFE_VERB ("ViewNewContact", new_contact_cb),
+ BONOBO_UI_UNSAFE_VERB ("ToolSearch", search_cb),
+
+ BONOBO_UI_UNSAFE_VERB ("ContactNew", new_contact_cb),
+/* BONOBO_UI_UNSAFE_VERB ("ContactFind", find_contact_cb),*/
+ BONOBO_UI_UNSAFE_VERB ("ContactDelete", delete_contact_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactViewAll", show_all_contacts_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactStop", stop_loading_cb),
#ifdef HAVE_LDAP
- BONOBO_UI_VERB ("ContactNewServer", new_server_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactNewServer", new_server_cb),
#endif
BONOBO_UI_VERB_END
};
static void
-control_activate (BonoboControl *control, BonoboUIHandler *uih,
- AddressbookView *view)
+control_activate (BonoboControl *control,
+ BonoboUIComponent *uic,
+ AddressbookView *view)
{
- Bonobo_UIContainer remote_uih;
- Bonobo_UIContainer container;
- BonoboUIComponent *component;
+ Bonobo_UIContainer remote_ui_container;
GtkWidget *quick_search_widget;
BonoboControl *search_control;
- remote_uih = bonobo_control_get_remote_ui_handler (control);
- bonobo_ui_handler_set_container (uih, remote_uih);
- bonobo_object_release_unref (remote_uih, NULL);
+ remote_ui_container = bonobo_control_get_remote_ui_container (control);
+ bonobo_ui_component_set_container (uic, remote_ui_container);
+ bonobo_object_release_unref (remote_ui_container, NULL);
- component = bonobo_ui_compat_get_component (uih);
-
bonobo_ui_component_add_verb_list_with_data (
- component, verbs, view);
-
- container = bonobo_ui_compat_get_container (uih);
- g_return_if_fail (container != CORBA_OBJECT_NIL);
+ uic, verbs, view);
- bonobo_ui_container_freeze (container, NULL);
+ bonobo_ui_component_freeze (uic, NULL);
- bonobo_ui_util_set_ui (component, container, EVOLUTION_DATADIR,
+ bonobo_ui_util_set_ui (uic, EVOLUTION_DATADIR,
#ifdef HAVE_LDAP
"evolution-addressbook-ldap.xml",
#else
@@ -378,12 +360,12 @@ control_activate (BonoboControl *control, BonoboUIHandler *uih,
gtk_widget_show_all (quick_search_widget);
search_control = bonobo_control_new (quick_search_widget);
- bonobo_ui_container_object_set (
- container, "/Toolbar/QuickSearch",
+ bonobo_ui_component_object_set (
+ uic, "/Toolbar/QuickSearch",
bonobo_object_corba_objref (BONOBO_OBJECT (search_control)),
NULL);
- bonobo_ui_container_thaw (container, NULL);
+ bonobo_ui_component_thaw (uic, NULL);
}
static void
@@ -391,15 +373,15 @@ control_activate_cb (BonoboControl *control,
gboolean activate,
AddressbookView *view)
{
- BonoboUIHandler *uih;
+ BonoboUIComponent *uic;
- uih = bonobo_control_get_ui_handler (control);
- g_assert (uih);
+ uic = bonobo_control_get_ui_component (control);
+ g_assert (uic != NULL);
if (activate)
- control_activate (control, uih, view);
+ control_activate (control, uic, view);
else
- control_deactivate (control, uih);
+ bonobo_ui_component_unset_container (uic);
}
static void