* metar.c: #include <string.h>. * main.c (main): Use gnome_program_init(). * e-summary-tasks.c (e_summary_tasks_protocol): Use bonobo-activation. * e-summary-table.c (set_value_at): Use g_signal_emit() instead of gtk_signal_emit(). * e-summary-shown.c (e_summary_shown_class_init): GObjectified. (construct_pixmap_button): Use gtk_image_new_from_stock() instead of gnome_stock_pixmap_new(). * e-summary-preferences.c (e_summary_preferences_restore): Use EConfigListener. (add_dialog_clicked_cb): Add some missing consts. (factory_fn): Pass NULL as the domain arg to glade_xml_new(). (factory_fn): Add id arg. (e_summary_preferences_register_config_control_factory): * e-summary-mail.c (e_summary_folder_init_folder_store): Use bonobo-activation. * e-summary-factory.c (control_activate): Pass NULL ev arg to bonobo functions that now need it. (control_deactivate): Likewise. (control_activate_cb): Likewise. (e_summary_factory_new_control): Use g_signal_connect() instead of gtk_signal_connect(). * e-summary-calendar.c (e_summary_calendar_protocol): Use bonobo_activation. * e-summary.c: Update gnome-print #includes. Added some missing #includes. (e_summary_url_clicked): Pass NULL as the error arg to gnome_url_show(). (do_summary_print): Use GnomePrintConfig instead of GnomePrinter et al. * e-cell-tri.h: Removed BEGIN_GNOME_DECLS/END_GNOME_DECLS. * e-summary.c: Removed #include <libgnome/gnome-defs.h>. Ported to e-config-listener.c. * e-cell-tri.h: Removed #include <libgnome/gnome-defs.h>. * component-factory.c: #include <gtk/gtkmain.h>. (create_component): Use g_signal_connect. Match prototype with the one required by bonobo_generic_factory(). * Makefile.am: Add @INTLTOOL_SERVER_RULE@. ($(MAIL_GENERATED)): Update with new ORBit rules. svn path=/trunk/; revision=18574
154 lines
4.2 KiB
C
154 lines
4.2 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
/* e-summary-factory.c
|
|
*
|
|
* Copyright (C) 2001 Ximian, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*
|
|
* Author: Iain Holmes <iain@ximian.com>
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <bonobo/bonobo-control.h>
|
|
#include <bonobo/bonobo-exception.h>
|
|
#include <bonobo/bonobo-ui-util.h>
|
|
|
|
#include "e-util/e-gui-utils.h"
|
|
|
|
#include "e-summary.h"
|
|
#include "e-summary-factory.h"
|
|
#include "e-summary-offline-handler.h"
|
|
#include "e-summary-preferences.h"
|
|
#include "evolution-shell-component-utils.h" /* For E_PIXMAP */
|
|
|
|
BonoboUIVerb verbs[] = {
|
|
BONOBO_UI_VERB ("PrintMyEvolution", e_summary_print),
|
|
BONOBO_UI_VERB ("Reload", e_summary_reload),
|
|
BONOBO_UI_VERB_END
|
|
};
|
|
|
|
|
|
static EPixmap pixmaps [] = {
|
|
E_PIXMAP ("/commands/PrintMyEvolution", "print.xpm"),
|
|
E_PIXMAP ("/Toolbar/PrintMyEvolution", "buttons/print.png"),
|
|
E_PIXMAP_END
|
|
};
|
|
|
|
static void
|
|
control_activate (BonoboControl *control,
|
|
BonoboUIComponent *ui_component,
|
|
ESummary *summary)
|
|
{
|
|
Bonobo_UIContainer container;
|
|
|
|
container = bonobo_control_get_remote_ui_container (control, NULL);
|
|
bonobo_ui_component_set_container (ui_component, container, NULL);
|
|
bonobo_object_release_unref (container, NULL);
|
|
|
|
bonobo_ui_component_add_verb_list_with_data (ui_component, verbs, summary);
|
|
bonobo_ui_component_freeze (ui_component, NULL);
|
|
|
|
bonobo_ui_util_set_ui (ui_component, EVOLUTION_DATADIR, "my-evolution.xml", "my-evolution", NULL);
|
|
e_pixmaps_update (ui_component, pixmaps);
|
|
|
|
bonobo_ui_component_thaw (ui_component, NULL);
|
|
}
|
|
|
|
static void
|
|
control_deactivate (BonoboControl *control,
|
|
BonoboUIComponent *ui_component,
|
|
ESummary *summary)
|
|
{
|
|
bonobo_ui_component_unset_container (ui_component, NULL);
|
|
}
|
|
|
|
static void
|
|
control_activate_cb (BonoboControl *control,
|
|
gboolean activate,
|
|
ESummary *summary)
|
|
{
|
|
BonoboUIComponent *ui_component;
|
|
|
|
ui_component = bonobo_control_get_ui_component (control);
|
|
|
|
if (summary->shell_view_interface == NULL) {
|
|
Bonobo_ControlFrame control_frame;
|
|
CORBA_Environment ev;
|
|
|
|
control_frame = bonobo_control_get_control_frame (control, NULL);
|
|
if (control_frame == NULL)
|
|
goto out;
|
|
|
|
CORBA_exception_init (&ev);
|
|
summary->shell_view_interface = Bonobo_Unknown_queryInterface (control_frame, "IDL:GNOME/Evolution/ShellView:1.0", &ev);
|
|
|
|
if (BONOBO_EX (&ev)) {
|
|
g_warning ("Error getting ShellView. %s", CORBA_exception_id (&ev));
|
|
summary->shell_view_interface = CORBA_OBJECT_NIL;
|
|
}
|
|
CORBA_exception_free (&ev);
|
|
}
|
|
out:
|
|
|
|
if (activate)
|
|
control_activate (control, ui_component, summary);
|
|
else
|
|
control_deactivate (control, ui_component, summary);
|
|
}
|
|
|
|
static void
|
|
control_destroy_cb (BonoboControl *control,
|
|
ESummary *summary)
|
|
{
|
|
gtk_object_destroy (GTK_OBJECT (summary));
|
|
}
|
|
|
|
BonoboControl *
|
|
e_summary_factory_new_control (const char *uri,
|
|
const GNOME_Evolution_Shell shell,
|
|
ESummaryOfflineHandler *handler,
|
|
ESummaryPrefs *global_preferences)
|
|
{
|
|
BonoboControl *control;
|
|
GtkWidget *summary;
|
|
|
|
summary = e_summary_new (shell, global_preferences);
|
|
if (summary == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
e_summary_offline_handler_add_summary (handler, E_SUMMARY (summary));
|
|
gtk_widget_show (summary);
|
|
|
|
control = bonobo_control_new (summary);
|
|
|
|
if (control == NULL) {
|
|
gtk_object_destroy (GTK_OBJECT (summary));
|
|
return NULL;
|
|
}
|
|
|
|
g_signal_connect (control, "activate", G_CALLBACK (control_activate_cb), summary);
|
|
g_signal_connect (control, "destroy", G_CALLBACK (control_destroy_cb), summary);
|
|
|
|
/* FIXME: We register the factory here as it needs the summary object.
|
|
Sigh, this is really wrong. */
|
|
|
|
return control;
|
|
}
|