683706bfe499d9a03be812be71425f8ea86e8e7d
[claws.git] / src / plugins / gdata / cm_gdata_prefs.c
1 /* GData plugin for Claws-Mail
2  * Copyright (C) 2011 Holger Berndt
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include "config.h"
21 #  include "claws-features.h"
22 #endif
23
24 #include <glib.h>
25 #include <glib/gi18n.h>
26
27 #include "cm_gdata_prefs.h"
28 #include "gdata_plugin.h"
29 #include "cm_gdata_contacts.h"
30
31 #include "prefs_gtk.h"
32 #include "main.h"
33
34 #include <gtk/gtk.h>
35
36
37 typedef struct
38 {
39   PrefsPage page;
40   GtkWidget *entry_username;
41   GtkWidget *spin_max_num_results;
42   GtkWidget *spin_max_cache_age;
43 } CmGDataPage;
44
45 CmGDataPrefs cm_gdata_config;
46 CmGDataPage gdata_page;
47
48 PrefParam cm_gdata_param[] =
49 {
50     {"username", NULL, &cm_gdata_config.username, P_STRING,
51         &gdata_page.entry_username, prefs_set_data_from_entry, prefs_set_entry},
52
53     { "max_num_results", "1000", &cm_gdata_config.max_num_results, P_INT,
54         &gdata_page.spin_max_num_results, prefs_set_data_from_spinbtn, prefs_set_spinbtn},
55
56     { "max_cache_age", "300", &cm_gdata_config.max_cache_age, P_INT,
57         &gdata_page.spin_max_cache_age, prefs_set_data_from_spinbtn, prefs_set_spinbtn},
58
59     {NULL, NULL, NULL, P_OTHER, NULL, NULL, NULL }
60 };
61
62 static void gdata_create_prefs_page(PrefsPage *page, GtkWindow *window, gpointer data)
63 {
64   GtkWidget *vbox;
65   GtkWidget *frame;
66   GtkWidget *spinner;
67   GtkWidget *table;
68   GtkWidget *label;
69   GtkWidget *entry;
70
71   vbox = gtk_vbox_new(FALSE, 0);
72
73   /* auth frame */
74   frame = gtk_frame_new(_("Authentication"));
75   gtk_container_set_border_width(GTK_CONTAINER(frame), 5);
76   gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 0);
77
78   /* username */
79   table = gtk_table_new(2, 2, FALSE);
80   label = gtk_label_new(_("Username:"));
81   gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
82   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
83   entry = gtk_entry_new();
84   gtk_widget_set_size_request(entry, 250, -1);
85   gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
86   gdata_page.entry_username = entry;
87   gtk_container_add(GTK_CONTAINER(frame), table);
88
89   table = gtk_table_new(2, 2, FALSE);
90   gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
91   label = gtk_label_new(_("Polling interval (seconds):"));
92   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
93   gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
94   spinner = gtk_spin_button_new_with_range(10, 10000, 10);
95   gtk_table_attach(GTK_TABLE(table), spinner, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
96   gdata_page.spin_max_cache_age = spinner;
97
98   label = gtk_label_new(_("Maximum number of results:"));
99   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 4, 4);
100   gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
101   spinner = gtk_spin_button_new_with_range(0, G_MAXINT, 50);
102   gtk_table_attach(GTK_TABLE(table), spinner, 1, 2, 1, 2, GTK_FILL, GTK_FILL, 4, 4);
103   gdata_page.spin_max_num_results = spinner;
104
105   gtk_widget_show_all(vbox);
106   page->widget = vbox;
107
108   prefs_set_dialog(cm_gdata_param);
109 }
110
111 static void gdata_destroy_prefs_page(PrefsPage *page)
112 {
113 }
114
115 static void gdata_save_prefs(PrefsPage *page)
116 {
117   int old_max_cache_age = cm_gdata_config.max_cache_age;
118
119   if (!page->page_open)
120     return;
121
122   prefs_set_data_from_dialog(cm_gdata_param);
123
124   cm_gdata_update_contacts_cache();
125   if(old_max_cache_age != cm_gdata_config.max_cache_age)
126     cm_gdata_update_contacts_update_timer();
127 }
128
129 void cm_gdata_prefs_init(void)
130 {
131   static gchar *path[3];
132
133   path[0] = _("Plugins");
134   path[1] = _("GData");
135   path[2] = NULL;
136
137   gdata_page.page.path = path;
138   gdata_page.page.create_widget = gdata_create_prefs_page;
139   gdata_page.page.destroy_widget = gdata_destroy_prefs_page;
140   gdata_page.page.save_page = gdata_save_prefs;
141   gdata_page.page.weight = 40.0;
142   prefs_gtk_register_page((PrefsPage*) &gdata_page);
143 }
144
145 void cm_gdata_prefs_done(void)
146 {
147   if(!claws_is_exiting()) {
148     prefs_gtk_unregister_page((PrefsPage*) &gdata_page);
149   }
150 }