0.8.10claws100
[claws.git] / src / plugins / spamassassin / spamassassin_gtk.c
index ba0183e94d1c707f612720d409328a5eb123081d..fe04f52d0028064b878250dd9ca3fe15aa0ac3d1 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2002 Hiroyuki Yamamoto and the Sylpheed-Claws Team
+ * Copyright (C) 1999-2003 Hiroyuki Yamamoto and the Sylpheed-Claws Team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -65,6 +65,7 @@ static void foldersel_cb(GtkWidget *widget, gpointer data)
 static void spamassassin_create_widget_func(PrefsPage * _page, GtkWindow *window, gpointer data)
 {
        struct SpamAssassinPage *page = (struct SpamAssassinPage *) _page;
+       SpamAssassinConfig *config;
 
        /* ------------------ code made by glade -------------------- */
        GtkWidget *table1;
@@ -138,7 +139,7 @@ static void spamassassin_create_widget_func(PrefsPage * _page, GtkWindow *window
        gtk_widget_show(hostname);
        gtk_box_pack_start(GTK_BOX(hbox1), hostname, TRUE, TRUE, 0);
 
-       label5 = gtk_label_new(_(":"));
+       label5 = gtk_label_new(":");
        gtk_widget_show(label5);
        gtk_box_pack_start(GTK_BOX(hbox1), label5, FALSE, FALSE, 0);
        gtk_misc_set_padding(GTK_MISC(label5), 8, 0);
@@ -185,7 +186,7 @@ static void spamassassin_create_widget_func(PrefsPage * _page, GtkWindow *window
                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
                         (GtkAttachOptions) (0), 0, 0);
 
-       button4 = gtk_button_new_with_label(_("..."));
+       button4 = gtk_button_new_with_label("...");
        gtk_widget_show(button4);
        gtk_table_attach(GTK_TABLE(table1), button4, 2, 3, 4, 5,
                         (GtkAttachOptions) (GTK_SHRINK | GTK_FILL),
@@ -199,15 +200,19 @@ static void spamassassin_create_widget_func(PrefsPage * _page, GtkWindow *window
        gtk_misc_set_alignment(GTK_MISC(label11), 0, 0.5);
        /* --------------------------------------------------------- */
 
+       config = spamassassin_get_config();
+
        gtk_widget_set_usize(GTK_WIDGET(port), 64, -1);
        gtk_signal_connect(GTK_OBJECT(button4), "released", GTK_SIGNAL_FUNC(foldersel_cb), page);
 
-       gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(enable), spamassassin_enable);
-       gtk_entry_set_text(GTK_ENTRY(hostname), spamassassin_hostname);
-       gtk_spin_button_set_value(GTK_SPIN_BUTTON(port), (float) spamassassin_port);
-       gtk_spin_button_set_value(GTK_SPIN_BUTTON(max_size), (float) spamassassin_max_size);
-       gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(receive_spam), spamassassin_receive_spam);
-       gtk_entry_set_text(GTK_ENTRY(save_folder), spamassassin_save_folder);
+       gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(enable), config->enable);
+       if (config->hostname != NULL)
+               gtk_entry_set_text(GTK_ENTRY(hostname), config->hostname);
+       gtk_spin_button_set_value(GTK_SPIN_BUTTON(port), (float) config->port);
+       gtk_spin_button_set_value(GTK_SPIN_BUTTON(max_size), (float) config->max_size);
+       gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(receive_spam), config->receive_spam);
+       if (config->save_folder != NULL)
+               gtk_entry_set_text(GTK_ENTRY(save_folder), config->save_folder);
        
        page->enable = enable;
        page->hostname = hostname;
