diff options
author | Vivek Jain <jvivek@novell.com> | 2005-07-07 17:02:29 +0800 |
---|---|---|
committer | Jain Vivek <jvivek@src.gnome.org> | 2005-07-07 17:02:29 +0800 |
commit | 832ce2665394262b1035ec55c6407cd33d220e20 (patch) | |
tree | 398319e56e86870b5174621879b27c396affe982 /plugins/groupwise-features/junk-mail-settings.c | |
parent | 92841e59f4d84c832d27c45e306d00bc79daaaf2 (diff) | |
download | gsoc2013-evolution-832ce2665394262b1035ec55c6407cd33d220e20.tar.gz gsoc2013-evolution-832ce2665394262b1035ec55c6407cd33d220e20.tar.zst gsoc2013-evolution-832ce2665394262b1035ec55c6407cd33d220e20.zip |
added: junk-mail-settings.c junk-settings.c junk-settings.h
2005-07-07 Vivek Jain <jvivek@novell.com>
added:
junk-mail-settings.c junk-settings.c junk-settings.h
junk-settings.glade , for displaying/maipulating junk mail settings
svn path=/trunk/; revision=29664
Diffstat (limited to 'plugins/groupwise-features/junk-mail-settings.c')
-rw-r--r-- | plugins/groupwise-features/junk-mail-settings.c | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/plugins/groupwise-features/junk-mail-settings.c b/plugins/groupwise-features/junk-mail-settings.c new file mode 100644 index 0000000000..99008b3e01 --- /dev/null +++ b/plugins/groupwise-features/junk-mail-settings.c @@ -0,0 +1,146 @@ +/* + * Copyright (C) 2005 Novell, Inc. + * + * Author(s): Vivek Jain <jvivek@novell.com> + * + * 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. + */ + + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include <glib/gi18n-lib.h> +#include <string.h> +#include <stdio.h> +#include <gtk/gtk.h> + +#include "camel/camel-store.h" +#include "camel/camel-folder.h" +#include "camel/camel-medium.h" +#include "camel/camel-mime-message.h" +#include "mail/em-popup.h" +#include <mail/em-folder-view.h> +#include <e-gw-connection.h> +#include "mail/em-account-editor.h" +#include "e-util/e-account.h" +#include "mail/em-config.h" +#include "share-folder.h" +#include "junk-settings.h" + +void +org_gnome_junk_settings(EPlugin *ep, EMPopupTargetSelect *t); + +static void +abort_changes (JunkSettings *js) +{ + g_object_run_dispose ((GObject *)js); +} + +static void +junk_dialog_response (GtkWidget *dialog, int response, JunkSettings *js) +{ + if (response == GTK_RESPONSE_ACCEPT) { + commit_changes(js); + abort_changes (js); + } + else + abort_changes (js); + + gtk_widget_destroy (dialog); + +} + +static void +junk_mail_settings (EPopup *ep, EPopupItem *item, void *data) +{ + GtkWidget *dialog ,*w, *notebook, *box; + JunkSettings *junk_tab; + int page_count =0; + EGwConnection *cnc; + CamelFolder *folder = (CamelFolder *)data; + CamelStore *store = folder->parent_store; + cnc = get_cnc (store); + + dialog = gtk_dialog_new_with_buttons ("Junk Settings", + NULL, + GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_STOCK_CANCEL, + GTK_RESPONSE_REJECT, + GTK_STOCK_OK, + GTK_RESPONSE_ACCEPT, + NULL); + gtk_window_set_default_size ((GtkWindow *) dialog, 292, 260); + gtk_widget_ensure_style (dialog); + gtk_container_set_border_width ((GtkContainer *) ((GtkDialog *) dialog)->vbox, 12); + box = gtk_vbox_new (FALSE, 6); + w = gtk_label_new (); + gtk_label_set_markup (GTK_LABEL (w), "<b>Junk Mail Settings</b>"); + gtk_box_pack_start ((GtkBox *) box, w, FALSE, FALSE, 6); + + junk_tab = junk_settings_new (cnc); + w = junk_tab->vbox; + gtk_box_pack_start ((GtkBox *) box, w, FALSE, FALSE, 6); + + /*We might have to add more options for settings i.e. more pages*/ + while (page_count > 0 ){ + notebook = gtk_notebook_new (); + gtk_notebook_append_page (notebook, box, NULL); + gtk_box_pack_start ((GtkBox *) ((GtkDialog *) dialog)->vbox, notebook, TRUE, TRUE, 0); + } + + if (page_count == 0) + gtk_box_pack_start ((GtkBox *) ((GtkDialog *) dialog)->vbox, box, TRUE, TRUE, 0); + + g_signal_connect (dialog, "response", G_CALLBACK (junk_dialog_response), junk_tab); + gtk_widget_show_all (dialog); +} + +static EPopupItem popup_items[] = { +{ E_POPUP_ITEM, "50.emfv.05", N_("Junk Mail Settings..."), junk_mail_settings, NULL, NULL, 0, EM_POPUP_SELECT_MANY|EM_FOLDER_VIEW_SELECT_LISTONLY} +}; + +static void +popup_free (EPopup *ep, GSList *items, void *data) +{ +g_slist_free (items); +} + +void +org_gnome_junk_settings(EPlugin *ep, EMPopupTargetSelect *t) +{ + GSList *menus = NULL; + + int i = 0; + static int first =1; + + if (! g_strrstr (t->uri, "groupwise://")) + return ; + + /* for translation*/ + if (first == 1) { + popup_items[0].label = _(popup_items[0].label); + + } + + first++; + + for (i = 0; i < sizeof (popup_items) / sizeof (popup_items[0]); i++) + menus = g_slist_prepend (menus, &popup_items[i]); + + e_popup_add_items (t->target.popup, menus, NULL, popup_free, t->folder); + +} + |