2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include <glib/gi18n.h>
29 #include <gdk/gdkkeysyms.h>
34 #include "mainwindow.h"
35 #include "folderview.h"
38 #include "prefs_gtk.h"
39 #include "prefs_account.h"
40 #include "prefs_common.h"
41 #include "folder_item_prefs.h"
43 #include "manage_window.h"
44 #include "stock_pixmap.h"
48 #include "alertpanel.h"
49 #include "procheader.h"
50 #include "customheader.h"
51 #include "remotefolder.h"
53 #include "filtering.h"
56 ACCOUNT_IS_DEFAULT
, /* GDK_TYPE_PIXMAP! */
57 ACCOUNT_ENABLE_GET_ALL
,
73 } EditAccountColumnPos
;
75 # define N_EDIT_ACCOUNT_COLS 5
77 #define PREFSBUFSIZE 1024
79 PrefsAccount
*cur_account
;
81 static GList
*account_list
= NULL
;
82 static gboolean account_list_dirty
= FALSE
;
84 static struct EditAccount
{
90 static GdkPixbuf
*mark_pixbuf
;
92 static void account_edit_create (void);
93 static void account_destroy (PrefsAccount
*ac_prefs
);
94 static void account_set_as_default (PrefsAccount
*ac_prefs
);
95 static void account_set_menu (void);
97 static void account_edit_prefs (GtkWidget
*widget
, gpointer data
);
98 static void account_delete (GtkWidget
*widget
, gpointer data
);
99 static void account_clone (GtkWidget
*widget
, gpointer data
);
101 static void account_up (GtkWidget
*widget
, gpointer data
);
102 static void account_down (GtkWidget
*widget
, gpointer data
);
104 static void account_set_default (GtkWidget
*widget
, gpointer data
);
106 static void account_edit_close (GtkWidget
*widget
, gpointer data
);
108 static gint
account_delete_event (GtkWidget
*widget
,
111 static void account_size_allocate_cb(GtkWidget
*widget
,
112 GtkAllocation
*allocation
);
113 static gboolean
account_key_pressed (GtkWidget
*widget
,
117 static void account_list_view_add (PrefsAccount
*ac_prefs
);
118 static void account_list_view_set (void);
120 static void account_list_set (void);
122 typedef struct FindAccountInStore
{
126 } FindAccountInStore
;
128 static GtkListStore
* account_create_data_store (void);
130 static void account_list_view_insert_account_item (GtkListStore
*list_store
,
131 const gchar
*account_name
,
132 const gchar
*protocol
,
133 const gchar
*server_name
,
136 PrefsAccount
*account_data
);
138 static GtkWidget
*account_list_view_create (void);
139 static void account_create_list_view_images (GtkWidget
*list_view
);
140 static void account_create_list_view_columns (GtkWidget
*list_view
);
142 static gint
account_list_view_get_selected_account_id (GtkWidget
*list_view
);
143 static GtkTreePath
*account_list_view_get_selected_account_path (GtkWidget
*list_view
);
144 static PrefsAccount
*account_list_view_get_selected_account (GtkWidget
*list_view
);
145 static gboolean
account_list_view_select_account (GtkWidget
*list_view
,
148 static void account_list_view_set_default_by_id(GtkWidget
*list_view
,
151 static gboolean
set_new_default_account (GtkTreeModel
*model
,
156 static gboolean
find_account_in_store (GtkTreeModel
*model
,
159 FindAccountInStore
*data
);
161 static void account_get_all_toggled (GtkCellRendererToggle
*widget
,
163 GtkWidget
*list_view
);
165 static void account_double_clicked (GtkTreeView
*list_view
,
167 GtkTreeViewColumn
*column
,
170 static void drag_begin (GtkTreeView
*list_view
,
171 GdkDragContext
*context
,
174 static void drag_end (GtkTreeView
*list_view
,
175 GdkDragContext
*context
,
178 static void account_row_changed_while_drag_drop (GtkTreeModel
*model
,
182 GtkTreeView
*list_view
);
184 void account_flush_state(void)
187 main_window_reflect_prefs_all();
189 account_list_dirty
= FALSE
;
192 void account_read_config_all(void)
194 GSList
*ac_label_list
= NULL
, *cur
;
197 gchar buf
[PREFSBUFSIZE
];
198 PrefsAccount
*ac_prefs
;
200 debug_print("Reading all config for each account...\n");
202 rcpath
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, ACCOUNT_RC
, NULL
);
203 if ((fp
= g_fopen(rcpath
, "rb")) == NULL
) {
204 if (ENOENT
!= errno
) FILE_OP_ERROR(rcpath
, "fopen");
210 while (fgets(buf
, sizeof(buf
), fp
) != NULL
) {
211 if (!strncmp(buf
, "[Account: ", 10)) {
213 memmove(buf
, buf
+ 1, strlen(buf
));
214 buf
[strlen(buf
) - 1] = '\0';
215 debug_print("Found label: %s\n", buf
);
216 ac_label_list
= g_slist_append(ac_label_list
,
222 /* read config data from file */
224 for (cur
= ac_label_list
; cur
!= NULL
; cur
= cur
->next
) {
225 ac_prefs
= prefs_account_new();
226 prefs_account_read_config(ac_prefs
, (gchar
*)cur
->data
);
227 account_list
= g_list_append(account_list
, ac_prefs
);
228 if (ac_prefs
->is_default
)
229 cur_account
= ac_prefs
;
231 /* if default is not set, assume first account as default */
232 if (!cur_account
&& account_list
) {
233 ac_prefs
= (PrefsAccount
*)account_list
->data
;
234 account_set_as_default(ac_prefs
);
235 cur_account
= ac_prefs
;
239 main_window_reflect_prefs_all_now();
241 while (ac_label_list
) {
242 g_free(ac_label_list
->data
);
243 ac_label_list
= g_slist_remove(ac_label_list
,
244 ac_label_list
->data
);
248 void account_write_config_all(void)
250 prefs_account_write_config_all(account_list
);
254 * account_find_all_from_address:
255 * @ac_list: initial list of accounts. NULL to create a new one.
256 * Accounts found in the @address will be appended to this list.
257 * @address: Email address string.
259 * Find all the mail (not news) accounts within the specified address.
261 * Return value: the original accounts list with the found accounts appended.
263 GList
*account_find_all_from_address(GList
*ac_list
, const gchar
*address
)
271 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
272 ac
= (PrefsAccount
*)cur
->data
;
273 if (ac
->protocol
!= A_NNTP
&& ac
->address
&&
274 strcasestr(address
, ac
->address
) != NULL
)
275 ac_list
= g_list_append(ac_list
, ac
);
280 PrefsAccount
*account_find_from_smtp_server(const gchar
*address
,
281 const gchar
*smtp_server
)
286 g_return_val_if_fail(address
!= NULL
, NULL
);
287 g_return_val_if_fail(smtp_server
!= NULL
, NULL
);
289 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
290 ac
= (PrefsAccount
*)cur
->data
;
291 if (!strcmp2(address
, ac
->address
) &&
292 !strcmp2(smtp_server
, ac
->smtp_server
))
300 * account_find_from_address:
301 * @address: Email address string.
303 * Find a mail (not news) account with the specified email address.
305 * Return value: The found account, or NULL if not found.
307 PrefsAccount
*account_find_from_address(const gchar
*address
)
312 g_return_val_if_fail(address
!= NULL
, NULL
);
314 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
315 ac
= (PrefsAccount
*)cur
->data
;
316 if (ac
->protocol
!= A_NNTP
&& ac
->address
&&
317 g_ascii_strcasecmp(address
, ac
->address
) == 0)
324 PrefsAccount
*account_find_from_id(gint id
)
329 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
330 ac
= (PrefsAccount
*)cur
->data
;
331 if (id
== ac
->account_id
)
338 PrefsAccount
*account_find_from_item(FolderItem
*item
)
342 g_return_val_if_fail(item
!= NULL
, NULL
);
346 FolderItem
*cur_item
= folder_item_parent(item
);
347 while (cur_item
!= NULL
) {
348 if (cur_item
->account
&& cur_item
->apply_sub
) {
349 ac
= cur_item
->account
;
352 cur_item
= folder_item_parent(cur_item
);
356 ac
= item
->folder
->account
;
361 static void account_set_menu(void)
363 main_window_set_account_menu(account_list
);
366 void account_set_menu_only_toolbar(void)
368 main_window_set_account_menu_only_toolbar(account_list
);
371 GList
*account_get_list(void)
376 void account_edit_open(void)
380 account_list_dirty
= FALSE
;
382 if (compose_get_compose_list()) {
383 alertpanel_error(_("Some composing windows are open.\n"
384 "Please close all the composing "
385 "windows before editing the accounts."));
390 debug_print("Opening account edit window...\n");
392 if (!edit_account
.window
)
393 account_edit_create();
395 account_list_view_set();
397 manage_window_set_transient(GTK_WINDOW(edit_account
.window
));
398 gtk_widget_grab_focus(edit_account
.close_btn
);
399 gtk_widget_show(edit_account
.window
);
401 manage_window_focus_in(edit_account
.window
, NULL
, NULL
);
404 void account_add(void)
406 PrefsAccount
*ac_prefs
;
408 ac_prefs
= prefs_account_open(NULL
, &account_list_dirty
);
410 if (!ac_prefs
) return;
412 account_list
= g_list_append(account_list
, ac_prefs
);
414 if (ac_prefs
->is_default
)
415 account_set_as_default(ac_prefs
);
417 account_list_view_set();
419 if (ac_prefs
->protocol
== A_IMAP4
|| ac_prefs
->protocol
== A_NNTP
) {
422 if (ac_prefs
->protocol
== A_IMAP4
) {
423 folder
= folder_new(folder_get_class_from_string("imap"), ac_prefs
->account_name
,
424 ac_prefs
->recv_server
);
426 folder
= folder_new(folder_get_class_from_string("news"), ac_prefs
->account_name
,
427 ac_prefs
->nntp_server
);
429 if (folder
== NULL
) {
430 alertpanel_error(_("Can't create folder."));
433 folder
->account
= ac_prefs
;
434 ac_prefs
->folder
= folder
;
436 if (ac_prefs
->protocol
== A_IMAP4
)
437 folder
->klass
->create_tree(folder
);
438 folderview_set_all();
443 void account_open(PrefsAccount
*ac_prefs
)
445 gboolean prev_default
;
447 gboolean account_dirty
= FALSE
;
449 g_return_if_fail(ac_prefs
!= NULL
);
451 prev_default
= ac_prefs
->is_default
;
452 Xstrdup_a(ac_name
, ac_prefs
->account_name
? ac_prefs
->account_name
: "",
455 prefs_account_open(ac_prefs
, &account_dirty
);
458 if (!prev_default
&& ac_prefs
->is_default
)
459 account_set_as_default(ac_prefs
);
461 if (ac_prefs
->folder
&& strcmp2(ac_name
, ac_prefs
->account_name
) != 0) {
462 folder_set_name(FOLDER(ac_prefs
->folder
),
463 ac_prefs
->account_name
);
464 folderview_set_all();
467 account_write_config_all();
469 account_flush_state();
473 static void account_set_as_default(PrefsAccount
*ac_prefs
)
478 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
479 ap
= (PrefsAccount
*)cur
->data
;
481 ap
->is_default
= FALSE
;
484 ac_prefs
->is_default
= TRUE
;
487 PrefsAccount
*account_get_default(void)
492 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
493 ap
= (PrefsAccount
*)cur
->data
;
501 void account_set_missing_folder(void)
506 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
507 ap
= (PrefsAccount
*)cur
->data
;
508 if ((ap
->protocol
== A_IMAP4
|| ap
->protocol
== A_NNTP
) &&
512 if (ap
->protocol
== A_IMAP4
) {
513 folder
= folder_new(folder_get_class_from_string("imap"), ap
->account_name
,
516 folder
= folder_new(folder_get_class_from_string("news"), ap
->account_name
,
521 folder
->account
= ap
;
524 if (ap
->protocol
== A_IMAP4
)
525 folder
->klass
->create_tree(folder
);
532 #define CHECK_CHANGE_FOLDER(folder) { \
533 if (folder && !strncmp(folder, old_id, strlen(old_id))) { \
534 if (strlen(folder) == strlen(old_id)) { \
536 folder = g_strdup(new_id); \
537 } else if (strlen(folder) > strlen(old_id) \
538 && folder[strlen(old_id)] == G_DIR_SEPARATOR) { \
539 gchar *new_path = g_strdup_printf("%s%s", \
540 new_id, (folder + strlen(old_id))); \
547 void account_rename_path(const gchar
*old_id
, const gchar
*new_id
)
549 GList
*cur
= account_list
;
550 for (; cur
!= NULL
; cur
= g_list_next(cur
)) {
551 PrefsAccount
*ap
= (PrefsAccount
*)cur
->data
;
552 CHECK_CHANGE_FOLDER(ap
->inbox
);
553 CHECK_CHANGE_FOLDER(ap
->local_inbox
);
554 CHECK_CHANGE_FOLDER(ap
->queue_folder
);
555 CHECK_CHANGE_FOLDER(ap
->sent_folder
);
556 CHECK_CHANGE_FOLDER(ap
->draft_folder
);
557 CHECK_CHANGE_FOLDER(ap
->trash_folder
);
561 #undef CHECK_CHANGE_FOLDER
563 FolderItem
*account_get_special_folder(PrefsAccount
*ac_prefs
,
564 SpecialFolderItemType type
)
566 FolderItem
*item
= NULL
;
568 g_return_val_if_fail(ac_prefs
!= NULL
, NULL
);
572 if (ac_prefs
->folder
)
573 item
= FOLDER(ac_prefs
->folder
)->inbox
;
575 item
= folder_get_default_inbox();
578 if (ac_prefs
->set_sent_folder
&& ac_prefs
->sent_folder
) {
579 item
= folder_find_item_from_identifier
580 (ac_prefs
->sent_folder
);
583 if (ac_prefs
->folder
)
584 item
= FOLDER(ac_prefs
->folder
)->outbox
;
586 item
= folder_get_default_outbox_for_class(F_MH
);
588 item
= folder_get_default_outbox();
592 if (ac_prefs
->set_draft_folder
&& ac_prefs
->draft_folder
) {
593 item
= folder_find_item_from_identifier
594 (ac_prefs
->draft_folder
);
597 if (ac_prefs
->folder
)
598 item
= FOLDER(ac_prefs
->folder
)->draft
;
600 item
= folder_get_default_draft_for_class(F_MH
);
602 item
= folder_get_default_draft();
606 if (ac_prefs
->set_queue_folder
&& ac_prefs
->queue_folder
) {
607 item
= folder_find_item_from_identifier
608 (ac_prefs
->queue_folder
);
611 if (ac_prefs
->folder
)
612 item
= FOLDER(ac_prefs
->folder
)->queue
;
614 item
= folder_get_default_queue_for_class(F_MH
);
616 item
= folder_get_default_queue();
620 if (ac_prefs
->set_trash_folder
&& ac_prefs
->trash_folder
) {
621 item
= folder_find_item_from_identifier
622 (ac_prefs
->trash_folder
);
625 if (ac_prefs
->folder
)
626 item
= FOLDER(ac_prefs
->folder
)->trash
;
628 item
= folder_get_default_trash_for_class(F_MH
);
630 item
= folder_get_default_trash();
640 void account_destroy(PrefsAccount
*ac_prefs
)
642 g_return_if_fail(ac_prefs
!= NULL
);
644 folder_unref_account_all(ac_prefs
);
646 prefs_account_free(ac_prefs
);
647 account_list
= g_list_remove(account_list
, ac_prefs
);
649 if (cur_account
== ac_prefs
) cur_account
= NULL
;
650 if (!cur_account
&& account_list
) {
651 cur_account
= account_get_default();
653 ac_prefs
= (PrefsAccount
*)account_list
->data
;
654 account_set_as_default(ac_prefs
);
655 cur_account
= ac_prefs
;
661 *\brief Save Gtk object size to prefs dataset
663 static void account_size_allocate_cb(GtkWidget
*widget
,
664 GtkAllocation
*allocation
)
666 g_return_if_fail(allocation
!= NULL
);
668 prefs_common
.accountswin_width
= allocation
->width
;
669 prefs_common
.accountswin_height
= allocation
->height
;
672 static void account_edit_create(void)
678 GtkWidget
*scrolledwin
;
679 GtkWidget
*list_view
;
685 GtkWidget
*clone_btn
;
689 GtkWidget
*default_btn
;
691 GtkWidget
*confirm_area
;
693 GtkWidget
*close_btn
;
695 static GdkGeometry geometry
;
697 debug_print("Creating account edit window...\n");
699 window
= gtkut_window_new(GTK_WINDOW_TOPLEVEL
, "account");
700 gtk_container_set_border_width (GTK_CONTAINER (window
), 8);
701 gtk_window_set_title (GTK_WINDOW (window
), _("Edit accounts"));
702 gtk_window_set_modal (GTK_WINDOW (window
), TRUE
);
703 g_signal_connect (G_OBJECT (window
), "delete_event",
704 G_CALLBACK (account_delete_event
), NULL
);
706 maemo_connect_key_press_to_mainwindow(GTK_WINDOW(window
));
708 g_signal_connect (G_OBJECT (window
), "key_press_event",
709 G_CALLBACK (account_key_pressed
), NULL
);
711 MANAGE_WINDOW_SIGNALS_CONNECT (window
);
712 gtk_widget_realize(window
);
714 vbox
= gtk_vbox_new (FALSE
, 10);
715 gtk_widget_show (vbox
);
716 gtk_container_add (GTK_CONTAINER (window
), vbox
);
718 hbox
= gtk_hbox_new (FALSE
, 0);
719 gtk_widget_show (hbox
);
720 gtk_box_pack_start (GTK_BOX (vbox
), hbox
, FALSE
, FALSE
, 0);
722 label
= gtk_label_new
723 (_("Using 'Get Mail' will retrieve messages from your Accounts "
724 "in the order given, the checkbox in the 'G' column indicates "
725 "which accounts will be included."));
726 gtk_widget_show (label
);
727 gtk_widget_set_size_request(GTK_WIDGET(label
),
728 prefs_common
.accountswin_width
-8, -1);
729 gtk_box_pack_start (GTK_BOX (hbox
), label
, FALSE
, FALSE
, 4);
730 gtk_label_set_justify(GTK_LABEL(label
), GTK_JUSTIFY_LEFT
);
731 gtk_label_set_line_wrap(GTK_LABEL(label
), TRUE
);
733 hbox
= gtk_hbox_new (FALSE
, 8);
734 gtk_widget_show (hbox
);
735 gtk_box_pack_start (GTK_BOX (vbox
), hbox
, TRUE
, TRUE
, 0);
736 gtk_container_set_border_width (GTK_CONTAINER (hbox
), 2);
738 scrolledwin
= gtk_scrolled_window_new (NULL
, NULL
);
739 gtk_widget_show (scrolledwin
);
740 gtk_box_pack_start (GTK_BOX (hbox
), scrolledwin
, TRUE
, TRUE
, 0);
741 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwin
),
742 GTK_POLICY_AUTOMATIC
,
743 GTK_POLICY_AUTOMATIC
);
745 list_view
= account_list_view_create();
746 gtk_widget_show(list_view
);
747 gtk_container_add(GTK_CONTAINER(scrolledwin
), list_view
);
749 vbox2
= gtk_vbox_new (FALSE
, 0);
750 gtk_widget_show (vbox2
);
751 gtk_box_pack_start (GTK_BOX (hbox
), vbox2
, FALSE
, FALSE
, 0);
753 add_btn
= gtk_button_new_from_stock(GTK_STOCK_NEW
);
754 gtk_widget_show (add_btn
);
755 gtk_box_pack_start (GTK_BOX (vbox2
), add_btn
, FALSE
, FALSE
, 4);
756 g_signal_connect (G_OBJECT(add_btn
), "clicked",
757 G_CALLBACK (account_add
), NULL
);
759 edit_btn
= gtk_button_new_from_stock (GTK_STOCK_EDIT
);
760 gtk_widget_show (edit_btn
);
761 gtk_box_pack_start (GTK_BOX (vbox2
), edit_btn
, FALSE
, FALSE
, 4);
762 g_signal_connect (G_OBJECT(edit_btn
), "clicked",
763 G_CALLBACK (account_edit_prefs
), NULL
);
765 del_btn
= gtk_button_new_from_stock(GTK_STOCK_DELETE
);
766 gtk_widget_show (del_btn
);
767 gtk_box_pack_start (GTK_BOX (vbox2
), del_btn
, FALSE
, FALSE
, 4);
768 g_signal_connect (G_OBJECT(del_btn
), "clicked",
769 G_CALLBACK (account_delete
), NULL
);
771 clone_btn
= gtk_button_new_from_stock(GTK_STOCK_COPY
);
772 gtk_widget_show (clone_btn
);
773 gtk_box_pack_start (GTK_BOX (vbox2
), clone_btn
, FALSE
, FALSE
, 4);
774 g_signal_connect(G_OBJECT(clone_btn
), "clicked",
775 G_CALLBACK(account_clone
), NULL
);
777 down_btn
= gtk_button_new_from_stock(GTK_STOCK_GO_DOWN
);
778 gtk_widget_show (down_btn
);
779 gtk_box_pack_end (GTK_BOX (vbox2
), down_btn
, FALSE
, FALSE
, 4);
780 g_signal_connect (G_OBJECT(down_btn
), "clicked",
781 G_CALLBACK (account_down
), NULL
);
783 up_btn
= gtk_button_new_from_stock(GTK_STOCK_GO_UP
);
784 gtk_widget_show (up_btn
);
785 gtk_box_pack_end (GTK_BOX (vbox2
), up_btn
, FALSE
, FALSE
, 4);
786 g_signal_connect (G_OBJECT(up_btn
), "clicked",
787 G_CALLBACK (account_up
), NULL
);
789 hbox
= gtk_hbox_new (FALSE
, 8);
790 gtk_widget_show (hbox
);
791 gtk_box_pack_start (GTK_BOX (vbox
), hbox
, FALSE
, FALSE
, 0);
793 default_btn
= gtk_button_new_with_mnemonic
794 (_(" _Set as default account "));
795 gtk_widget_show (default_btn
);
796 gtk_box_pack_start (GTK_BOX (hbox
), default_btn
, FALSE
, FALSE
, 0);
797 g_signal_connect (G_OBJECT(default_btn
), "clicked",
798 G_CALLBACK (account_set_default
), NULL
);
800 gtkut_stock_button_set_create_with_help(&confirm_area
, &help_btn
,
801 &close_btn
, GTK_STOCK_CLOSE
,
802 NULL
, NULL
, NULL
, NULL
);
803 gtk_widget_show(confirm_area
);
805 gtk_box_pack_end (GTK_BOX (hbox
), confirm_area
, FALSE
, FALSE
, 0);
806 gtk_widget_grab_default (close_btn
);
808 g_signal_connect (G_OBJECT (close_btn
), "clicked",
809 G_CALLBACK (account_edit_close
),
811 g_signal_connect(G_OBJECT(help_btn
), "clicked",
812 G_CALLBACK(manual_open_with_anchor_cb
),
813 MANUAL_ANCHOR_ACCOUNTPREFS
);
815 account_create_list_view_images(list_view
);
817 g_signal_connect(G_OBJECT(window
), "size_allocate",
818 G_CALLBACK(account_size_allocate_cb
), NULL
);
820 if (!geometry
.min_height
) {
821 geometry
.min_width
= 500;
822 geometry
.min_height
= 380;
825 gtk_window_set_geometry_hints(GTK_WINDOW(window
), NULL
, &geometry
,
827 gtk_widget_set_size_request(window
, prefs_common
.accountswin_width
,
828 prefs_common
.accountswin_height
);
830 edit_account
.window
= window
;
831 edit_account
.list_view
= list_view
;
832 edit_account
.close_btn
= close_btn
;
834 maemo_window_full_screen_if_needed(GTK_WINDOW(edit_account
.window
));
838 static void account_edit_prefs(GtkWidget
*widget
, gpointer data
)
840 PrefsAccount
*ac_prefs
;
842 ac_prefs
= account_list_view_get_selected_account(edit_account
.list_view
);
845 account_open(ac_prefs
);
846 account_list_view_set();
850 static gboolean
account_delete_references_func(GNode
*node
, gpointer data
)
855 g_return_val_if_fail(node
->data
!= NULL
, FALSE
);
857 item
= FOLDER_ITEM(node
->data
);
858 account
= GPOINTER_TO_INT(data
);
860 if(!item
->prefs
) /* && item->prefs->stype == F_NORMAL */
862 if(item
->prefs
->default_account
!= account
)
865 item
->prefs
->enable_default_account
= FALSE
;
866 item
->prefs
->default_account
= 0;
867 folder_item_prefs_save_config(item
);
873 #define ACP_FDUP(fld) ac_clon->fld = ((ac_prefs->fld) != NULL)?\
874 g_strdup(ac_prefs->fld): NULL
875 #define ACP_FASSIGN(fld) ac_clon->fld = ac_prefs->fld
876 static void account_clone(GtkWidget
*widget
, gpointer data
)
878 PrefsAccount
*ac_prefs
, *ac_clon
;
880 CustomHeader
*cch
= NULL
, *ch
= NULL
;
882 ac_prefs
= account_list_view_get_selected_account(edit_account
.list_view
);
883 if (ac_prefs
== NULL
)
886 if (ac_prefs
->protocol
== A_IMAP4
|| ac_prefs
->protocol
== A_NNTP
) {
887 alertpanel_error(_("Accounts with remote folders cannot be copied."));
890 account_list_dirty
= TRUE
;
892 ac_clon
= prefs_account_new();
894 ac_clon
->account_name
= g_strdup_printf(_("Copy of %s"),
895 ac_prefs
->account_name
);
899 ACP_FDUP(organization
);
902 ACP_FASSIGN(protocol
);
903 ACP_FDUP(recv_server
);
904 ACP_FDUP(smtp_server
);
905 ACP_FDUP(nntp_server
);
906 ACP_FASSIGN(use_nntp_auth
);
907 ACP_FASSIGN(use_nntp_auth_onconnect
);
911 ACP_FDUP(local_mbox
);
912 ACP_FASSIGN(use_mail_command
);
913 ACP_FDUP(mail_command
);
915 ACP_FASSIGN(ssl_pop
);
916 ACP_FASSIGN(ssl_imap
);
917 ACP_FASSIGN(ssl_nntp
);
918 ACP_FASSIGN(ssl_smtp
);
919 ACP_FASSIGN(use_nonblocking_ssl
);
921 ac_clon
->tmp_pass
= NULL
;
924 ACP_FASSIGN(use_apop_auth
);
926 ACP_FASSIGN(msg_leave_time
);
927 ACP_FASSIGN(recv_at_getall
);
928 ACP_FASSIGN(sd_rmmail_on_download
);
929 ACP_FASSIGN(enable_size_limit
);
930 ACP_FASSIGN(size_limit
);
931 ACP_FASSIGN(filter_on_recv
);
932 ACP_FASSIGN(filterhook_on_recv
);
934 ACP_FDUP(local_inbox
);
935 ACP_FASSIGN(max_articles
);
937 ACP_FASSIGN(imap_auth_type
);
940 ACP_FASSIGN(add_customhdr
);
941 ACP_FASSIGN(use_smtp_auth
);
942 ACP_FASSIGN(smtp_auth_type
);
943 ACP_FDUP(smtp_userid
);
944 ACP_FDUP(smtp_passwd
);
946 ac_clon
->tmp_smtp_pass
= NULL
;
948 ACP_FASSIGN(pop_before_smtp
);
949 ACP_FASSIGN(pop_before_smtp_timeout
);
950 ACP_FASSIGN(last_pop_login_time
);
952 ac_clon
->customhdr_list
= NULL
;
953 hdrs
= ac_prefs
->customhdr_list
;
954 while (hdrs
!= NULL
) {
955 ch
= (CustomHeader
*)hdrs
->data
;
957 cch
= g_new0(CustomHeader
, 1);
958 cch
->account_id
= ac_clon
->account_id
;
959 cch
->name
= (ch
->name
!= NULL
) ? g_strdup(ch
->name
) : NULL
;
960 cch
->value
= (ch
->value
!= NULL
) ? g_strdup(ch
->value
) : NULL
;
962 ac_clon
->customhdr_list
= g_slist_append(ac_clon
->customhdr_list
, cch
);
964 hdrs
= g_slist_next(hdrs
);
968 ACP_FASSIGN(sig_type
);
970 ACP_FASSIGN(auto_sig
);
972 ACP_FASSIGN(set_autocc
);
974 ACP_FASSIGN(set_autobcc
);
976 ACP_FASSIGN(set_autoreplyto
);
977 ACP_FDUP(auto_replyto
);
978 ACP_FASSIGN(enable_default_dictionary
);
979 ACP_FDUP(default_dictionary
);
980 ACP_FASSIGN(enable_default_alt_dictionary
);
981 ACP_FDUP(default_alt_dictionary
);
982 ACP_FASSIGN(compose_with_format
);
983 ACP_FDUP(compose_subject_format
);
984 ACP_FDUP(compose_body_format
);
985 ACP_FASSIGN(reply_with_format
);
986 ACP_FDUP(reply_quotemark
);
987 ACP_FDUP(reply_body_format
);
988 ACP_FASSIGN(forward_with_format
);
989 ACP_FDUP(forward_quotemark
);
990 ACP_FDUP(forward_body_format
);
993 ACP_FDUP(default_privacy_system
);
994 ACP_FASSIGN(default_encrypt
);
995 ACP_FASSIGN(default_encrypt_reply
);
996 ACP_FASSIGN(default_sign
);
997 ACP_FASSIGN(save_encrypted_as_clear_text
);
998 ACP_FASSIGN(encrypt_to_self
);
1001 ACP_FASSIGN(set_smtpport
);
1002 ACP_FASSIGN(smtpport
);
1003 ACP_FASSIGN(set_popport
);
1004 ACP_FASSIGN(popport
);
1005 ACP_FASSIGN(set_imapport
);
1006 ACP_FASSIGN(imapport
);
1007 ACP_FASSIGN(set_nntpport
);
1008 ACP_FASSIGN(nntpport
);
1009 ACP_FASSIGN(set_domain
);
1011 ACP_FASSIGN(mark_crosspost_read
);
1012 ACP_FASSIGN(crosspost_col
);
1014 ACP_FASSIGN(set_tunnelcmd
);
1015 ACP_FDUP(tunnelcmd
);
1018 ACP_FASSIGN(imap_subsonly
);
1019 ACP_FASSIGN(low_bandwidth
);
1021 ACP_FASSIGN(set_sent_folder
);
1022 ACP_FDUP(sent_folder
);
1023 ACP_FASSIGN(set_queue_folder
);
1024 ACP_FDUP(queue_folder
);
1025 ACP_FASSIGN(set_draft_folder
);
1026 ACP_FDUP(draft_folder
);
1027 ACP_FASSIGN(set_trash_folder
);
1028 ACP_FDUP(trash_folder
);
1029 /* don't want two default accounts */
1030 ac_clon
->is_default
= FALSE
;
1031 ACP_FASSIGN(folder
);
1033 account_list
= g_list_append(account_list
, ac_clon
);
1034 account_list_view_set();
1039 static void account_delete(GtkWidget
*widget
, gpointer data
)
1041 PrefsAccount
*ac_prefs
;
1042 gchar buf
[BUFFSIZE
];
1047 ac_prefs
= account_list_view_get_selected_account(edit_account
.list_view
);
1048 if (ac_prefs
== NULL
)
1051 g_snprintf(buf
, sizeof(buf
),
1052 _("Do you really want to delete the account '%s'?"),
1053 ac_prefs
->account_name
? ac_prefs
->account_name
:
1055 if (alertpanel_full(_("Delete account"), buf
,
1056 GTK_STOCK_CANCEL
, GTK_STOCK_DELETE
, NULL
, FALSE
,
1057 NULL
, ALERT_WARNING
, G_ALERTDEFAULT
) != G_ALERTALTERNATE
)
1059 account_list_dirty
= TRUE
;
1061 if (ac_prefs
->folder
) {
1064 item
= mainwindow_get_mainwindow()->summaryview
->folder_item
;
1065 if (item
&& item
->folder
== FOLDER(ac_prefs
->folder
))
1066 summary_clear_all(mainwindow_get_mainwindow()->summaryview
);
1067 folder_destroy(FOLDER(ac_prefs
->folder
));
1068 folderview_set_all();
1070 account_destroy(ac_prefs
);
1071 account_list_view_set();
1073 debug_print("Removing deleted account references for all the folders...\n");
1074 list
= folder_get_list();
1075 for (; list
!= NULL
; list
= list
->next
) {
1076 folder
= FOLDER(list
->data
);
1077 if (folder
->node
) /* && folder->type == F_? */
1078 g_node_traverse(folder
->node
, G_PRE_ORDER
,
1080 account_delete_references_func
,
1081 GINT_TO_POINTER(ac_prefs
->account_id
));
1084 debug_print("Removing filter rules relative to this account...\n");
1085 for(cur
= filtering_rules
; cur
!= NULL
;) {
1086 FilteringProp
* prop
= (FilteringProp
*) cur
->data
;
1088 if (prop
&& (prop
->account_id
== ac_prefs
->account_id
)) {
1089 /* get next item before we kill the current one */
1090 cur
= g_slist_next(cur
);
1092 /* unallocate filteringprop and unchain it from the list */
1093 filteringprop_free(prop
);
1094 filtering_rules
= g_slist_remove(filtering_rules
, prop
);
1096 cur
= g_slist_next(cur
);
1099 folder_write_list();
1102 static void account_up(GtkWidget
*widget
, gpointer data
)
1104 GtkTreePath
*sel
= account_list_view_get_selected_account_path
1105 (edit_account
.list_view
),
1107 GtkTreeIter isel
, iup
;
1108 GtkTreeModel
*model
= gtk_tree_view_get_model
1109 (GTK_TREE_VIEW(edit_account
.list_view
));
1113 account_list_dirty
= TRUE
;
1115 up
= gtk_tree_path_copy(sel
);
1117 gtk_tree_path_free(sel
);
1121 if (!gtk_tree_path_prev(up
)) {
1122 gtk_tree_path_free(up
);
1123 gtk_tree_path_free(sel
);
1127 if (!gtk_tree_model_get_iter(model
, &isel
, sel
)
1128 || !gtk_tree_model_get_iter(model
, &iup
, up
)) {
1129 gtk_tree_path_free(up
);
1130 gtk_tree_path_free(sel
);
1134 gtk_list_store_swap(GTK_LIST_STORE(model
), &isel
, &iup
);
1138 gtk_tree_path_free(up
);
1139 gtk_tree_path_free(sel
);
1142 static void account_down(GtkWidget
*widget
, gpointer data
)
1144 GtkTreePath
*sel
= account_list_view_get_selected_account_path
1145 (edit_account
.list_view
),
1147 GtkTreeIter isel
, idn
;
1148 GtkTreeModel
*model
= gtk_tree_view_get_model
1149 (GTK_TREE_VIEW(edit_account
.list_view
));
1153 account_list_dirty
= TRUE
;
1155 dn
= gtk_tree_path_copy(sel
);
1157 gtk_tree_path_free(sel
);
1161 /* XXX no check possible??? however, if down but at bottom, then
1162 * nothing seems to happen much anyway, so the following seems to
1164 gtk_tree_path_next(dn
);
1166 if (!gtk_tree_model_get_iter(model
, &isel
, sel
)
1167 || !gtk_tree_model_get_iter(model
, &idn
, dn
)) {
1168 gtk_tree_path_free(dn
);
1169 gtk_tree_path_free(sel
);
1173 gtk_list_store_swap(GTK_LIST_STORE(model
), &isel
, &idn
);
1177 gtk_tree_path_free(dn
);
1178 gtk_tree_path_free(sel
);
1181 static void account_set_default(GtkWidget
*widget
, gpointer data
)
1183 PrefsAccount
*ac_prefs
;
1185 if (NULL
== (ac_prefs
= account_list_view_get_selected_account
1186 (edit_account
.list_view
)))
1189 /* we need to change the store variables by resetting everything
1190 * and setting the new default one */
1191 account_list_view_set_default_by_id(edit_account
.list_view
,
1192 ac_prefs
->account_id
);
1194 account_set_as_default(ac_prefs
);
1195 account_list_view_set();
1197 cur_account
= ac_prefs
;
1198 account_flush_state();
1201 static void account_edit_close(GtkWidget
*widget
, gpointer data
)
1204 account_write_config_all();
1206 if (!cur_account
&& account_list
) {
1207 PrefsAccount
*ac_prefs
= (PrefsAccount
*)account_list
->data
;
1208 account_set_as_default(ac_prefs
);
1209 cur_account
= ac_prefs
;
1212 if (account_list_dirty
)
1213 account_flush_state();
1215 gtk_widget_hide(edit_account
.window
);
1220 static gint
account_delete_event(GtkWidget
*widget
, GdkEventAny
*event
,
1223 account_edit_close(NULL
, NULL
);
1227 static gboolean
account_key_pressed(GtkWidget
*widget
, GdkEventKey
*event
,
1230 if (event
&& event
->keyval
== GDK_Escape
)
1231 account_edit_close(NULL
, NULL
);
1235 static void account_list_view_add(PrefsAccount
*ac_prefs
)
1237 GtkTreeView
*list_view
= GTK_TREE_VIEW(edit_account
.list_view
);
1238 GtkListStore
*list_store
= GTK_LIST_STORE(gtk_tree_view_get_model(list_view
));
1239 gchar
*name
, *protocol
, *server
;
1240 gboolean has_getallbox
;
1243 name
= ac_prefs
->account_name
;
1245 protocol
= ac_prefs
->protocol
== A_POP3
?
1246 (ac_prefs
->ssl_pop
== SSL_TUNNEL
?
1248 ac_prefs
->ssl_pop
== SSL_STARTTLS
?
1249 "POP3 (TLS)" : "POP3") :
1250 ac_prefs
->protocol
== A_IMAP4
?
1251 (ac_prefs
->ssl_imap
== SSL_TUNNEL
?
1253 ac_prefs
->ssl_imap
== SSL_STARTTLS
?
1254 "IMAP4 (TLS)" : "IMAP4") :
1255 ac_prefs
->protocol
== A_NNTP
?
1256 (ac_prefs
->ssl_nntp
== SSL_TUNNEL
?
1257 "NNTP (SSL)" : "NNTP") :
1258 ac_prefs
->protocol
== A_LOCAL
? "Local" :
1259 ac_prefs
->protocol
== A_NONE
? "SMTP" : "-";
1261 protocol
= ac_prefs
->protocol
== A_POP3
? "POP3" :
1262 ac_prefs
->protocol
== A_IMAP4
? "IMAP4" :
1263 ac_prefs
->protocol
== A_LOCAL
? "Local" :
1264 ac_prefs
->protocol
== A_NNTP
? "NNTP" :
1265 ac_prefs
->protocol
== A_NONE
? "SMTP" : "-";
1267 server
= ac_prefs
->protocol
== A_NNTP
? ac_prefs
->nntp_server
:
1268 ac_prefs
->protocol
== A_LOCAL
? "-" :
1269 ac_prefs
->protocol
== A_NONE
? ac_prefs
->smtp_server
:
1270 ac_prefs
->recv_server
;
1272 has_getallbox
= (ac_prefs
->protocol
== A_POP3
||
1273 ac_prefs
->protocol
== A_IMAP4
||
1274 ac_prefs
->protocol
== A_NNTP
||
1275 ac_prefs
->protocol
== A_LOCAL
);
1276 getall
= has_getallbox
&& ac_prefs
->recv_at_getall
;
1278 account_list_view_insert_account_item(list_store
,
1279 name
, protocol
, server
,
1280 ac_prefs
->is_default
,
1285 static void account_list_view_set(void)
1288 gint prev_sel_account
;
1289 GtkListStore
*store
;
1291 store
= GTK_LIST_STORE(gtk_tree_view_get_model
1292 (GTK_TREE_VIEW(edit_account
.list_view
)));
1294 prev_sel_account
= account_list_view_get_selected_account_id
1295 (edit_account
.list_view
);
1297 gtk_list_store_clear(store
);
1299 for (cur
= account_list
; cur
!= NULL
; cur
= cur
->next
) {
1300 account_list_view_add((PrefsAccount
*)cur
->data
);
1301 if ((PrefsAccount
*)cur
->data
== cur_account
)
1302 account_list_view_select_account
1303 (edit_account
.list_view
,
1304 cur_account
->account_id
);
1307 if (prev_sel_account
>= 0)
1308 account_list_view_select_account(edit_account
.list_view
,
1312 /* set account list from CList */
1313 static void account_list_set(void)
1315 /* want to make sure we iterate *IN ORDER*, so therefore using
1316 * gtk_tree_model_XXXX_nth_child() */
1318 PrefsAccount
*ac_prefs
;
1319 GtkTreeModel
*model
= gtk_tree_view_get_model
1320 (GTK_TREE_VIEW(edit_account
.list_view
));
1322 while (account_list
)
1323 account_list
= g_list_remove(account_list
, account_list
->data
);
1325 n_rows
= gtk_tree_model_iter_n_children(model
, NULL
);
1327 for (row
= 0; row
< n_rows
; row
++) {
1330 if (!gtk_tree_model_iter_nth_child(model
, &iter
, NULL
, row
)) {
1331 g_warning("%s(%d) - no iter found???\n", __FILE__
, __LINE__
);
1336 gtk_tree_model_get(model
, &iter
,
1337 ACCOUNT_DATA
, &ac_prefs
,
1340 account_list
= g_list_append(account_list
, ac_prefs
);
1345 *\brief finds the PrefsAccounts which should be used to answer a mail
1347 *\param msginfo The message to be answered
1348 *\param reply_autosel Indicates whether reply account autoselection is on
1350 *\return PrefsAccount * the correct account, NULL if not found
1352 PrefsAccount
*account_get_reply_account(MsgInfo
*msginfo
, gboolean reply_autosel
)
1354 PrefsAccount
*account
= NULL
;
1355 /* select the account set in folderitem's property (if enabled) */
1356 if (msginfo
->folder
->prefs
&& msginfo
->folder
->prefs
->enable_default_account
)
1357 account
= account_find_from_id(msginfo
->folder
->prefs
->default_account
);
1359 /* select account by to: and cc: header if enabled */
1360 if (reply_autosel
) {
1361 gchar
* field
= NULL
;
1363 for (field
= msginfo
->to
; fieldno
++ < 2; field
= msginfo
->cc
) {
1364 if (!account
&& field
) {
1366 if (!strchr(field
, ',')) {
1367 Xstrdup_a(to
, field
, return NULL
);
1368 extract_address(to
);
1369 account
= account_find_from_address(to
);
1371 gchar
**split
= g_strsplit(field
, ",", -1);
1377 Xstrdup_a(to
, split
[i
], return NULL
);
1378 extract_address(to
);
1379 account
= account_find_from_address(to
);
1386 gchar deliveredto
[BUFFSIZE
];
1387 if (!procheader_get_header_from_msginfo
1388 (msginfo
, deliveredto
,sizeof deliveredto
, "Delivered-To:")) {
1389 gchar
*buf
= deliveredto
+ strlen("Delivered-To:");
1390 extract_address(buf
);
1391 account
= account_find_from_address(buf
);
1396 /* select the account for the whole folder (IMAP / NNTP) */
1398 /* FIXME: this is not right, because folder may be nested. we should
1399 * ascend the tree until we find a parent with proper account
1401 account
= msginfo
->folder
->folder
->account
;
1403 /* select current account */
1404 if (!account
) account
= cur_account
;
1410 *\brief Create data store
1412 static GtkListStore
* account_create_data_store(void)
1414 return gtk_list_store_new(N_ACCOUNT_COLUMNS
,
1415 GDK_TYPE_PIXBUF
, /* ACCOUNT_IS_DEFAULT */
1416 G_TYPE_BOOLEAN
, /* ACCOUNT_ENABLE_GET_ALL */
1417 G_TYPE_STRING
, /* ACCOUNT_NAME */
1418 G_TYPE_STRING
, /* ACCOUNT_PROTOCOL */
1419 G_TYPE_STRING
, /* ACCOUNT_SERVER */
1420 G_TYPE_POINTER
, /* ACCOUNT_DATA */
1425 *\brief Insert an account item in the list.
1427 *\return GtkTreeRowReference * A tree row reference, which is guaranteed to
1428 * stable whatever operations are performed on the list.
1430 static void account_list_view_insert_account_item(GtkListStore
*list_store
,
1431 const gchar
*account_name
,
1432 const gchar
*protocol
,
1433 const gchar
*server_name
,
1434 gboolean is_default
,
1435 gboolean is_get_all
,
1436 PrefsAccount
*account_data
)
1440 gtk_list_store_append(list_store
, &iter
);
1441 gtk_list_store_set(list_store
, &iter
,
1442 ACCOUNT_IS_DEFAULT
, is_default
? mark_pixbuf
: NULL
,
1443 ACCOUNT_ENABLE_GET_ALL
, is_get_all
,
1444 ACCOUNT_NAME
, account_name
,
1445 ACCOUNT_PROTOCOL
, protocol
,
1446 ACCOUNT_SERVER
, server_name
,
1447 ACCOUNT_DATA
, account_data
,
1452 *\brief Create and set up account list view, including tasks like
1453 * creating the data store (\ref account_create_data_store()),
1454 * creating images for the list view (\ref account_create_list_view_images()),
1455 * and setting up the account list's individual columns (\ref
1456 * account_create_list_view_columns()).
1458 *\return GtkWidget * The created list view widget.
1460 static GtkWidget
*account_list_view_create(void)
1462 GtkTreeView
*list_view
;
1463 GtkTreeSelection
*selector
;
1464 GtkListStore
*store
= account_create_data_store();
1466 list_view
= GTK_TREE_VIEW(gtk_tree_view_new_with_model(GTK_TREE_MODEL(store
)));
1467 g_object_unref(G_OBJECT(store
));
1469 gtk_tree_view_set_rules_hint(list_view
, prefs_common
.use_stripes_everywhere
);
1470 gtk_tree_view_set_reorderable(list_view
, TRUE
);
1472 selector
= gtk_tree_view_get_selection(list_view
);
1473 gtk_tree_selection_set_mode(selector
, GTK_SELECTION_BROWSE
);
1475 /* create the columns */
1476 account_create_list_view_columns(GTK_WIDGET(list_view
));
1478 /* set a double click listener */
1479 g_signal_connect(G_OBJECT(list_view
), "row_activated",
1480 G_CALLBACK(account_double_clicked
),
1483 g_signal_connect(G_OBJECT(list_view
), "drag_begin",
1484 G_CALLBACK(drag_begin
),
1487 g_signal_connect(G_OBJECT(list_view
), "drag_end",
1488 G_CALLBACK(drag_end
),
1491 gtk_tree_view_set_reorderable(list_view
, TRUE
);
1492 return GTK_WIDGET(list_view
);
1495 static void account_create_list_view_images(GtkWidget
*list_view
)
1497 stock_pixbuf_gdk(list_view
, STOCK_PIXMAP_MARK
, &mark_pixbuf
);
1500 static void account_create_list_view_columns(GtkWidget
*list_view
)
1502 GtkTreeViewColumn
*column
;
1503 GtkCellRenderer
*renderer
;
1504 GtkTooltips
*tooltips
= gtk_tooltips_new();
1506 renderer
= gtk_cell_renderer_pixbuf_new();
1507 column
= gtk_tree_view_column_new_with_attributes
1508 (Q_("Accounts List Default Column Name|D"), renderer
,
1509 "pixbuf", ACCOUNT_IS_DEFAULT
,
1511 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1512 gtk_tree_view_column_set_alignment (column
, 0.5);
1513 gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips
), column
->button
,
1514 _("Default account"), NULL
);
1516 renderer
= gtk_cell_renderer_toggle_new();
1517 g_object_set(renderer
,
1519 "activatable", TRUE
,
1521 column
= gtk_tree_view_column_new_with_attributes
1522 (Q_("Accounts List Get Column Name|G"), renderer
,
1523 "active", ACCOUNT_ENABLE_GET_ALL
,
1525 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1526 gtk_tree_view_column_set_alignment (column
, 0.5);
1527 gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips
), column
->button
,
1528 _("'Get Mail' retrieves mail from the checked accounts"), NULL
);
1529 g_signal_connect(G_OBJECT(renderer
), "toggled",
1530 G_CALLBACK(account_get_all_toggled
),
1533 renderer
= gtk_cell_renderer_text_new();
1534 column
= gtk_tree_view_column_new_with_attributes
1535 (_("Name"), renderer
,
1536 "text", ACCOUNT_NAME
,
1538 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1540 renderer
= gtk_cell_renderer_text_new();
1541 column
= gtk_tree_view_column_new_with_attributes
1542 (_("Protocol"), renderer
,
1543 "text", ACCOUNT_PROTOCOL
,
1545 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1547 renderer
= gtk_cell_renderer_text_new();
1548 column
= gtk_tree_view_column_new_with_attributes
1549 (_("Server"), renderer
,
1550 "text", ACCOUNT_SERVER
,
1552 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1556 *\brief Get currently selected account (by its unique ID)
1558 static gint
account_list_view_get_selected_account_id(GtkWidget
*list_view
)
1560 GtkTreeSelection
*selector
;
1561 GtkTreeModel
*model
;
1563 PrefsAccount
*res
= NULL
;
1565 selector
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view
));
1567 if (!gtk_tree_selection_get_selected(selector
, &model
, &iter
))
1570 gtk_tree_model_get(model
, &iter
, ACCOUNT_DATA
, &res
, -1);
1572 return res
->account_id
;
1576 *\brief Get the tree path of the currently selected account
1578 static GtkTreePath
*account_list_view_get_selected_account_path(GtkWidget
*list_view
)
1580 GtkTreeSelection
*selector
;
1581 GtkTreeModel
*model
;
1584 selector
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view
));
1586 if (!gtk_tree_selection_get_selected(selector
, &model
, &iter
))
1589 return gtk_tree_model_get_path(gtk_tree_view_get_model
1590 (GTK_TREE_VIEW(list_view
)), &iter
);
1594 *\brief Get the account data of the currently selected account
1596 static PrefsAccount
*account_list_view_get_selected_account(GtkWidget
*list_view
)
1598 GtkTreeSelection
*selector
;
1599 GtkTreeModel
*model
;
1601 PrefsAccount
*res
= NULL
;
1603 selector
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view
));
1605 if (!gtk_tree_selection_get_selected(selector
, &model
, &iter
))
1608 gtk_tree_model_get(model
, &iter
, ACCOUNT_DATA
, &res
, -1);
1614 *\brief Select a row by the account it represents
1616 *\return gboolean TRUE if found and selected, FALSE if not.
1618 static gboolean
account_list_view_select_account(GtkWidget
*list_view
, gint account_id
)
1620 FindAccountInStore fis
;
1621 GtkTreeModel
*model
;
1623 fis
.account_id
= account_id
;
1626 model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list_view
));
1628 gtk_tree_model_foreach(model
, (GtkTreeModelForeachFunc
) find_account_in_store
,
1632 GtkTreeSelection
*selection
;
1635 selection
= gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view
));
1636 gtk_tree_selection_select_iter(selection
, &fis
.iter
);
1637 path
= gtk_tree_model_get_path(model
, &fis
.iter
);
1638 /* XXX returned path may not be valid??? create new one to be sure */
1639 gtk_tree_view_set_cursor(GTK_TREE_VIEW(list_view
), path
, NULL
, FALSE
);
1640 gtk_tree_path_free(path
);
1643 return fis
.path
!= NULL
;
1647 *\brief Set a new default account by its ID. (There is only one
1650 static void account_list_view_set_default_by_id(GtkWidget
*list_view
,
1653 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list_view
));
1655 gtk_tree_model_foreach
1656 (model
, (GtkTreeModelForeachFunc
) set_new_default_account
,
1660 static gboolean
set_new_default_account(GtkTreeModel
*model
,
1665 PrefsAccount
*account
= NULL
;
1668 gtk_tree_model_get(model
, iter
,
1669 ACCOUNT_DATA
, &account
,
1672 if (*account_id
== account
->account_id
)
1675 pixbuf
= mark_pixbuf
;
1677 gtk_list_store_set(GTK_LIST_STORE(model
), iter
,
1678 ACCOUNT_IS_DEFAULT
, pixbuf
,
1684 static gboolean
find_account_in_store(GtkTreeModel
*model
,
1687 FindAccountInStore
*data
)
1689 PrefsAccount
*account
= NULL
;
1690 gtk_tree_model_get(model
, iter
, ACCOUNT_DATA
, &account
, -1);
1692 if (data
->account_id
== account
->account_id
) {
1693 data
->path
= path
; /* signal we found it */
1702 *\brief Triggered when "get all" column is activated or de-activated
1704 static void account_get_all_toggled(GtkCellRendererToggle
*widget
,
1706 GtkWidget
*list_view
)
1709 GtkTreeModel
*model
= gtk_tree_view_get_model(GTK_TREE_VIEW(list_view
));
1710 PrefsAccount
*ac
= NULL
;
1713 if (!gtk_tree_model_get_iter_from_string(model
, &iter
, path
))
1716 gtk_tree_model_get(model
, &iter
,
1718 ACCOUNT_ENABLE_GET_ALL
, &get_all
,
1721 /* check if the account has a selectable get all checkbox anyway... */
1722 if (!(ac
->protocol
== A_POP3
||
1723 ac
->protocol
== A_IMAP4
||
1724 ac
->protocol
== A_NNTP
||
1725 ac
->protocol
== A_LOCAL
))
1728 /* set value in store */
1729 gtk_list_store_set(GTK_LIST_STORE(model
), &iter
,
1730 ACCOUNT_ENABLE_GET_ALL
, !get_all
,
1733 /* set value in account */
1734 ac
->recv_at_getall
^= TRUE
;
1737 static void account_double_clicked(GtkTreeView
*list_view
,
1739 GtkTreeViewColumn
*column
,
1742 account_edit_prefs(NULL
, NULL
);
1745 static void drag_begin(GtkTreeView
*list_view
,
1746 GdkDragContext
*context
,
1749 /* XXX unfortunately a completed drag & drop does not emit
1750 * a "rows_reordered" signal, but a "row_changed" signal.
1751 * So during drag and drop, listen to "row_changed", and
1752 * update the account list accordingly */
1754 GtkTreeModel
*model
= gtk_tree_view_get_model(list_view
);
1755 g_signal_connect(G_OBJECT(model
), "row_changed",
1756 G_CALLBACK(account_row_changed_while_drag_drop
),
1760 static void drag_end(GtkTreeView
*list_view
,
1761 GdkDragContext
*context
,
1764 GtkTreeModel
*model
= gtk_tree_view_get_model(list_view
);
1765 g_signal_handlers_disconnect_by_func(G_OBJECT(model
),
1766 G_CALLBACK(account_row_changed_while_drag_drop
),
1770 static void account_row_changed_while_drag_drop(GtkTreeModel
*model
,
1774 GtkTreeView
*list_view
)