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