@@ -227,47 +232,45 @@ static void spamassassin_destroy_widget_func(PrefsPage *_page)
 static void spamassassin_save_func(PrefsPage *_page)
 {
        struct SpamAssassinPage *page = (struct SpamAssassinPage *) _page;
-       gchar *tmp;
+       SpamAssassinConfig *config;
 
        debug_print("Saving SpamAssassin Page\n");
 
-       spamassassin_enable = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->enable));
-       if (spamassassin_hostname)
-               g_free(spamassassin_hostname);
-       spamassassin_hostname = gtk_editable_get_chars(GTK_EDITABLE(page->hostname), 0, -1);
-       tmp = gtk_editable_get_chars(GTK_EDITABLE(page->port), 0, -1);
-       spamassassin_port = atoi(tmp);
-       g_free(tmp);
-       spamassassin_max_size = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(page->max_size));
-       spamassassin_receive_spam = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->receive_spam));
-       if (spamassassin_save_folder)
-               g_free(spamassassin_save_folder);
-       spamassassin_save_folder = gtk_editable_get_chars(GTK_EDITABLE(page->save_folder), 0, -1);
+       config = spamassassin_get_config();
 
-       spamassassin_save_config();
-}
+       /* enable */
+       config->enable = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->enable));
 
-static void spamassassin_destroy_func(PrefsPage *_page)
-{
-       debug_print("Destroying SpamAssassin Page\n");
-       g_free(_page);
+       /* hostname */
+       g_free(config->hostname);
+       config->hostname = gtk_editable_get_chars(GTK_EDITABLE(page->hostname), 0, -1);
+
+       /* port */
+       config->port = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(page->port));
+
+       /* maxsize */
+       config->max_size = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(page->max_size));
+
+       /* receive_spam */
+       config->receive_spam = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->receive_spam));
+
+       /* save_folder */
+       g_free(config->save_folder);
+       config->save_folder = gtk_editable_get_chars(GTK_EDITABLE(page->save_folder), 0, -1);
+
+       spamassassin_save_config();
 }
 
-static struct SpamAssassinPage *spamassassin_page;
+static struct SpamAssassinPage spamassassin_page;
 
 gint plugin_init(gchar **error)
 {
-       struct SpamAssassinPage *page;
-
-       page = g_new0(struct SpamAssassinPage, 1);
-       page->page.path = _("Filtering/SpamAssassin");
-       page->page.create_widget = spamassassin_create_widget_func;
-       page->page.destroy_widget = spamassassin_destroy_widget_func;
-       page->page.save_page = spamassassin_save_func;
-       page->page.destroy_page = spamassassin_destroy_func;
-       prefs_gtk_register_page((PrefsPage *) page);
+       spamassassin_page.page.path = "Filtering/SpamAssassin";
+       spamassassin_page.page.create_widget = spamassassin_create_widget_func;
+       spamassassin_page.page.destroy_widget = spamassassin_destroy_widget_func;
+       spamassassin_page.page.save_page = spamassassin_save_func;
 
-       spamassassin_page = page;
+       prefs_gtk_register_page((PrefsPage *) &spamassassin_page);
 
        debug_print("SpamAssassin GTK plugin loaded\n");
        return 0;       
@@ -275,8 +278,7 @@ gint plugin_init(gchar **error)
 
 void plugin_done()
 {
-       prefs_gtk_unregister_page((PrefsPage *) spamassassin_page);
-       g_free(spamassassin_page);
+       prefs_gtk_unregister_page((PrefsPage *) &spamassassin_page);
 
        debug_print("SpamAssassin GTK plugin unloaded\n");
 }
@@ -291,13 +293,13 @@ const gchar *plugin_desc()
        return "This plugin provides a Preferences page for the SpamAssassin "
               "plugin.\n"
               "\n"
-              "You will find the options in the Preferences window under "
-              "Filtering/SpamAssassin.\n"
+              "You will find the options in the Other Preferences window "
+              "under Filtering/SpamAssassin.\n"
               "\n"
               "With this plugin you can enable the filtering, change the "
-              "SpamAssassin server's host  and port, the maximum size that "
-              "a message is allowed to have (if the message is larger it "
-              "will not be checked), set the option if spam mails "
-              "should be received at all (default) and select the folder "
-              "where spam mails will be saved.\n";
+              "SpamAssassin server host and port, set the maximum size of "
+              "messages to be checked, (if the message is larger it will "
+              "not be checked), configure whether spam mail should be received "
+              "(default: Yes) and select the folder where spam mail will be "
+              "saved.\n";
 }