2006-08-22 [colin] 2.4.0cvs73
[claws.git] / src / folder_item_prefs.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
4  *
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 2 of the License, or
8  * (at your option) any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef FOLDER_ITEM_PREFS_H
21 #define FOLDER_ITEM_PREFS_H
22
23 #include <glib.h>
24 #include <sys/types.h>
25
26 typedef struct _FolderItemPrefs FolderItemPrefs;
27
28 #include "folder.h"
29
30 struct _FolderItemPrefs {
31         gchar * directory;
32
33         gboolean sort_by_number;
34         gboolean sort_by_size;
35         gboolean sort_by_date;
36         gboolean sort_by_from;
37         gboolean sort_by_subject;
38         gboolean sort_by_score;
39
40         gboolean sort_descending;
41
42         gboolean enable_thread;
43
44         int enable_processing;
45         GSList * processing;
46
47         int newmailcheck;
48         int offlinesync;
49
50         gboolean request_return_receipt;
51         gboolean enable_default_to;
52         gchar *default_to;
53         gboolean enable_default_reply_to;
54         gchar *default_reply_to;
55         gboolean enable_simplify_subject;
56         gchar *simplify_subject_regexp;
57         gboolean enable_folder_chmod;
58         gint folder_chmod;
59         gboolean enable_default_account;
60         gint default_account;
61 #if USE_ASPELL
62         gboolean enable_default_dictionary;
63         gchar *default_dictionary;
64 #endif
65         gboolean save_copy_to_folder;
66         guint color;
67 };
68
69 void folder_item_prefs_read_config(FolderItem * item);
70 void folder_item_prefs_save_config(FolderItem * item);
71 void folder_item_prefs_set_config(FolderItem * item,
72                                   int sort_type, gint sort_mode);
73 FolderItemPrefs *folder_item_prefs_new(void);
74 void folder_item_prefs_free(FolderItemPrefs * prefs);
75 gint folder_item_prefs_get_sort_type(FolderItem * item);
76 gint folder_item_prefs_get_sort_mode(FolderItem * item);
77 void folder_item_prefs_copy_prefs(FolderItem * src, FolderItem * dest);
78
79 #endif /* FOLDER_ITEM_PREFS_H */