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