Fix pref label
[claws.git] / src / plugins / rssyl / rssyl_gtk.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2004 Hiroyuki Yamamoto
4  * This file (C) 2005 Andrej Kacian <andrej@kacian.sk>
5  *
6  * - GUI handling functions
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #include "claws-features.h"
26 #endif
27
28 #include <glib.h>
29 #include <glib/gi18n.h>
30
31 #include <gtk/gtk.h>
32
33 #include "gtk/menu.h"
34 #include "mainwindow.h"
35 #include "inputdialog.h"
36 #include "folderview.h"
37 #include "alertpanel.h"
38 #include "summaryview.h"
39
40 #include "main.h"
41 #include "gtkutils.h"
42
43 #include "feed.h"
44 #include "feedprops.h"
45 #include "rssyl.h"
46 #include "rssyl_cb_gtk.h"
47 #include "rssyl_cb_menu.h"
48 #include "rssyl_gtk.h"
49 #include "rssyl_prefs.h"
50
51 static char *rssyl_popup_menu_labels[] =
52 {
53         N_("_Refresh feed"),
54         N_("Refresh _all feeds"),
55         N_("Subscribe _new feed..."),
56         N_("_Unsubscribe feed..."),
57         N_("Feed pr_operties..."),
58         N_("Import feed list..."),
59         N_("Rena_me..."),
60         N_("_Create new folder..."),
61         N_("_Delete folder..."),
62         N_("Remove folder _tree..."),
63         NULL
64 };
65
66 static GtkActionEntry rssyl_popup_entries[] = 
67 {
68         {"FolderViewPopup/RefreshFeed",         NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_refresh_cb) },
69         {"FolderViewPopup/RefreshAllFeeds",     NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_refresh_all_cb) },
70
71         {"FolderViewPopup/NewFeed",             NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_new_feed_cb) },
72         {"FolderViewPopup/RemoveFeed",          NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_remove_feed_cb) },
73         {"FolderViewPopup/FeedProperties",      NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_prop_cb) },
74         {"FolderViewPopup/ImportFeedlist",      NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_import_feed_list_cb) },
75
76         {"FolderViewPopup/RenameFolder",        NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_rename_cb) },
77
78         {"FolderViewPopup/NewFolder",           NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_new_folder_cb) },
79         {"FolderViewPopup/RemoveFolder",        NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_remove_folder_cb) },
80
81         {"FolderViewPopup/RemoveMailbox",       NULL, NULL, NULL, NULL, G_CALLBACK(rssyl_remove_rss_cb) },
82
83 };
84
85 static void rssyl_add_menuitems(GtkUIManager *ui_manager, FolderItem *item)
86 {
87         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "RefreshFeed", "FolderViewPopup/RefreshFeed", GTK_UI_MANAGER_MENUITEM)
88         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "RefreshAllFeeds", "FolderViewPopup/RefreshAllFeeds", GTK_UI_MANAGER_MENUITEM)
89         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "SeparatorRSS1", "FolderViewPopup/---", GTK_UI_MANAGER_SEPARATOR)
90         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "NewFeed", "FolderViewPopup/NewFeed", GTK_UI_MANAGER_MENUITEM)
91         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "RemoveFeed", "FolderViewPopup/RemoveFeed", GTK_UI_MANAGER_MENUITEM)
92         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "FeedProperties", "FolderViewPopup/FeedProperties", GTK_UI_MANAGER_MENUITEM)
93         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "ImportFeedlist", "FolderViewPopup/ImportFeedlist", GTK_UI_MANAGER_MENUITEM)
94         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "SeparatorRSS2", "FolderViewPopup/---", GTK_UI_MANAGER_SEPARATOR)
95         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "RenameFolder", "FolderViewPopup/RenameFolder", GTK_UI_MANAGER_MENUITEM)
96         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "SeparatorRSS3", "FolderViewPopup/---", GTK_UI_MANAGER_SEPARATOR)
97         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "NewFolder", "FolderViewPopup/NewFolder", GTK_UI_MANAGER_MENUITEM)
98         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "RemoveFolder", "FolderViewPopup/RemoveFolder", GTK_UI_MANAGER_MENUITEM)
99         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "SeparatorRSS4", "FolderViewPopup/---", GTK_UI_MANAGER_SEPARATOR)
100         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "RemoveMailbox", "FolderViewPopup/RemoveMailbox", GTK_UI_MANAGER_MENUITEM)
101         MENUITEM_ADDUI_MANAGER(ui_manager, "/Popup/FolderViewPopup", "SeparatorRSS5", "FolderViewPopup/---", GTK_UI_MANAGER_SEPARATOR)
102 }
103
104 static void rssyl_set_sensitivity(GtkUIManager *ui_manager, FolderItem *item)
105 {
106 #define SET_SENS(name, sens) \
107         cm_menu_set_sensitive_full(ui_manager, "Popup/"name, sens)
108
109         RSSylFolderItem *ritem = (RSSylFolderItem *)item;
110         SET_SENS("FolderViewPopup/RefreshFeed", folder_item_parent(item) != NULL && ritem->url);
111         SET_SENS("FolderViewPopup/RefreshAllFeeds", folder_item_parent(item) == NULL );
112         SET_SENS("FolderViewPopup/NewFeed", TRUE);
113         SET_SENS("FolderViewPopup/ImportFeedlist", TRUE );
114         SET_SENS("FolderViewPopup/RemoveFeed", folder_item_parent(item) != NULL && ritem->url );
115         SET_SENS("FolderViewPopup/FeedProperties", folder_item_parent(item) != NULL && ritem->url );
116         SET_SENS("FolderViewPopup/RenameFolder", folder_item_parent(item) != NULL );
117         SET_SENS("FolderViewPopup/NewFolder", TRUE );
118         SET_SENS("FolderViewPopup/RemoveFolder", folder_item_parent(item) != NULL && !ritem->url );
119         SET_SENS("FolderViewPopup/RemoveMailbox", folder_item_parent(item) == NULL );
120
121 #undef SET_SENS
122 }
123
124 static FolderViewPopup rssyl_popup =
125 {
126         "rssyl",
127         "<rssyl>",
128         rssyl_popup_entries,
129         G_N_ELEMENTS(rssyl_popup_entries),
130         NULL, 0,
131         NULL, 0, 0, NULL,
132         rssyl_add_menuitems,
133         rssyl_set_sensitivity
134 };
135
136 static void rssyl_fill_popup_menu_labels(void)
137 {
138         gint i;
139
140         for( i = 0; rssyl_popup_menu_labels[i] != NULL; i++ ) {
141                 (rssyl_popup_entries[i]).label = _(rssyl_popup_menu_labels[i]);
142         }
143 }
144
145 static void rssyl_add_mailbox(GtkAction *action, gpointer callback_data)
146 {
147         MainWindow *mainwin = (MainWindow *) callback_data;
148         gchar *path;
149         gchar *base = NULL;
150         Folder *folder;
151
152         path = input_dialog(_("Add RSS folder tree"),
153                         _("Enter name for a new RSS folder tree."),
154                         RSSYL_DEFAULT_MAILBOX);
155         if( !path ) return;
156
157         if( folder_find_from_path(path) ) {
158                 alertpanel_error(_("The mailbox '%s' already exists."), path);
159                 g_free(path);
160                 return;
161         }
162
163         base = g_path_get_basename(path);
164         folder = folder_new(folder_get_class_from_string("rssyl"),
165                         base, path);
166         g_free(base);
167
168         if( folder->klass->create_tree(folder) < 0 ) {
169                 alertpanel_error(_("Creation of folder tree failed.\n"
170                                 "Maybe some files already exist, or you don't have the permission "
171                                 "to write there?"));
172                 folder_destroy(folder);
173                 return;
174         }
175
176         folder_add(folder);
177         folder_scan_tree(folder, TRUE);
178
179         folderview_set(mainwin->folderview);
180 }
181
182 static GtkActionEntry mainwindow_add_mailbox[] = {{
183         "File/AddMailbox/RSSyl",
184         NULL, N_("RSSyl..."), NULL, NULL, G_CALLBACK(rssyl_add_mailbox)
185 }};
186
187 static guint main_menu_id = 0;
188
189 void rssyl_gtk_init(void)
190 {
191         MainWindow *mainwin = mainwindow_get_mainwindow();
192
193         gtk_action_group_add_actions(mainwin->action_group, mainwindow_add_mailbox,
194                         1, (gpointer)mainwin);
195         MENUITEM_ADDUI_ID_MANAGER(mainwin->ui_manager, "/Menu/File/AddMailbox", "RSSyl", 
196                           "File/AddMailbox/RSSyl", GTK_UI_MANAGER_MENUITEM,
197                           main_menu_id)
198
199
200         rssyl_fill_popup_menu_labels();
201         folderview_register_popup(&rssyl_popup);
202 }
203
204 void rssyl_gtk_done(void)
205 {
206         MainWindow *mainwin = mainwindow_get_mainwindow();
207         FolderView *folderview = NULL;
208         FolderItem *fitem = NULL;
209
210         if (mainwin == NULL || claws_is_exiting())
211                 return;
212
213         folderview = mainwin->folderview;
214         fitem = folderview->summaryview->folder_item;
215
216         if( fitem && IS_RSSYL_FOLDER_ITEM(fitem) ) {
217                 folderview_unselect(folderview);
218                 summary_clear_all(folderview->summaryview);
219         }
220
221         folderview_unregister_popup(&rssyl_popup);
222
223         MENUITEM_REMUI_MANAGER(mainwin->ui_manager,mainwin->action_group, "File/AddMailbox/RSSyl", main_menu_id);
224         main_menu_id = 0;
225 }
226
227 /***********************************************/
228
229 static RSSylFeedProp *rssyl_gtk_prop_real(RSSylFolderItem *ritem)
230 {
231         MainWindow *mainwin = mainwindow_get_mainwindow();
232         RSSylFeedProp *feedprop;
233         GtkWidget *vbox, *urllabel, *urlframe, *urlalign, *table, *refresh_label,
234                                                 *expired_label, *hsep, *sep, *bbox, *cancel_button, *cancel_align,
235                                                 *cancel_hbox, *cancel_image, *cancel_label, *ok_button, *ok_align,
236                                                 *ok_hbox, *ok_image, *ok_label, *silent_update_label;
237         GtkWidget *ssl_verify_peer_checkbtn;
238         GtkObject *refresh_adj, *expired_adj, *fetch_comments_for_adj;
239         gint refresh, expired;
240         gint row = 0;
241
242         g_return_val_if_fail(ritem != NULL, NULL);
243
244         feedprop = g_new0(RSSylFeedProp, 1);
245
246         /* Create required widgets */
247
248         /* Window */
249         feedprop->window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "rssyl_gtk");
250
251         /* URL entry */
252         feedprop->url = gtk_entry_new();
253         gtk_entry_set_text(GTK_ENTRY(feedprop->url), ritem->url);
254
255         /* "Use default refresh interval" checkbutton */
256         feedprop->default_refresh_interval = gtk_check_button_new_with_mnemonic(
257                         _("Use default refresh interval"));
258         gtk_toggle_button_set_active(
259                         GTK_TOGGLE_BUTTON(feedprop->default_refresh_interval),
260                         ritem->default_refresh_interval);
261
262         if( ritem->refresh_interval >= 0 && !ritem->default_refresh_interval )
263                 refresh = ritem->refresh_interval;
264         else
265                 refresh = rssyl_prefs_get()->refresh;
266
267         /* "Keep default number of expired items" checkbutton */
268         feedprop->default_expired_num = gtk_check_button_new_with_mnemonic(
269                         _("Keep default number of expired entries"));
270         gtk_toggle_button_set_active(
271                         GTK_TOGGLE_BUTTON(feedprop->default_expired_num),
272                         ritem->default_expired_num);
273
274         feedprop->fetch_comments = gtk_check_button_new_with_mnemonic(
275                         _("Fetch comments if possible"));
276         gtk_toggle_button_set_active(
277                         GTK_TOGGLE_BUTTON(feedprop->fetch_comments),
278                         ritem->fetch_comments);
279
280         /* Refresh interval spinbutton */
281         fetch_comments_for_adj = gtk_adjustment_new(ritem->fetch_comments_for,
282                         -1, 100000, 1, 10, 0);
283         feedprop->fetch_comments_for = gtk_spin_button_new(GTK_ADJUSTMENT(fetch_comments_for_adj),
284                         1, 0);
285
286         if( ritem->default_expired_num )
287                 expired = rssyl_prefs_get()->expired;
288         else
289                 expired = ritem->expired_num;
290
291         /* Refresh interval spinbutton */
292         refresh_adj = gtk_adjustment_new(refresh,
293                         0, 100000, 1, 10, 0);
294         feedprop->refresh_interval = gtk_spin_button_new(GTK_ADJUSTMENT(refresh_adj),
295                         1, 0);
296
297         /* Expired num spinbutton */
298         expired_adj = gtk_adjustment_new(ritem->expired_num, -1, 100000, 1, 10, 0);
299         feedprop->expired_num = gtk_spin_button_new(GTK_ADJUSTMENT(expired_adj),
300                         1, 0);
301
302         vbox = gtk_vbox_new(FALSE, 0);
303         gtk_container_add(GTK_CONTAINER(feedprop->window), vbox);
304
305         /* URL frame */
306         urlframe = gtk_frame_new(NULL);
307         gtk_container_set_border_width(GTK_CONTAINER(urlframe), 5);
308         gtk_frame_set_label_align(GTK_FRAME(urlframe), 0.05, 0.5);
309         gtk_frame_set_shadow_type(GTK_FRAME(urlframe), GTK_SHADOW_ETCHED_OUT);
310         gtk_box_pack_start(GTK_BOX(vbox), urlframe, FALSE, FALSE, 0);
311
312         /* Label for URL frame */
313         urllabel = gtk_label_new(_("<b>Source URL:</b>"));
314         gtk_label_set_use_markup(GTK_LABEL(urllabel), TRUE);
315         gtk_misc_set_padding(GTK_MISC(urllabel), 5, 0);
316         gtk_frame_set_label_widget(GTK_FRAME(urlframe), urllabel);
317
318         /* URL entry (+ alignment in frame) */
319         urlalign = gtk_alignment_new(0, 0.5, 1, 1);
320         gtk_alignment_set_padding(GTK_ALIGNMENT(urlalign), 5, 5, 5, 5);
321         gtk_container_add(GTK_CONTAINER(urlframe), urlalign);
322
323         gtk_entry_set_activates_default(GTK_ENTRY(feedprop->url), TRUE);
324         gtk_container_add(GTK_CONTAINER(urlalign), feedprop->url);
325
326         /* Table for remaining properties */
327         table = gtk_table_new(8, 2, FALSE);
328         gtk_box_pack_start(GTK_BOX(vbox), table, TRUE, TRUE, 0);
329
330         /* Fetch comments - checkbutton */
331         gtk_table_attach(GTK_TABLE(table), feedprop->fetch_comments,
332                         0, 2, row, row+1,
333                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
334                         (GtkAttachOptions) (0), 10, 0);
335         g_signal_connect(G_OBJECT(feedprop->fetch_comments), "toggled",
336                         G_CALLBACK(rssyl_fetch_comments_toggled_cb),
337                         (gpointer)feedprop->fetch_comments_for);
338         row++;
339
340         /* Fetch comments for - label */
341         refresh_label = gtk_label_new(_("<b>Fetch comments on posts aged less than:</b>\n"
342                         "<small>(In days; set to -1 to fetch all comments)"
343                         "</small>"));
344         gtk_label_set_use_markup(GTK_LABEL(refresh_label), TRUE);
345         gtk_misc_set_alignment(GTK_MISC(refresh_label), 0, 0.5);
346         gtk_table_attach(GTK_TABLE(table), refresh_label, 0, 1, row, row+1,
347                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
348                         (GtkAttachOptions) (0), 10, 5);
349
350         /* Fetch comments for - spinbutton */
351         gtk_widget_set_sensitive(feedprop->fetch_comments_for,
352                         ritem->fetch_comments);
353         gtk_table_attach(GTK_TABLE(table), feedprop->fetch_comments_for, 1, 2, row, row+1,
354                         (GtkAttachOptions) (0),
355                         (GtkAttachOptions) (0), 10, 5);
356
357         row++;
358         hsep = gtk_hseparator_new();
359         gtk_widget_set_size_request(hsep, -1, 10);
360         gtk_table_attach(GTK_TABLE(table), hsep, 0, 2, row, row+1,
361                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
362                         (GtkAttachOptions) (0), 10, 5);
363
364         row++;
365         /* Use default refresh interval - checkbutton */
366         gtk_table_attach(GTK_TABLE(table), feedprop->default_refresh_interval,
367                         0, 2, row, row+1,
368                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
369                         (GtkAttachOptions) (0), 10, 0);
370         g_signal_connect(G_OBJECT(feedprop->default_refresh_interval), "toggled",
371                         G_CALLBACK(rssyl_default_refresh_interval_toggled_cb),
372                         (gpointer)feedprop->refresh_interval);
373         row++;
374         /* Refresh interval - label */
375         refresh_label = gtk_label_new(_("<b>Refresh interval in minutes:</b>\n"
376                         "<small>(Set to 0 to disable automatic refreshing for this feed)"
377                         "</small>"));
378         gtk_label_set_use_markup(GTK_LABEL(refresh_label), TRUE);
379         gtk_misc_set_alignment(GTK_MISC(refresh_label), 0, 0.5);
380         gtk_table_attach(GTK_TABLE(table), refresh_label, 0, 1, row, row+1,
381                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
382                         (GtkAttachOptions) (0), 10, 5);
383
384         /* Refresh interval - spinbutton */
385         gtk_widget_set_sensitive(feedprop->refresh_interval,
386                         !ritem->default_refresh_interval);
387         gtk_table_attach(GTK_TABLE(table), feedprop->refresh_interval, 1, 2, row, row+1,
388                         (GtkAttachOptions) (0),
389                         (GtkAttachOptions) (0), 10, 5);
390         row++;
391         hsep = gtk_hseparator_new();
392         gtk_widget_set_size_request(hsep, -1, 10);
393         gtk_table_attach(GTK_TABLE(table), hsep, 0, 2, row, row+1,
394                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
395                         (GtkAttachOptions) (0), 10, 5);
396
397         row++;
398         /* Use default number for expired - checkbutton */
399         gtk_table_attach(GTK_TABLE(table), feedprop->default_expired_num,       0, 2, row, row+1,
400                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
401                         (GtkAttachOptions) (0), 10, 0);
402         g_signal_connect(G_OBJECT(feedprop->default_expired_num), "toggled",
403                         G_CALLBACK(rssyl_default_expired_num_toggled_cb),
404                         (gpointer)feedprop->expired_num);
405
406         row++;
407         /* Expired items - label */
408         expired_label = gtk_label_new(_("<b>Number of expired entries to keep:"
409                         "</b>\n<small>(Set to -1 if you want to keep expired entries)"
410                         "</small>"));
411         gtk_label_set_use_markup(GTK_LABEL(expired_label), TRUE);
412         gtk_misc_set_alignment(GTK_MISC(expired_label), 0, 0.5);
413         gtk_table_attach(GTK_TABLE(table), expired_label, 0, 1, row, row+1,
414                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
415                         (GtkAttachOptions) (0), 10, 5);
416
417         /* Expired items - spinbutton */
418         gtk_widget_set_sensitive(feedprop->expired_num,
419                         !ritem->default_expired_num);
420         gtk_table_attach(GTK_TABLE(table), feedprop->expired_num, 1, 2, row, row+1,
421                         (GtkAttachOptions) (0),
422                         (GtkAttachOptions) (0), 10, 5);
423
424         row++;
425         hsep = gtk_hseparator_new();
426         gtk_widget_set_size_request(hsep, -1, 10);
427         gtk_table_attach(GTK_TABLE(table), hsep, 0, 2, row, row+1,
428                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
429                         (GtkAttachOptions) (0), 10, 5);
430
431         row++;
432         /* Silent update - label */
433         silent_update_label =
434                 gtk_label_new(_("<b>If an item changes, mark it as unread:</b>"));
435         gtk_label_set_use_markup(GTK_LABEL(silent_update_label), TRUE);
436         gtk_misc_set_alignment(GTK_MISC(silent_update_label), 0, 0.5);
437         gtk_table_attach(GTK_TABLE(table), silent_update_label, 0, 1, row, row+1,
438                         (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
439                         (GtkAttachOptions) (0), 10, 5);
440
441         /* Silent update - combobox */
442         feedprop->silent_update = gtk_combo_box_new_text();
443         gtk_combo_box_append_text(GTK_COMBO_BOX(feedprop->silent_update),
444                         _("Always"));
445         gtk_combo_box_append_text(GTK_COMBO_BOX(feedprop->silent_update),
446                         _("Only its text changed"));
447         gtk_combo_box_append_text(GTK_COMBO_BOX(feedprop->silent_update),
448                         _("Never"));
449         gtk_table_attach(GTK_TABLE(table), feedprop->silent_update, 1, 2, row, row+1,
450                         (GtkAttachOptions) (0),
451                         (GtkAttachOptions) (0), 10, 5);
452         gtk_combo_box_set_active(GTK_COMBO_BOX(feedprop->silent_update),
453                         ritem->silent_update);
454
455         /* Separator above the button box */
456         sep = gtk_hseparator_new();
457         gtk_widget_set_size_request(sep, -1, 10);
458         gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
459
460         /* Buttonbox */
461         bbox = gtk_hbutton_box_new();
462         gtk_container_set_border_width(GTK_CONTAINER(bbox), 5);
463         gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
464         gtk_box_set_spacing(GTK_BOX(bbox), 5);
465         gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
466
467         /* Cancel button */
468         cancel_button = gtk_button_new();
469         gtk_container_add(GTK_CONTAINER(bbox), cancel_button);
470
471         cancel_align = gtk_alignment_new(0.5, 0.5, 0, 0);
472         gtk_container_add(GTK_CONTAINER(cancel_button), cancel_align);
473
474         cancel_hbox = gtk_hbox_new(FALSE, 2);
475         gtk_container_add(GTK_CONTAINER(cancel_align), cancel_hbox);
476
477         cancel_image = gtk_image_new_from_stock(GTK_STOCK_CANCEL,
478                         GTK_ICON_SIZE_BUTTON);
479         gtk_box_pack_start(GTK_BOX(cancel_hbox), cancel_image, FALSE, FALSE, 0);
480
481         cancel_label = gtk_label_new_with_mnemonic(_("_Cancel"));
482         gtk_box_pack_end(GTK_BOX(cancel_hbox), cancel_label, FALSE, FALSE, 0);
483
484         g_signal_connect(G_OBJECT(cancel_button), "clicked",
485                         G_CALLBACK(rssyl_props_cancel_cb), ritem);
486
487         /* OK button */
488         ok_button = gtk_button_new();
489         gtk_container_add(GTK_CONTAINER(bbox), ok_button);
490         gtkut_widget_set_can_default(ok_button, TRUE);
491
492         ok_align = gtk_alignment_new(0.5, 0.5, 0, 0);
493         gtk_container_add(GTK_CONTAINER(ok_button), ok_align);
494
495         ok_hbox = gtk_hbox_new(FALSE, 2);
496         gtk_container_add(GTK_CONTAINER(ok_align), ok_hbox);
497
498         ok_image = gtk_image_new_from_stock(GTK_STOCK_OK,
499                         GTK_ICON_SIZE_BUTTON);
500         gtk_box_pack_start(GTK_BOX(ok_hbox), ok_image, FALSE, FALSE, 0);
501
502         ok_label = gtk_label_new_with_mnemonic(_("_OK"));
503         gtk_box_pack_end(GTK_BOX(ok_hbox), ok_label, FALSE, FALSE, 0);
504
505         g_signal_connect(G_OBJECT(ok_button), "clicked",
506                         G_CALLBACK(rssyl_props_ok_cb), ritem);
507
508         /* Set some misc. stuff */
509         gtk_window_set_title(GTK_WINDOW(feedprop->window),
510                         g_strdup(_("Set feed properties")) );
511         gtk_window_set_modal(GTK_WINDOW(feedprop->window), TRUE);
512         gtk_window_set_transient_for(GTK_WINDOW(feedprop->window),
513                         GTK_WINDOW(mainwin->window) );
514
515         /* Attach callbacks to handle Enter and Escape keys */
516         g_signal_connect(G_OBJECT(feedprop->window), "key_press_event",
517                         G_CALLBACK(rssyl_props_key_press_cb), ritem);
518
519         /* ...and voila! */
520         gtk_widget_show_all(feedprop->window);
521         gtk_widget_grab_default(ok_button);
522
523         /* Unselect the text in URL entry */
524         gtk_editable_select_region(GTK_EDITABLE(feedprop->url), 0, 0);
525
526         ritem->feedprop = feedprop;
527
528         return feedprop;
529 }
530
531 void rssyl_gtk_prop(RSSylFolderItem *ritem)
532 {
533         g_return_if_fail(ritem != NULL);
534
535         rssyl_gtk_prop_real(ritem);
536 }
537
538 void rssyl_gtk_prop_store(RSSylFolderItem *ritem)
539 {
540         gchar *url;
541         gint x, old_ri, old_ex, old_fetch_comments;
542         gboolean use_default_ri = FALSE, use_default_ex = FALSE;
543
544         g_return_if_fail(ritem != NULL);
545         g_return_if_fail(ritem->feedprop != NULL);
546
547         url = (gchar *)gtk_entry_get_text(GTK_ENTRY(ritem->feedprop->url));
548
549         if( strlen(url) ) {
550                 if( ritem->url ) {
551                         g_free(ritem->url);
552                 }
553                 ritem->url = g_strdup(url);
554         }
555
556         use_default_ri = gtk_toggle_button_get_active(
557                         GTK_TOGGLE_BUTTON(ritem->feedprop->default_refresh_interval));
558         ritem->default_refresh_interval = use_default_ri;
559         debug_print("store: default is %s\n", ( use_default_ri ? "ON" : "OFF" ) );
560
561         /* Use default if checkbutton is set */
562         if( use_default_ri )
563                 x = rssyl_prefs_get()->refresh;
564         else
565                 x = gtk_spin_button_get_value_as_int(
566                                 GTK_SPIN_BUTTON(ritem->feedprop->refresh_interval) );
567
568         old_ri = ritem->refresh_interval;
569         ritem->refresh_interval = x;
570
571         /* Update refresh interval setting if it has changed and has a sane value */
572         if( old_ri != x && x >= 0 ) {
573                 debug_print("RSSyl: GTK - refresh interval changed to %d , updating "
574                                 "timeout\n", ritem->refresh_interval);
575                 /* Value of 0 means we do not want to update automatically */
576                 if( x > 0 )
577                         rssyl_start_refresh_timeout(ritem);
578         }
579
580         old_fetch_comments = ritem->fetch_comments;
581         ritem->fetch_comments = gtk_toggle_button_get_active(
582                         GTK_TOGGLE_BUTTON(ritem->feedprop->fetch_comments));
583
584         ritem->fetch_comments_for = gtk_spin_button_get_value_as_int(
585                                 GTK_SPIN_BUTTON(ritem->feedprop->fetch_comments_for));
586
587         if (!old_fetch_comments && ritem->fetch_comments) {
588                 /* reset the RSSylFolderItem's mtime to be sure we get all 
589                  * available comments */
590                  ritem->item.mtime = 0;
591         }
592         
593         use_default_ex = gtk_toggle_button_get_active(
594                         GTK_TOGGLE_BUTTON(ritem->feedprop->default_expired_num));
595         ritem->default_expired_num = use_default_ex;
596         debug_print("store: default is %s\n", ( use_default_ex ? "ON" : "OFF" ) );
597
598         /* Use default if checkbutton is set */
599         if( use_default_ex )
600                 x = rssyl_prefs_get()->expired;
601         else
602                 x = gtk_spin_button_get_value_as_int(
603                                 GTK_SPIN_BUTTON(ritem->feedprop->expired_num) );
604
605         old_ex = ritem->expired_num;
606         ritem->expired_num = x;
607
608         ritem->silent_update =
609                 gtk_combo_box_get_active(GTK_COMBO_BOX(ritem->feedprop->silent_update));
610         if( ritem->silent_update < 0 )
611                 ritem->silent_update = 0;
612
613         rssyl_store_feed_props(ritem);
614
615         debug_print("last_count %d, x %d, old_ex %d\n", ritem->last_count, x, old_ex);
616
617         /* update if new setting is lower, or if it was changed from -1 */
618         if( ritem->last_count != 0 && x != -1 && (old_ex > x || old_ex == -1) ) {
619                 debug_print("RSSyl: GTK - expired_num has changed to %d, expiring\n",
620                                 ritem->expired_num);
621                 rssyl_expire_items(ritem);
622         }
623 }
624
625 GtkWidget *rssyl_feed_removal_dialog(gchar *name, GtkWidget **rmcache_widget)
626 {
627         gchar *message;
628         GtkWidget *dialog, *vbox, *hbox, *image, *vbox2, *label, *cb, *aa,
629                                                 *bno, *byes;
630         MainWindow *mainwin = mainwindow_get_mainwindow();
631
632         g_return_val_if_fail(name != NULL, NULL);
633
634         dialog = gtk_dialog_new();
635         gtk_window_set_title(GTK_WINDOW(dialog), _("Unsubscribe feed"));
636         gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
637
638         vbox = GTK_DIALOG(dialog)->vbox;
639
640         hbox = gtk_hbox_new(FALSE, 0);
641         gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0);
642
643         /* Question icon */
644         image = gtk_image_new_from_stock(GTK_STOCK_DIALOG_QUESTION,
645                         GTK_ICON_SIZE_DIALOG);
646         gtk_misc_set_alignment(GTK_MISC(image), 0.5, 0.30);
647         gtk_misc_set_padding(GTK_MISC(image), 12, 0);
648         gtk_box_pack_start(GTK_BOX(hbox), image, FALSE, FALSE, 0);
649
650         vbox2 = gtk_vbox_new(FALSE, 0);
651         gtk_box_pack_start(GTK_BOX(hbox), vbox2, TRUE, TRUE, 0);
652
653         /* Dialog text label */
654         label = gtk_label_new("");
655         gtk_misc_set_alignment(GTK_MISC(label), 0.1, 0);
656         gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
657         gtk_misc_set_padding(GTK_MISC(label), 0, 12);
658         message = g_markup_printf_escaped("<span size='x-large'><b>%s</b></span>"
659                         "\n\n%s '%s' ?", _("Unsubscribe feed"),
660                         _("Do you really want to remove feed"), name);
661         gtk_label_set_markup(GTK_LABEL(label), message);
662         g_free(message);
663         gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0);
664
665         /* Remove cache checkbutton */
666         cb = gtk_check_button_new_with_mnemonic(_("Remove cached entries"));
667         gtk_button_set_focus_on_click(GTK_BUTTON(cb), FALSE);
668         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cb), TRUE);
669         gtk_box_pack_start(GTK_BOX(vbox2), cb, FALSE, FALSE, 0);
670         *rmcache_widget = cb;
671
672         aa = GTK_DIALOG(dialog)->action_area;
673         gtk_button_box_set_layout(GTK_BUTTON_BOX(aa), GTK_BUTTONBOX_END);
674
675         bno = gtk_button_new_from_stock(GTK_STOCK_CANCEL);
676         gtk_dialog_add_action_widget(GTK_DIALOG(dialog), bno, GTK_RESPONSE_NO);
677         gtkut_widget_set_can_default(bno, TRUE);
678         
679         byes = gtk_button_new_with_mnemonic(_("_Unsubscribe"));
680         gtk_dialog_add_action_widget(GTK_DIALOG(dialog), byes, GTK_RESPONSE_YES);
681
682         gtk_widget_grab_default(bno);
683         gtk_window_set_transient_for(GTK_WINDOW(dialog),
684                         GTK_WINDOW(mainwin->window) );
685
686         return dialog;
687 }