diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-21 12:09:26 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-21 12:09:26 +0800 |
commit | 19282b39b651f26b60258cc9ce0f93d27e6dd3e5 (patch) | |
tree | 838641e3029df14052e1621a6515dc0503395df7 /calendar/modules/e-cal-shell-module.c | |
parent | ed77e8e15bbbb886cf92dfb0fb1700a1c1d92548 (diff) | |
download | gsoc2013-evolution-19282b39b651f26b60258cc9ce0f93d27e6dd3e5.tar.gz gsoc2013-evolution-19282b39b651f26b60258cc9ce0f93d27e6dd3e5.tar.zst gsoc2013-evolution-19282b39b651f26b60258cc9ce0f93d27e6dd3e5.zip |
Kill more Bonobo controls and factories and what not.
svn path=/branches/kill-bonobo/; revision=37302
Diffstat (limited to 'calendar/modules/e-cal-shell-module.c')
-rw-r--r-- | calendar/modules/e-cal-shell-module.c | 61 |
1 files changed, 47 insertions, 14 deletions
diff --git a/calendar/modules/e-cal-shell-module.c b/calendar/modules/e-cal-shell-module.c index a312173cdb..9d78f6e6c8 100644 --- a/calendar/modules/e-cal-shell-module.c +++ b/calendar/modules/e-cal-shell-module.c @@ -27,6 +27,7 @@ #include <libedataserver/e-source-list.h> #include <libedataserver/e-source-group.h> +#include "e-util/e-import.h" #include "shell/e-shell.h" #include "shell/e-shell-module.h" #include "shell/e-shell-window.h" @@ -35,9 +36,12 @@ #include "calendar/common/authentication.h" #include "calendar/gui/calendar-config.h" #include "calendar/gui/comp-util.h" +#include "calendar/gui/e-cal-config.h" +#include "calendar/gui/e-cal-event.h" #include "calendar/gui/dialogs/cal-prefs-dialog.h" #include "calendar/gui/dialogs/calendar-setup.h" #include "calendar/gui/dialogs/event-editor.h" +#include "calendar/importers/evolution-calendar-importer.h" #include "e-cal-shell-view.h" #include "e-cal-shell-module-migrate.h" @@ -56,7 +60,7 @@ void e_shell_module_init (GTypeModule *type_module); static void -cal_module_ensure_sources (EShellModule *shell_module) +cal_shell_module_ensure_sources (EShellModule *shell_module) { /* XXX This is basically the same algorithm across all modules. * Maybe we could somehow integrate this into EShellModule? */ @@ -312,9 +316,9 @@ cal_module_ensure_sources (EShellModule *shell_module) } static void -cal_module_cal_opened_cb (ECal *cal, - ECalendarStatus status, - GtkAction *action) +cal_shell_module_cal_opened_cb (ECal *cal, + ECalendarStatus status, + GtkAction *action) { ECalComponent *comp; CompEditor *editor; @@ -381,7 +385,7 @@ action_event_new_cb (GtkAction *action, g_signal_connect ( cal, "cal-opened", - G_CALLBACK (cal_module_cal_opened_cb), action); + G_CALLBACK (cal_shell_module_cal_opened_cb), action); e_cal_open_async (cal, FALSE); } @@ -428,7 +432,32 @@ static GtkActionEntry source_entries[] = { }; static void -cal_module_init_preferences (EShell *shell) +cal_shell_module_init_hooks (void) +{ + e_plugin_hook_register_type (e_cal_config_hook_get_type ()); + e_plugin_hook_register_type (e_cal_event_hook_get_type ()); +} + +static void +cal_shell_module_init_importers (void) +{ + EImportClass *import_class; + EImportImporter *importer; + + import_class = g_type_class_ref (e_import_get_type ()); + + importer = gnome_calendar_importer_peek (); + e_import_class_add_importer (import_class, importer, NULL, NULL); + + importer = ical_importer_peek (); + e_import_class_add_importer (import_class, importer, NULL, NULL); + + importer = vcal_importer_peek (); + e_import_class_add_importer (import_class, importer, NULL, NULL); +} + +static void +cal_shell_module_init_preferences (EShell *shell) { GtkWidget *preferences_window; @@ -444,16 +473,16 @@ cal_module_init_preferences (EShell *shell) } static gboolean -cal_module_handle_uri_cb (EShellModule *shell_module, - const gchar *uri) +cal_shell_module_handle_uri_cb (EShellModule *shell_module, + const gchar *uri) { /* FIXME */ return FALSE; } static void -cal_module_window_created_cb (EShellModule *shell_module, - GtkWindow *window) +cal_shell_module_window_created_cb (EShellModule *shell_module, + GtkWindow *window) { const gchar *module_name; @@ -496,15 +525,19 @@ e_shell_module_init (GTypeModule *type_module) shell_module, &module_info, e_cal_shell_view_get_type (type_module)); - cal_module_ensure_sources (shell_module); + cal_shell_module_ensure_sources (shell_module); g_signal_connect_swapped ( shell, "handle-uri", - G_CALLBACK (cal_module_handle_uri_cb), shell_module); + G_CALLBACK (cal_shell_module_handle_uri_cb), + shell_module); g_signal_connect_swapped ( shell, "window-created", - G_CALLBACK (cal_module_window_created_cb), shell_module); + G_CALLBACK (cal_shell_module_window_created_cb), + shell_module); - cal_module_init_preferences (shell); + cal_shell_module_init_hooks (); + cal_shell_module_init_importers (); + cal_shell_module_init_preferences (shell); } |