diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-01 21:44:50 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-01 21:44:50 +0800 |
commit | 9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9 (patch) | |
tree | 93260e90be18cae0abc1c18738c3b3fad9268dc2 /em-format/e-mail-format-extensions.c | |
parent | e6a149efcee2aa45a4956d1e1da0e8f0b35b4cc7 (diff) | |
download | gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.tar gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.tar.gz gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.tar.bz2 gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.tar.lz gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.tar.xz gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.tar.zst gsoc2013-evolution-9a0b1266b5686d4985fec8a0dae7fdf00b1b8dd9.zip |
Teach EMailExtensionRegistry to find extensions.
Restore this commit with a proper bug fix to follow.
Diffstat (limited to 'em-format/e-mail-format-extensions.c')
-rw-r--r-- | em-format/e-mail-format-extensions.c | 144 |
1 files changed, 0 insertions, 144 deletions
diff --git a/em-format/e-mail-format-extensions.c b/em-format/e-mail-format-extensions.c deleted file mode 100644 index 8ba36702a8..0000000000 --- a/em-format/e-mail-format-extensions.c +++ /dev/null @@ -1,144 +0,0 @@ -/* - * e-mail-format-extensions.c - * - * 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) version 3. - * - * 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 <http://www.gnu.org/licenses/> - * - */ - -#include "e-mail-format-extensions.h" - -#include "em-format/e-mail-parser-extension.h" -#include "em-format/e-mail-formatter-extension.h" - -typedef GType (*TypeFunc) (void); - -TypeFunc parser_funcs[] = { - e_mail_parser_application_mbox_get_type, - e_mail_parser_attachment_bar_get_type, - e_mail_parser_headers_get_type, - e_mail_parser_message_get_type, - e_mail_parser_secure_button_get_type, - e_mail_parser_source_get_type, - e_mail_parser_image_get_type, - e_mail_parser_inline_pgp_encrypted_get_type, - e_mail_parser_inline_pgp_signed_get_type, - e_mail_parser_message_delivery_status_get_type, - e_mail_parser_message_external_get_type, - e_mail_parser_message_rfc822_get_type, - e_mail_parser_multipart_alternative_get_type, - e_mail_parser_multipart_apple_double_get_type, - e_mail_parser_multipart_digest_get_type, - e_mail_parser_multipart_encrypted_get_type, - e_mail_parser_multipart_mixed_get_type, - e_mail_parser_multipart_related_get_type, - e_mail_parser_multipart_signed_get_type, - e_mail_parser_text_enriched_get_type, - e_mail_parser_text_html_get_type, - e_mail_parser_text_plain_get_type, -#ifdef ENABLE_SMIME - e_mail_parser_application_smime_get_type, -#endif - NULL -}; - -TypeFunc formatter_funcs[] = { - e_mail_formatter_attachment_get_type, - e_mail_formatter_attachment_bar_get_type, - e_mail_formatter_error_get_type, - e_mail_formatter_headers_get_type, - e_mail_formatter_secure_button_get_type, - e_mail_formatter_source_get_type, - e_mail_formatter_image_get_type, - e_mail_formatter_message_rfc822_get_type, - e_mail_formatter_text_enriched_get_type, - e_mail_formatter_text_html_get_type, - e_mail_formatter_text_plain_get_type, - NULL -}; - -TypeFunc quote_formatter_funcs[] = { - e_mail_formatter_quote_attachment_get_type, - e_mail_formatter_quote_headers_get_type, - e_mail_formatter_quote_message_rfc822_get_type, - e_mail_formatter_quote_text_enriched_get_type, - e_mail_formatter_quote_text_html_get_type, - e_mail_formatter_quote_text_plain_get_type, - NULL -}; - -TypeFunc print_formatter_funcs[] = { - e_mail_formatter_print_headers_get_type, - NULL -}; - -static void -load (EMailExtensionRegistry *ereg, - TypeFunc *func_array) -{ - gint ii; - - for (ii = 0; func_array[ii] != NULL; ii++) { - GType extension_type; - GType interface_type; - gpointer extension_class; - const gchar **mime_types = NULL; - - extension_type = func_array[ii](); - extension_class = g_type_class_ref (extension_type); - - interface_type = E_TYPE_MAIL_FORMATTER_EXTENSION; - if (g_type_is_a (extension_type, interface_type)) - mime_types = ((EMailFormatterExtensionClass *) - extension_class)->mime_types; - - interface_type = E_TYPE_MAIL_PARSER_EXTENSION; - if (g_type_is_a (extension_type, interface_type)) - mime_types = ((EMailParserExtensionClass *) - extension_class)->mime_types; - - if (mime_types != NULL) - e_mail_extension_registry_add_extension ( - ereg, mime_types, extension_type); - else - g_critical ( - "%s does not define any MIME types", - g_type_name (extension_type)); - - g_type_class_unref (extension_class); - } -} - -void -e_mail_parser_internal_extensions_load (EMailExtensionRegistry *ereg) -{ - load (ereg, parser_funcs); -} - -void -e_mail_formatter_internal_extensions_load (EMailExtensionRegistry *ereg) -{ - load (ereg, formatter_funcs); -} - -void -e_mail_formatter_quote_internal_extensions_load (EMailExtensionRegistry *ereg) -{ - load (ereg, quote_formatter_funcs); -} - -void -e_mail_formatter_print_internal_extensions_load (EMailExtensionRegistry *ereg) -{ - load (ereg, print_formatter_funcs); -} |