a3750a95d69992a055cde8ca2d279c00791d5a6d
[claws.git] / src / prefs_common.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __PREFS_COMMON_H__
21 #define __PREFS_COMMON_H__
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <glib.h>
28
29 #include "mainwindow.h"
30 #include "summaryview.h"
31 #include "codeconv.h"
32 #include "textview.h"
33
34 typedef struct _PrefsCommon     PrefsCommon;
35
36 typedef enum {
37         RECV_DIALOG_ALWAYS,
38         RECV_DIALOG_ACTIVE,
39         RECV_DIALOG_NEVER
40 } RecvDialogMode;
41
42 typedef enum {
43         CTE_AUTO,
44         CTE_BASE64,
45         CTE_QUOTED_PRINTABLE,
46         CTE_8BIT
47 } TransferEncodingMethod;
48
49 typedef enum {
50         SEND_DIALOG_ALWAYS,
51         /* SEND_DIALOG_ACTIVE would be irrelevant */
52         SEND_DIALOG_NEVER
53 } SendDialogMode;
54
55 typedef enum
56 {
57         NEXTUNREADMSGDIALOG_ALWAYS,
58         NEXTUNREADMSGDIALOG_ASSUME_YES,
59         NEXTUNREADMSGDIALOG_ASSUME_NO
60 } NextUnreadMsgDialogShow;
61
62 struct _PrefsCommon
63 {
64         /* Receive */
65         gboolean use_extinc;
66         gchar *extinc_cmd;
67         gboolean inc_local;
68         gboolean filter_on_inc;
69         gchar *spool_path;
70         gboolean scan_all_after_inc;
71         gboolean autochk_newmail;
72         gint autochk_itv;
73         gboolean chk_on_startup;
74         gboolean newmail_notify_auto;
75         gboolean newmail_notify_manu;
76         gchar   *newmail_notify_cmd;
77         gint max_articles;
78
79         /* Send */
80         gboolean use_extsend;
81         gchar *extsend_cmd;
82         gboolean savemsg;
83         gboolean queue_msg;
84         gchar *outgoing_charset;
85         TransferEncodingMethod encoding_method;
86
87         /* Compose */
88         gint undolevels;
89         gint linewrap_len;
90         gboolean linewrap_quote;
91         gboolean autowrap;
92         gboolean linewrap_at_send;
93         gboolean auto_exteditor;
94         gboolean reply_account_autosel;
95         gboolean default_reply_list;
96         gboolean forward_account_autosel;
97         gboolean reedit_account_autosel;
98         gboolean show_ruler;
99         gboolean autosave;
100         gint autosave_length;
101         
102         /* Quote */
103         gboolean reply_with_quote;
104         gchar *quotemark;
105         gchar *quotefmt;
106         gchar *fw_quotemark;
107         gchar *fw_quotefmt;
108         gboolean forward_as_attachment;
109         gboolean redirect_keep_from;
110         gboolean smart_wrapping;
111         gboolean block_cursor;
112         gchar *quote_chars;
113         
114 #if USE_ASPELL
115         gboolean enable_aspell;
116         gchar *aspell_path;
117         gchar *dictionary;
118         gint misspelled_col;
119         gint aspell_sugmode;
120         gboolean check_while_typing;
121         gboolean use_alternate;
122 #endif
123         
124         /* Display */
125         gchar *widgetfont;
126         gchar *textfont;
127         gchar *normalfont;
128         gchar *boldfont;
129         gchar *smallfont;
130
131         gboolean trans_hdr;
132         gboolean display_folder_unread;
133         gint ng_abbrev_len;
134
135         gboolean show_searchbar;
136         gboolean swap_from;
137         gboolean expand_thread;
138         gboolean use_addr_book;
139         gchar *date_format;
140
141         gboolean enable_hscrollbar;
142         gboolean bold_unread;
143         gboolean enable_thread;
144         gboolean thread_by_subject;
145
146         ToolbarStyle toolbar_style;
147         gboolean show_statusbar;
148
149         gint folderview_vscrollbar_policy;
150
151         /* Filtering */
152         GSList *fltlist;
153
154         gint kill_score;
155         gint important_score;
156
157         /* Actions */
158         GSList *actions_list;
159
160         /* Summary columns visibility, position and size */
161         gboolean summary_col_visible[N_SUMMARY_COLS];
162         gint summary_col_pos[N_SUMMARY_COLS];
163         gint summary_col_size[N_SUMMARY_COLS];
164
165         /* Widget size */
166         gint folderview_x;
167         gint folderview_y;
168         gint folderview_width;
169         gint folderview_height;
170         gint folder_col_folder;
171         gint folder_col_new;
172         gint folder_col_unread;
173         gint folder_col_total;
174
175         gint summaryview_width;
176         gint summaryview_height;
177
178         gint mainview_x;
179         gint mainview_y;
180         gint mainview_width;
181         gint mainview_height;
182         gint mainwin_x;
183         gint mainwin_y;
184         gint mainwin_width;
185         gint mainwin_height;
186
187         gint msgwin_width;
188         gint msgwin_height;
189
190         gint compose_width;
191         gint compose_height;
192
193         /* Message */
194         gboolean enable_color;
195         gint quote_level1_col;
196         gint quote_level2_col;
197         gint quote_level3_col;
198         gint uri_col;
199         gint tgt_folder_col;
200         gint signature_col;
201         gboolean recycle_quote_colors;
202         gboolean conv_mb_alnum;
203         gboolean display_header_pane;
204         gboolean display_header;
205         gboolean head_space;
206         gint line_space;
207         gboolean enable_smooth_scroll;
208         gint scroll_step;
209         gboolean scroll_halfpage;
210
211         gboolean display_img;
212         gboolean resize_image;
213
214         gchar *force_charset;
215
216         gboolean show_other_header;
217         GSList *disphdr_list;
218
219         /* MIME viewer */
220         gchar *mime_image_viewer;
221         gchar *mime_audio_player;
222         gchar *mime_open_cmd;
223
224         GList *mime_open_cmd_history;
225
226 #if USE_GPGME
227         /* Privacy */
228         gboolean auto_check_signatures;
229         gboolean gpg_signature_popup;
230         gboolean store_passphrase;
231         gint store_passphrase_timeout;
232         gboolean passphrase_grab;
233         gboolean gpg_warning;
234 #endif /* USE_GPGME */
235
236         /* Interface */
237         gboolean sep_folder;
238         gboolean sep_msg;
239         gboolean emulate_emacs;
240         gboolean show_msg_with_cursor_key;
241         gboolean open_unread_on_enter;
242         gboolean mark_as_read_on_new_window;
243         gboolean open_inbox_on_inc;
244         gboolean immediate_exec;
245         RecvDialogMode recv_dialog_mode;
246         SendDialogMode send_dialog_mode;
247         gboolean close_recv_dialog;
248         gboolean no_recv_err_panel;
249         NextUnreadMsgDialogShow next_unread_msg_dialog;
250         gboolean add_address_by_click;
251         gchar *pixmap_theme_path;
252
253         /* Other */
254         gchar *uri_cmd;
255         gchar *print_cmd;
256         gchar *ext_editor_cmd;
257
258         gboolean cliplog;
259         guint loglength;
260
261         gboolean confirm_on_exit;
262         gboolean clean_on_exit;
263         gboolean ask_on_clean;
264         gboolean warn_queued_on_exit;
265 #if 0
266 #ifdef USE_OPENSSL
267         gboolean ssl_ask_unknown_valid;
268 #endif
269 #endif
270         /* Memory cache*/
271         gint cache_max_mem_usage;
272         gint cache_min_keep_time;
273         
274         /* boolean for work offline 
275            stored here for use in inc.c */
276         gboolean work_offline;
277         
278         gint summary_quicksearch_type;
279
280 };
281
282 extern PrefsCommon prefs_common;
283
284 void prefs_common_init          ();
285 void prefs_common_read_config   (void);
286 void prefs_common_save_config   (void);
287 void prefs_common_open          (void);
288
289 #endif /* __PREFS_COMMON_H__ */