2007-06-12 [colin] 2.9.2cvs57
[claws.git] / src / prefs_common.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail 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 __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 "folderview.h"
32 #include "codeconv.h"
33 #include "textview.h"
34 #include "procmime.h"
35 #include "prefs_msg_colors.h"
36
37 typedef struct _PrefsCommon     PrefsCommon;
38
39 typedef enum {
40         RECV_DIALOG_ALWAYS,
41         RECV_DIALOG_MANUAL,
42         RECV_DIALOG_NEVER
43 } RecvDialogMode;
44
45 typedef enum {
46         COMPOSE_DND_ASK,
47         COMPOSE_DND_INSERT,
48         COMPOSE_DND_ATTACH
49 } ComposeDndInsertOrAttach;
50
51 typedef enum {
52         CTE_AUTO,
53         CTE_BASE64,
54         CTE_QUOTED_PRINTABLE,
55         CTE_8BIT
56 } TransferEncodingMethod;
57
58 typedef enum {
59         SEND_DIALOG_ALWAYS,
60         /* SEND_DIALOG_ACTIVE would be irrelevant */
61         SEND_DIALOG_NEVER
62 } SendDialogMode;
63
64 typedef enum
65 {
66 /* U = unread, N = new, M = marked */
67         SELECTONENTRY_NOTHING,
68         SELECTONENTRY_UNM,
69         SELECTONENTRY_UMN,
70         SELECTONENTRY_NUM,
71         SELECTONENTRY_NMU,
72         SELECTONENTRY_MNU,
73         SELECTONENTRY_MUN,
74         SELECTONENTRY_LAST
75 } SelectOnEntry;
76
77 typedef enum
78 {
79         ACTION_UNSET = 0, /* for backward compatibility */
80         ACTION_MARKED,
81         ACTION_NEW,
82         ACTION_UNREAD,
83         ACTION_LAST_OPENED,
84         ACTION_LAST_LIST,
85         ACTION_NOTHING
86 } EntryAction;
87
88 typedef enum
89 {
90         NEXTUNREADMSGDIALOG_ALWAYS,
91         NEXTUNREADMSGDIALOG_ASSUME_YES,
92         NEXTUNREADMSGDIALOG_ASSUME_NO
93 } NextUnreadMsgDialogShow;
94
95 struct _PrefsCommon
96 {
97         /* Receive */
98         gboolean use_extinc;
99         gchar *extinc_cmd;
100         gboolean scan_all_after_inc;
101         gboolean autochk_newmail;
102         gint autochk_itv;
103         gboolean chk_on_startup;
104         gboolean open_inbox_on_inc;
105         gboolean newmail_notify_auto;
106         gboolean newmail_notify_manu;
107         gchar   *newmail_notify_cmd;
108         RecvDialogMode recv_dialog_mode;
109         gint receivewin_width;
110         gint receivewin_height;
111         gboolean close_recv_dialog;
112         gboolean no_recv_err_panel;
113
114         /* Send */
115         gboolean savemsg;
116         gboolean confirm_send_queued_messages;
117         SendDialogMode send_dialog_mode;
118         gint sendwin_width;
119         gint sendwin_height;
120         gchar *outgoing_charset;
121         TransferEncodingMethod encoding_method;
122
123         gboolean allow_jisx0201_kana;
124
125         /* Compose */
126         gint undolevels;
127         gint linewrap_len;
128         gboolean linewrap_quote;
129         gboolean linewrap_pastes;
130         gboolean autowrap;
131         gboolean auto_exteditor;
132         gboolean reply_account_autosel;
133         gboolean default_reply_list;
134         gboolean forward_account_autosel;
135         gboolean reedit_account_autosel;
136         gboolean show_ruler;
137         gboolean autosave;
138         gint autosave_length;
139         gboolean compose_no_markup;
140         ComposeDndInsertOrAttach compose_dnd_mode;
141         gboolean compose_with_format;
142         gchar *compose_subject_format;
143         gchar *compose_body_format;
144
145         /* Quote */
146         gboolean reply_with_quote;
147         gchar *quotemark;
148         gchar *quotefmt;
149         gchar *fw_quotemark;
150         gchar *fw_quotefmt;
151         gboolean forward_as_attachment;
152         gboolean redirect_keep_from;
153         gboolean block_cursor;
154         gchar *quote_chars;
155         
156 #if USE_ASPELL
157         gboolean enable_aspell;
158         gchar *aspell_path;
159         gchar *dictionary;
160         gchar *alt_dictionary;
161         gulong misspelled_col;
162         gint aspell_sugmode;
163         gboolean check_while_typing;
164         gboolean recheck_when_changing_dict;
165         gboolean use_alternate;
166         gboolean use_both_dicts;
167 #endif
168         
169         /* Display */
170         /* obsolete fonts */
171         gchar *widgetfont_gtk1;
172         gchar *textfont_gtk1;
173         gchar *normalfont_gtk1;
174         gchar *boldfont_gtk1;
175         gchar *smallfont_gtk1;
176
177         /* new fonts */
178         gchar *widgetfont;
179         gchar *textfont;
180         gchar *printfont;
181         gchar *normalfont;
182         gchar *smallfont;
183         gchar *titlefont;
184
185         /* custom colors */
186         ColorlabelPrefs custom_colorlabel[COLORLABELS];
187
188         /* image viewer */
189         gboolean display_img;
190         gboolean resize_img;
191         gboolean inline_img;
192
193         gboolean trans_hdr;
194         gint display_folder_unread;
195         gint ng_abbrev_len;
196
197         gboolean show_searchbar;
198         gboolean expand_thread;
199         gboolean swap_from;
200         gboolean use_addr_book;
201         gchar *date_format;
202
203         gboolean use_stripes_everywhere;
204         gboolean use_stripes_in_summaries; /* overrides if use_stripes_everywhere is set to TRUE */
205         gint stripes_color_offset;
206         gboolean enable_dotted_lines;
207         gboolean enable_hscrollbar;
208         gboolean bold_unread;
209         gboolean enable_thread;
210         gboolean thread_by_subject;
211         gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
212                                          *   by subject (days) */
213
214         gchar *last_opened_folder;
215         gboolean goto_last_folder_on_startup;
216
217         ToolbarStyle toolbar_style;
218         gboolean toolbar_detachable;
219         gboolean show_statusbar;
220
221         gint folderview_vscrollbar_policy;
222
223         /* Filtering */
224         GSList *fltlist;
225
226         gint kill_score;
227         gint important_score;
228
229         /* Actions */
230         GSList *actions_list;
231
232         /* Summary columns visibility, position and size */
233         gboolean summary_col_visible[N_SUMMARY_COLS];
234         gint summary_col_pos[N_SUMMARY_COLS];
235         gint summary_col_size[N_SUMMARY_COLS];
236
237         gboolean folder_col_visible[N_FOLDER_COLS];
238         gint folder_col_pos[N_FOLDER_COLS];
239         gint folder_col_size[N_FOLDER_COLS];
240
241         /* Widget visibility, position and size */
242         gint folderwin_x;
243         gint folderwin_y;
244         gint folderview_width;
245         gint folderview_height;
246         gboolean folderview_visible;
247
248         gint summaryview_width;
249         gint summaryview_height;
250
251         gint main_msgwin_x;
252         gint main_msgwin_y;
253         gint msgview_width;
254         gint msgview_height;
255         gboolean msgview_visible;
256
257         gint mainview_x;
258         gint mainview_y;
259         gint mainview_width;
260         gint mainview_height;
261         gint mainwin_x;
262         gint mainwin_y;
263         gint mainwin_width;
264         gint mainwin_height;
265
266         gint msgwin_width;
267         gint msgwin_height;
268
269         gint sourcewin_width;
270         gint sourcewin_height;
271
272         gint compose_width;
273         gint compose_height;
274         gint compose_x;
275         gint compose_y;
276
277         /* Message */
278         gboolean enable_color;
279         gboolean enable_bgcolor;
280         gulong quote_level1_col;
281         gulong quote_level2_col;
282         gulong quote_level3_col;
283         gulong quote_level1_bgcol;
284         gulong quote_level2_bgcol;
285         gulong quote_level3_bgcol;
286         gulong uri_col;
287         gulong tgt_folder_col;
288         gulong signature_col;
289         gboolean recycle_quote_colors;
290         gboolean display_header_pane;
291         gboolean display_header;
292         gboolean display_xface;
293         gint line_space;
294         gboolean render_html;
295         gboolean invoke_plugin_on_html;
296         gboolean textview_cursor_visible;
297         gboolean enable_smooth_scroll;
298         gint scroll_step;
299         gboolean scroll_halfpage;
300         gboolean respect_flowed_format;
301
302         gboolean show_other_header;
303         gboolean use_different_print_font;
304         GSList *disphdr_list;
305
306         gboolean attach_desc;
307
308         /* MIME viewer */
309         gchar *mime_textviewer;
310         gchar *mime_open_cmd;
311         gchar *attach_save_dir;
312         gchar *attach_load_dir;
313
314         GList *mime_open_cmd_history;
315
316 #if USE_GPGME
317         /* Privacy */
318         gboolean auto_check_signatures;
319         gboolean gpg_signature_popup;
320         gboolean store_passphrase;
321         gint store_passphrase_timeout;
322         gboolean passphrase_grab;
323         gboolean gpg_warning;
324 #endif /* USE_GPGME */
325
326         /* Addressbook */
327         gboolean addressbook_use_editaddress_dialog;
328         gint addressbook_hpaned_pos;
329         gint addressbook_vpaned_pos;
330
331         /* Interface */
332         gboolean layout_mode;
333
334         gint statusbar_update_step;
335         gboolean emulate_emacs;
336         gboolean always_show_msg;
337         gboolean mark_as_read_on_new_window;
338         gboolean mark_as_read_delay;
339         gboolean immediate_exec;
340         SelectOnEntry select_on_entry;
341
342         EntryAction summary_select_prio[6];
343
344         NextUnreadMsgDialogShow next_unread_msg_dialog;
345         gboolean add_address_by_click;
346         gchar *pixmap_theme_path;
347         int hover_timeout; /* msecs mouse hover timeout */
348         gboolean ask_mark_all_read;
349         gboolean ask_apply_per_account_filtering_rules;
350         gint apply_per_account_filtering_rules;
351
352         /* Other */
353         gchar *uri_cmd;
354         gchar *print_cmd;
355         gchar *ext_editor_cmd;
356
357     gboolean cliplog;
358     guint loglength;
359
360         gulong log_msg_color;
361         gulong log_warn_color;
362         gulong log_error_color;
363         gulong log_in_color;
364         gulong log_out_color;
365         gulong log_status_ok_color;
366         gulong log_status_nok_color;
367         gulong log_status_skip_color;
368
369         gboolean enable_filtering_debug;
370         gint filtering_debug_level;
371         gboolean enable_filtering_debug_inc;
372         gboolean enable_filtering_debug_manual;
373         gboolean enable_filtering_debug_folder_proc;
374         gboolean enable_filtering_debug_pre_proc;
375         gboolean enable_filtering_debug_post_proc;
376     gboolean filtering_debug_cliplog;
377     guint filtering_debug_loglength;
378
379     gboolean confirm_on_exit;
380         gboolean clean_on_exit;
381         gboolean ask_on_clean;
382         gboolean warn_queued_on_exit;
383
384         gint io_timeout_secs;
385
386         gboolean gtk_can_change_accels;
387         
388         /* Memory cache*/
389         gint cache_max_mem_usage;
390         gint cache_min_keep_time;
391         
392         /* boolean for work offline 
393            stored here for use in inc.c */
394         gboolean work_offline;
395         
396         gint summary_quicksearch_type;
397         gint summary_quicksearch_sticky;
398         gint summary_quicksearch_recurse;
399         gint summary_quicksearch_dynamic;
400         gint summary_quicksearch_autorun;
401         gulong color_new;
402         
403         GList *summary_quicksearch_history;
404         GList *summary_search_from_history;
405         GList *summary_search_to_history;
406         GList *summary_search_subject_history;
407         GList *summary_search_body_history;
408         GList *summary_search_adv_condition_history;
409         GList *message_search_history;
410
411         gint filteringwin_width;
412         gint filteringwin_height;
413         gint filteringactionwin_width;
414         gint filteringactionwin_height;
415         gint matcherwin_width;
416         gint matcherwin_height;
417         gint templateswin_width;
418         gint templateswin_height;
419         gint actionswin_width;
420         gint actionswin_height;
421         gint addressbookwin_width;
422         gint addressbookwin_height;
423         gint addressbookeditpersonwin_width;
424         gint addressbookeditpersonwin_height;
425         gint addressbookeditgroupwin_width;
426         gint addressbookeditgroupwin_height;
427         gint pluginswin_width;
428         gint pluginswin_height;
429         gint prefswin_width;
430         gint prefswin_height;
431         gint folderitemwin_width;
432         gint folderitemwin_height;
433         gchar *zero_replacement;
434         gint editaccountwin_width;
435         gint editaccountwin_height;
436         gint accountswin_width;
437         gint accountswin_height;
438         gint logwin_width;
439         gint logwin_height;
440         gint filtering_debugwin_width;
441         gint filtering_debugwin_height;
442         gint folderselwin_width;
443         gint folderselwin_height;
444         gint addressaddwin_width;
445         gint addressaddwin_height;
446         gint addressbook_folderselwin_width;
447         gint addressbook_folderselwin_height;
448
449         gint warn_dnd;
450         gint broken_are_utf8;
451         gint skip_ssl_cert_check;
452         gint live_dangerously;
453         gint never_send_retrcpt;
454         gint hide_quotes;
455         gboolean unsafe_ssl_certs;
456         gboolean real_time_sync;
457 };
458
459 extern PrefsCommon prefs_common;
460
461 void prefs_common_read_config   (void);
462 void prefs_common_write_config  (void);
463 void prefs_common_open          (void);
464 PrefsCommon *prefs_common_get   (void);
465 void pref_get_unescaped_pref(gchar *out, const gchar *in);
466 void pref_get_escaped_pref(gchar *out, const gchar *in);
467 void pref_set_textview_from_pref(GtkTextView *textview, const gchar *txt);
468 void pref_set_entry_from_pref(GtkEntry *entry, const gchar *txt);
469 gchar *pref_get_pref_from_textview(GtkTextView *textview);
470 gchar *pref_get_pref_from_entry(GtkEntry *entry);
471 const gchar *prefs_common_translated_header_name(const gchar *header_name);
472
473 #endif /* __PREFS_COMMON_H__ */