fix CID 1596595: Resource leaks, and CID 1596594: (CHECKED_RETURN)
[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 "password.h"
28 #include "cm_gdata_prefs.h"
29 #include "gdata_plugin.h"
30 #include "cm_gdata_contacts.h"
31
32 #include "prefs_gtk.h"
33 #include "main.h"
34
35 #include <gtk/gtk.h>
36
37
38 typedef struct
39 {
40   PrefsPage page;
41   GtkWidget *entry_username;
42   GtkWidget *spin_max_num_results;
43   GtkWidget *spin_max_cache_age;
44 } CmGDataPage;
45
46 CmGDataPrefs cm_gdata_config;
47 CmGDataPage gdata_page;
48
49 PrefParam cm_gdata_param[] =
50 {
51     {"username", NULL, &cm_gdata_config.username, P_STRING,
52         &gdata_page.entry_username, prefs_set_data_from_entry, prefs_set_entry},
53
54     { "max_num_results", "1000", &cm_gdata_config.max_num_results, P_INT,
55         &gdata_page.spin_max_num_results, prefs_set_data_from_spinbtn, prefs_set_spinbtn},
56
57     { "max_cache_age", "300", &cm_gdata_config.max_cache_age, P_INT,
58         &gdata_page.spin_max_cache_age, prefs_set_data_from_spinbtn, prefs_set_spinbtn},
59
60     {"oauth2_refresh_token", NULL, &cm_gdata_config.oauth2_refresh_token, P_PASSWORD,
61         NULL, NULL, NULL},
62
63     {NULL, NULL, NULL, P_OTHER, NULL, NULL, NULL }
64 };
65
66 static void gdata_create_prefs_page(PrefsPage *page, GtkWindow *window, gpointer data)
67 {
68   GtkWidget *vbox;
69   GtkWidget *frame;
70   GtkWidget *spinner;
71   GtkWidget *table;
72   GtkWidget *label;
73   GtkWidget *entry;
74
75   vbox = gtk_vbox_new(FALSE, 0);
76
77   /* auth frame */
78   frame = gtk_frame_new(_("Authentication"));
79   gtk_container_set_border_width(GTK_CONTAINER(frame), 5);
80   gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 0);
81
82   /* username */
83   table = gtk_table_new(2, 2, FALSE);
84   label = gtk_label_new(_("Username:"));
85   gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
86   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
87   entry = gtk_entry_new();
88   gtk_widget_set_size_request(entry, 250, -1);
89   gtk_table_attach(GTK_TABLE(table), entry, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
90   gdata_page.entry_username = entry;
91   gtk_container_add(GTK_CONTAINER(frame), table);
92
93   table = gtk_table_new(2, 2, FALSE);
94   gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
95   label = gtk_label_new(_("Polling interval (seconds):"));
96   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
97   gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
98   spinner = gtk_spin_button_new_with_range(10, 10000, 10);
99   gtk_table_attach(GTK_TABLE(table), spinner, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 4, 4);
100   gdata_page.spin_max_cache_age = spinner;
101
102   label = gtk_label_new(_("Maximum number of results:"));
103   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 4, 4);
104   gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
105   spinner = gtk_spin_button_new_with_range(0, G_MAXINT, 50);
106   gtk_table_attach(GTK_TABLE(table), spinner, 1, 2, 1, 2, GTK_FILL, GTK_FILL, 4, 4);
107   gdata_page.spin_max_num_results = spinner;
108
109   gtk_widget_show_all(vbox);
110   page->widget = vbox;
111
112   prefs_set_dialog(cm_gdata_param);
113 }
114
115 static void gdata_destroy_prefs_page(PrefsPage *page)
116 {
117 }
118
119 static void gdata_save_prefs(PrefsPage *page)
120 {
121   int old_max_cache_age = cm_gdata_config.max_cache_age;
122
123   if (!page->page_open)
124     return;
125
126   prefs_set_data_from_dialog(cm_gdata_param);
127
128   cm_gdata_update_contacts_cache();
129   if(old_max_cache_age != cm_gdata_config.max_cache_age)
130     cm_gdata_update_contacts_update_timer();
131 }
132
133 void cm_gdata_prefs_init(void)
134 {
135   static gchar *path[3];
136
137   path[0] = _("Plugins");
138   path[1] = _("GData");
139   path[2] = NULL;
140
141   gdata_page.page.path = path;
142   gdata_page.page.create_widget = gdata_create_prefs_page;
143   gdata_page.page.destroy_widget = gdata_destroy_prefs_page;
144   gdata_page.page.save_page = gdata_save_prefs;
145   gdata_page.page.weight = 40.0;
146   prefs_gtk_register_page((PrefsPage*) &gdata_page);
147 }
148
149 void cm_gdata_prefs_done(void)
150 {
151   if(!claws_is_exiting()) {
152     prefs_gtk_unregister_page((PrefsPage*) &gdata_page);
153   }
154 }