/* * e-mail-shell-settings.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 * * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ #include "e-mail-shell-settings.h" #include #include #include "e-util/e-signature-list.h" #include "mail/e-mail-label-list-store.h" #include "mail/mail-session.h" void e_mail_shell_settings_init (EShell *shell) { EShellSettings *shell_settings; gpointer object; shell_settings = e_shell_get_shell_settings (shell); /*** Global Objects ***/ e_shell_settings_install_property ( g_param_spec_object ( "mail-label-list-store", NULL, NULL, E_TYPE_MAIL_LABEL_LIST_STORE, G_PARAM_READWRITE)); object = e_mail_label_list_store_new (); e_shell_settings_set_object ( shell_settings, "mail-label-list-store", object); g_object_unref (object); e_shell_settings_install_property ( g_param_spec_pointer ( "mail-session", NULL, NULL, G_PARAM_READWRITE)); camel_object_ref (session); e_shell_settings_set_pointer ( shell_settings, "mail-session", session); /*** Mail Preferences ***/ e_shell_settings_install_property_for_key ( "mail-address-compress", "/apps/evolution/mail/display/address_compress"); e_shell_settings_install_property_for_key ( "mail-address-count", "/apps/evolution/mail/display/address_count"); e_shell_settings_install_property_for_key ( "mail-charset", "/apps/evolution/mail/display/charset"); e_shell_settings_install_property_for_key ( "mail-check-for-junk", "/apps/evolution/mail/junk/check_incoming"); e_shell_settings_install_property_for_key ( "mail-citation-color", "/apps/evolution/mail/display/citation_colour"); e_shell_settings_install_property_for_key ( "mail-confirm-expunge", "/apps/evolution/mail/prompts/expunge"); e_shell_settings_install_property_for_key ( "mail-confirm-unwanted-html", "/apps/evolution/mail/prompts/unwanted_html"); e_shell_settings_install_property_for_key ( "mail-empty-junk-on-exit", "/apps/evolution/mail/junk/empty_on_exit"); e_shell_settings_install_property_for_key ( "mail-empty-trash-on-exit", "/apps/evolution/mail/trash/empty_on_exit"); e_shell_settings_install_property_for_key ( "mail-enable-search-folders", "/apps/evolution/mail/display/enable_vfolders"); e_shell_settings_install_property_for_key ( "mail-font-monospace", "/apps/evolution/mail/display/fonts/monospace"); e_shell_settings_install_property_for_key ( "mail-font-variable", "/apps/evolution/mail/display/fonts/variable"); e_shell_settings_install_property_for_key ( "mail-force-message-limit", "/apps/evolution/mail/display/force_message_limit"); /* This value corresponds to MailConfigForwardStyle enum. */ e_shell_settings_install_property_for_key ( "mail-forward-style", "/apps/evolution/mail/format/forward_style"); /* This value corresponds to MailConfigHTTPMode enum. */ e_shell_settings_install_property_for_key ( "mail-image-loading-policy", "/apps/evolution/mail/display/load_http_images"); e_shell_settings_install_property_for_key ( "mail-magic-spacebar", "/apps/evolution/mail/display/magic_spacebar"); e_shell_settings_install_property_for_key ( "mail-mark-citations", "/apps/evolution/mail/display/mark_citations"); e_shell_settings_install_property_for_key ( "mail-mark-seen", "/apps/evolution/mail/display/mark_seen"); e_shell_settings_install_property_for_key ( "mail-mark-seen-timeout", "/apps/evolution/mail/display/mark_seen_timeout"); e_shell_settings_install_property_for_key ( "mail-message-text-part-limit", "/apps/evolution/mail/display/message_text_part_limit"); e_shell_settings_install_property_for_key ( "mail-only-local-photos", "/apps/evolution/mail/display/photo_local"); e_shell_settings_install_property_for_key ( "mail-show-real-date", "/apps/evolution/mail/display/show_real_date"); e_shell_settings_install_property_for_key ( "mail-prompt-delete-in-vfolder", "/apps/evolution/mail/prompts/delete_in_vfolder"); /* This value corresponds to MailConfigReplyStyle enum, * but the ordering of the combo box items in preferences * has changed. We use transformation functions there. */ e_shell_settings_install_property_for_key ( "mail-reply-style", "/apps/evolution/mail/format/reply_style"); e_shell_settings_install_property_for_key ( "mail-show-animated-images", "/apps/evolution/mail/display/animated_images"); e_shell_settings_install_property_for_key ( "mail-show-sender-photo", "/apps/evolution/mail/display/sender_photo"); e_shell_settings_install_property_for_key ( "mail-side-bar-search", "/apps/evolution/mail/display/side_bar_search"); e_shell_settings_install_property_for_key ( "mail-use-custom-fonts", "/apps/evolution/mail/display/fonts/use_custom"); /*** Composer Preferences ***/ e_shell_settings_install_property_for_key ( "composer-charset", "/apps/evolution/mail/composer/charset"); e_shell_settings_install_property_for_key ( "composer-format-html", "/apps/evolution/mail/composer/send_html"); e_shell_settings_install_property_for_key ( "composer-inline-spelling", "/apps/evolution/mail/composer/inline_spelling"); e_shell_settings_install_property_for_key ( "composer-magic-links", "/apps/evolution/mail/composer/magic_links"); e_shell_settings_install_property_for_key ( "composer-magic-smileys", "/apps/evolution/mail/composer/magic_smileys"); e_shell_settings_install_property_for_key ( "composer-outlook-filenames", "/apps/evolution/mail/composer/outlook_filenames"); e_shell_settings_install_property_for_key ( "composer-prompt-only-bcc", "/apps/evolution/mail/prompts/only_bcc"); e_shell_settings_install_property_for_key ( "composer-prompt-empty-subject", "/apps/evolution/mail/prompts/empty_subject"); e_shell_settings_install_property_for_key ( "composer-reply-start-bottom", "/apps/evolution/mail/composer/reply_start_bottom"); e_shell_settings_install_property_for_key ( "composer-request-receipt", "/apps/evolution/mail/composer/request_receipt"); e_shell_settings_install_property_for_key ( "composer-spell-color", "/apps/evolution/mail/composer/spell_color"); e_shell_settings_install_property_for_key ( "composer-top-signature", "/apps/evolution/mail/composer/top_signature"); e_shell_settings_install_property_for_key ( "composer-no-signature-delim", "/apps/evolution/mail/composer/no_signature_delim"); }