aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/junk-mail-settings.c
diff options
context:
space:
mode:
authorVibha Yadav <yvibha@novell.com>2011-05-04 20:04:48 +0800
committerVibha Yadav <yvibha@novell.com>2011-05-04 20:04:48 +0800
commit218bd67a1e0ab29971d3bf7f1c111210b0d74e2d (patch)
tree2197d7861360e373ffb4835990fd35ced331b63e /plugins/groupwise-features/junk-mail-settings.c
parentac393ed4017fec025c3dd66d4edbee2bea11cb06 (diff)
downloadgsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.tar
gsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.tar.gz
gsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.tar.bz2
gsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.tar.lz
gsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.tar.xz
gsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.tar.zst
gsoc2013-evolution-218bd67a1e0ab29971d3bf7f1c111210b0d74e2d.zip
Bug 649365 - Creation of new repository evolution-groupwise
Removing groupwise plugin code from evolution.
Diffstat (limited to 'plugins/groupwise-features/junk-mail-settings.c')
-rw-r--r--plugins/groupwise-features/junk-mail-settings.c119
1 files changed, 0 insertions, 119 deletions
diff --git a/plugins/groupwise-features/junk-mail-settings.c b/plugins/groupwise-features/junk-mail-settings.c
deleted file mode 100644
index a633f0bcc3..0000000000
--- a/plugins/groupwise-features/junk-mail-settings.c
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * 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/>
- *
- *
- * Authors:
- * Vivek Jain <jvivek@novell.com>
- *
- * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
- *
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <glib/gi18n-lib.h>
-#include <string.h>
-#include <stdio.h>
-#include <gtk/gtk.h>
-
-#include <mail/e-mail-reader.h>
-#include <mail/message-list.h>
-
-#include <e-gw-connection.h>
-
-#include "gw-ui.h"
-#include "share-folder.h"
-#include "junk-settings.h"
-
-static void
-abort_changes (JunkSettings *js)
-{
- g_object_run_dispose ((GObject *)js);
-}
-
-static void
-junk_dialog_response (GtkWidget *dialog, gint response, JunkSettings *js)
-{
- if (response == GTK_RESPONSE_ACCEPT) {
- commit_changes (js);
- abort_changes (js);
- }
- else
- abort_changes (js);
-
- gtk_widget_destroy (dialog);
-
-}
-
-void
-gw_junk_mail_settings_cb (GtkAction *action, EShellView *shell_view)
-{
- GtkWidget *dialog ,*w, *notebook, *box;
- GtkWidget *content_area;
- JunkSettings *junk_tab;
- gint page_count =0;
- EGwConnection *cnc;
- gchar *msg;
- EShellContent *shell_content;
- EMailReader *reader;
- CamelFolder *folder;
-
- shell_content = e_shell_view_get_shell_content (shell_view);
-
- reader = E_MAIL_READER (shell_content);
- folder = e_mail_reader_get_folder (reader);
- g_return_if_fail (folder != NULL);
-
- cnc = get_cnc (camel_folder_get_parent_store (folder));
-
- 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);
- content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
- gtk_window_set_default_size ((GtkWindow *) dialog, 292, 260);
- gtk_widget_ensure_style (dialog);
- gtk_container_set_border_width (GTK_CONTAINER (content_area), 12);
- box = gtk_vbox_new (FALSE, 6);
- w = gtk_label_new ("");
- msg = g_strdup_printf("<b>%s</b>", _("Junk Mail Settings"));
- gtk_label_set_markup (GTK_LABEL (w), msg);
- gtk_box_pack_start ((GtkBox *) box, w, FALSE, FALSE, 6);
- g_free (msg);
-
- junk_tab = junk_settings_new (cnc);
- w = (GtkWidget *)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 ((GtkNotebook *)notebook, box, NULL);
- gtk_box_pack_start (
- GTK_BOX (content_area), notebook, TRUE, TRUE, 0);
- }
-
- if (page_count == 0)
- gtk_box_pack_start (
- GTK_BOX (content_area), box, TRUE, TRUE, 0);
-
- g_signal_connect (dialog, "response", G_CALLBACK (junk_dialog_response), junk_tab);
- gtk_widget_show_all (dialog);
-}