From d09d8de870b6697c8a8b262e7e077b871a69b315 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 10 Dec 2012 08:09:59 -0500 Subject: Consolidate base utility libraries into libeutil. Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start. --- widgets/misc/e-attachment-handler-sendto.c | 229 ----------------------------- 1 file changed, 229 deletions(-) delete mode 100644 widgets/misc/e-attachment-handler-sendto.c (limited to 'widgets/misc/e-attachment-handler-sendto.c') diff --git a/widgets/misc/e-attachment-handler-sendto.c b/widgets/misc/e-attachment-handler-sendto.c deleted file mode 100644 index f0fe698713..0000000000 --- a/widgets/misc/e-attachment-handler-sendto.c +++ /dev/null @@ -1,229 +0,0 @@ -/* - * e-attachment-handler-sendto.c - * - * Copyright (C) 2009 Matthew Barnes - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with the program; if not, see - * - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "e-attachment-handler-sendto.h" - -#include - -#include - -static const gchar *ui = -"" -" " -" " -" " -" " -" " -""; - -G_DEFINE_TYPE ( - EAttachmentHandlerSendto, - e_attachment_handler_sendto, - E_TYPE_ATTACHMENT_HANDLER) - -static void -sendto_save_finished_cb (EAttachment *attachment, - GAsyncResult *result, - EAttachmentHandler *handler) -{ - EAttachmentView *view; - EAttachmentStore *store; - GtkWidget *dialog; - gchar **uris; - gpointer parent; - gchar *arguments; - gchar *command_line; - guint n_uris = 1; - GError *error = NULL; - - view = e_attachment_handler_get_view (handler); - store = e_attachment_view_get_store (view); - - uris = e_attachment_store_get_uris_finish (store, result, &error); - - if (uris != NULL) - n_uris = g_strv_length (uris); - - if (error != NULL) - goto error; - - arguments = g_strjoinv (" ", uris); - command_line = g_strdup_printf ("nautilus-sendto %s", arguments); - - g_message ("Command: %s", command_line); - g_spawn_command_line_async (command_line, &error); - - g_free (command_line); - g_free (arguments); - - if (error != NULL) - goto error; - - goto exit; - -error: - parent = gtk_widget_get_toplevel (GTK_WIDGET (view)); - parent = gtk_widget_is_toplevel (parent) ? parent : NULL; - - dialog = gtk_message_dialog_new_with_markup ( - parent, GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, - "%s", - ngettext ("Could not send attachment", - "Could not send attachments", n_uris)); - - gtk_message_dialog_format_secondary_text ( - GTK_MESSAGE_DIALOG (dialog), "%s", error->message); - - gtk_dialog_run (GTK_DIALOG (dialog)); - - gtk_widget_destroy (dialog); - g_error_free (error); - -exit: - g_object_unref (handler); - g_strfreev (uris); -} - -static void -action_sendto_cb (GtkAction *action, - EAttachmentHandler *handler) -{ - EAttachmentView *view; - EAttachmentStore *store; - GList *selected; - - view = e_attachment_handler_get_view (handler); - store = e_attachment_view_get_store (view); - - selected = e_attachment_view_get_selected_attachments (view); - g_return_if_fail (selected != NULL); - - e_attachment_store_get_uris_async ( - store, selected, (GAsyncReadyCallback) - sendto_save_finished_cb, g_object_ref (handler)); - - g_list_foreach (selected, (GFunc) g_object_unref, NULL); - g_list_free (selected); -} - -static GtkActionEntry standard_entries[] = { - - { "sendto", - "document-send", - N_("_Send To..."), - NULL, - N_("Send the selected attachments somewhere"), - G_CALLBACK (action_sendto_cb) } -}; - -static void -attachment_handler_sendto_update_actions_cb (EAttachmentView *view, - EAttachmentHandler *handler) -{ - GtkActionGroup *action_group; - GList *selected, *iter; - gboolean visible = FALSE; - gchar *program; - - program = g_find_program_in_path ("nautilus-sendto"); - selected = e_attachment_view_get_selected_attachments (view); - - if (program == NULL || selected == NULL) - goto exit; - - /* Make sure no file transfers are in progress. */ - for (iter = selected; iter != NULL; iter = iter->next) { - EAttachment *attachment = iter->data; - - if (e_attachment_get_loading (attachment)) - goto exit; - - if (e_attachment_get_saving (attachment)) - goto exit; - } - - visible = TRUE; - -exit: - action_group = e_attachment_view_get_action_group (view, "sendto"); - gtk_action_group_set_visible (action_group, visible); - - g_list_foreach (selected, (GFunc) g_object_unref, NULL); - g_list_free (selected); - - g_free (program); -} - -static void -attachment_handler_sendto_constructed (GObject *object) -{ - EAttachmentHandler *handler; - EAttachmentView *view; - GtkActionGroup *action_group; - GtkUIManager *ui_manager; - GError *error = NULL; - - handler = E_ATTACHMENT_HANDLER (object); - - /* Chain up to parent's constructed() method. */ - G_OBJECT_CLASS (e_attachment_handler_sendto_parent_class)->constructed (object); - - view = e_attachment_handler_get_view (handler); - ui_manager = e_attachment_view_get_ui_manager (view); - - action_group = gtk_action_group_new ("sendto"); - gtk_action_group_set_translation_domain ( - action_group, GETTEXT_PACKAGE); - gtk_action_group_add_actions ( - action_group, standard_entries, - G_N_ELEMENTS (standard_entries), object); - gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); - - gtk_ui_manager_add_ui_from_string (ui_manager, ui, -1, &error); - - if (error != NULL) { - g_warning ("%s", error->message); - g_error_free (error); - } - - g_signal_connect ( - view, "update-actions", - G_CALLBACK (attachment_handler_sendto_update_actions_cb), - object); -} - -static void -e_attachment_handler_sendto_class_init (EAttachmentHandlerSendtoClass *class) -{ - GObjectClass *object_class; - - object_class = G_OBJECT_CLASS (class); - object_class->constructed = attachment_handler_sendto_constructed; -} - -static void -e_attachment_handler_sendto_init (EAttachmentHandlerSendto *handler) -{ -} -- cgit v1.2.3