11b3e5578fec8448fbb9185cdf290f0fb5af1ffc
[claws.git] / src / prefs_common.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2013 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 "claws-features.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 typedef enum
99 {
100         SHOW_NAME,
101         SHOW_ADDR,
102         SHOW_BOTH
103 } SummaryFromShow;
104
105 struct _PrefsCommon
106 {
107         /* Receive */
108         gboolean use_extinc;
109         gchar *extinc_cmd;
110         gboolean scan_all_after_inc;
111         gboolean autochk_newmail;
112         gint autochk_itv;
113         gboolean chk_on_startup;
114         gboolean open_inbox_on_inc;
115         gboolean newmail_notify_auto;
116         gboolean newmail_notify_manu;
117         gchar   *newmail_notify_cmd;
118         RecvDialogMode recv_dialog_mode;
119         gint receivewin_width;
120         gint receivewin_height;
121         gboolean close_recv_dialog;
122         gboolean no_recv_err_panel;
123
124         /* Send */
125         gboolean savemsg;
126         gboolean confirm_send_queued_messages;
127         gboolean send_dialog_invisible;
128         gint sendwin_width;
129         gint sendwin_height;
130         gchar *outgoing_charset;
131         TransferEncodingMethod encoding_method;
132         gboolean outgoing_fallback_to_ascii;
133         gboolean warn_empty_subj;
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 primary_paste_unselects;
143         gboolean autowrap;
144         gboolean auto_indent;
145         gboolean auto_exteditor;
146         gboolean reply_account_autosel;
147         gboolean default_reply_list;
148         gboolean forward_account_autosel;
149         gboolean reedit_account_autosel;
150         gboolean show_ruler;
151         gboolean autosave;
152         gint autosave_length;
153         gboolean autosave_encrypted;
154         gboolean warn_large_insert;
155         gint warn_large_insert_size;
156         gboolean compose_no_markup;
157         ComposeDndInsertOrAttach compose_dnd_mode;
158         gboolean compose_with_format;
159         gchar *compose_subject_format;
160         gchar *compose_body_format;
161         gboolean show_compose_margin;
162
163         /* Quote */
164         gboolean reply_with_quote;
165         gchar *quotemark;
166         gchar *quotefmt;
167         gchar *fw_quotemark;
168         gchar *fw_quotefmt;
169         gboolean forward_as_attachment;
170         gboolean redirect_keep_from;
171         gboolean block_cursor;
172         gchar *quote_chars;
173         
174         gboolean enable_aspell;
175         gchar *dictionary;
176         gchar *alt_dictionary;
177         gulong misspelled_col;
178         gboolean check_while_typing;
179         gboolean recheck_when_changing_dict;
180         gboolean use_alternate;
181         gboolean use_both_dicts;
182         
183         /* Display */
184         /* obsolete fonts */
185         gchar *widgetfont_gtk1;
186         gchar *textfont_gtk1;
187         gchar *normalfont_gtk1;
188         gchar *boldfont_gtk1;
189         gchar *smallfont_gtk1;
190
191         /* new fonts */
192         gchar *widgetfont;
193         gchar *textfont;
194         gchar *printfont;
195         gchar *boldfont;
196         gchar *normalfont;
197         gchar *smallfont;
198         gchar *titlefont;
199         gboolean use_different_print_font;
200         gboolean derive_from_normal_font;
201
202         /* custom colors */
203         ColorlabelPrefs custom_colorlabel[COLORLABELS];
204
205         /* image viewer */
206         gboolean display_img;
207         gboolean resize_img;
208         gboolean inline_img;
209
210         gboolean trans_hdr;
211         gint display_folder_unread;
212         gint ng_abbrev_len;
213
214         gboolean show_searchbar;
215         gboolean expand_thread;
216         gboolean swap_from;
217         gboolean use_addr_book;
218         gchar *date_format;
219         gboolean *msgview_date_format;
220
221         gboolean use_stripes_everywhere;
222         gboolean use_stripes_in_summaries; /* overrides if use_stripes_everywhere is set to TRUE */
223         gint stripes_color_offset;
224         gboolean enable_hscrollbar;
225         gboolean bold_unread;
226         gboolean enable_thread;
227         gboolean thread_by_subject;
228         gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
229                                          *   by subject (days) */
230
231         gchar *last_opened_folder;
232         gboolean goto_last_folder_on_startup;
233
234         ToolbarStyle toolbar_style;
235         gboolean toolbar_detachable;
236         gboolean show_statusbar;
237         gboolean show_col_headers;
238
239         gint folderview_vscrollbar_policy;
240
241         /* Filtering */
242         GSList *fltlist;
243
244         gint kill_score;
245         gint important_score;
246
247         /* Actions */
248         GSList *actions_list;
249
250         /* Summary columns visibility, position and size */
251         gboolean summary_col_visible[N_SUMMARY_COLS];
252         gint summary_col_pos[N_SUMMARY_COLS];
253         gint summary_col_size[N_SUMMARY_COLS];
254
255         gboolean folder_col_visible[N_FOLDER_COLS];
256         gint folder_col_pos[N_FOLDER_COLS];
257         gint folder_col_size[N_FOLDER_COLS];
258
259         /* Widget visibility, position and size */
260         gint folderwin_x;
261         gint folderwin_y;
262         gint folderview_width;
263         gint folderview_height;
264         gboolean folderview_visible;
265
266         gint summaryview_width;
267         gint summaryview_height;
268
269         gint main_msgwin_x;
270         gint main_msgwin_y;
271         gint msgview_width;
272         gint msgview_height;
273         gboolean msgview_visible;
274
275         gint mainview_x;
276         gint mainview_y;
277         gint mainview_width;
278         gint mainview_height;
279         gint mainwin_x;
280         gint mainwin_y;
281         gint mainwin_width;
282         gint mainwin_height;
283         gint mainwin_maximised;
284         gint mainwin_fullscreen;
285
286         gint msgwin_width;
287         gint msgwin_height;
288
289         gint mimeview_tree_height;
290         
291         gint sourcewin_width;
292         gint sourcewin_height;
293
294         gint compose_width;
295         gint compose_height;
296         gint compose_notebook_height;
297         gint compose_x;
298         gint compose_y;
299
300         /* Message */
301         gboolean enable_color;
302         gboolean enable_bgcolor;
303         gulong quote_level1_col;
304         gulong quote_level2_col;
305         gulong quote_level3_col;
306         gulong quote_level1_bgcol;
307         gulong quote_level2_bgcol;
308         gulong quote_level3_bgcol;
309         gulong uri_col;
310         gulong tgt_folder_col;
311         gulong signature_col;
312         gulong emphasis_col;
313         gboolean recycle_quote_colors;
314         gboolean display_header_pane;
315         gboolean display_header;
316         gboolean display_xface;
317         gint line_space;
318         gboolean render_html;
319         gboolean invoke_plugin_on_html;
320         gboolean promote_html_part;
321         gboolean textview_cursor_visible;
322         gboolean enable_smooth_scroll;
323         gint scroll_step;
324         gboolean scroll_halfpage;
325         gboolean hide_quoted;
326         gboolean respect_flowed_format;
327         gboolean show_all_headers;
328
329         gboolean show_other_header;
330         GSList *disphdr_list;
331
332         gboolean attach_desc;
333
334         /* MIME viewer */
335         gchar *mime_textviewer;
336         gchar *mime_open_cmd;
337         gchar *attach_save_dir;
338         gchar *attach_load_dir;
339
340         GList *mime_open_cmd_history;
341         gboolean show_inline_attachments;
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         SummaryFromShow summary_from_show;
365         gboolean add_address_by_click;
366         gchar *pixmap_theme_path;
367         int hover_timeout; /* msecs mouse hover timeout */
368         gboolean ask_mark_all_read;
369         gboolean ask_apply_per_account_filtering_rules;
370         gint apply_per_account_filtering_rules;
371
372         /* Other */
373 #ifndef G_OS_WIN32
374         gchar *uri_cmd;
375 #else
376         gchar *gtk_theme;
377 #endif
378         gchar *ext_editor_cmd;
379         gboolean cmds_use_system_default;
380
381         gboolean cliplog;
382         guint loglength;
383         gboolean enable_log_standard;
384         gboolean enable_log_warning;
385         gboolean enable_log_error;
386         gboolean enable_log_status;
387
388         gulong log_msg_color;
389         gulong log_warn_color;
390         gulong log_error_color;
391         gulong log_in_color;
392         gulong log_out_color;
393         gulong log_status_ok_color;
394         gulong log_status_nok_color;
395         gulong log_status_skip_color;
396
397         gboolean enable_filtering_debug;
398         gint filtering_debug_level;
399         gboolean enable_filtering_debug_inc;
400         gboolean enable_filtering_debug_manual;
401         gboolean enable_filtering_debug_folder_proc;
402         gboolean enable_filtering_debug_pre_proc;
403         gboolean enable_filtering_debug_post_proc;
404         gboolean filtering_debug_cliplog;
405         guint filtering_debug_loglength;
406
407         gboolean confirm_on_exit;
408         gboolean session_passwords;
409         gboolean clean_on_exit;
410         gboolean ask_on_clean;
411         gboolean warn_queued_on_exit;
412
413         gint io_timeout_secs;
414
415         gboolean gtk_can_change_accels;
416         
417         /* Memory cache*/
418         gint cache_max_mem_usage;
419         gint cache_min_keep_time;
420         
421         /* boolean for work offline 
422            stored here for use in inc.c */
423         gboolean work_offline;
424         
425         gint summary_quicksearch_type;
426         gint summary_quicksearch_sticky;
427         gint summary_quicksearch_recurse;
428         gint summary_quicksearch_dynamic;
429         gint summary_quicksearch_autorun;
430         gulong color_new;
431         
432         GList *summary_quicksearch_history;
433         GList *summary_search_from_history;
434         GList *summary_search_to_history;
435         GList *summary_search_subject_history;
436         GList *summary_search_body_history;
437         GList *summary_search_adv_condition_history;
438         GList *message_search_history;
439         GList *compose_save_to_history;
440
441         gint filteringwin_width;
442         gint filteringwin_height;
443         gint filteringactionwin_width;
444         gint filteringactionwin_height;
445         gint matcherwin_width;
446         gint matcherwin_height;
447         gint templateswin_width;
448         gint templateswin_height;
449         gint actionswin_width;
450         gint actionswin_height;
451         gint tagswin_width;
452         gint tagswin_height;
453         gint addressbookwin_width;
454         gint addressbookwin_height;
455         gint addressbookeditpersonwin_width;
456         gint addressbookeditpersonwin_height;
457         gint addressbookeditgroupwin_width;
458         gint addressbookeditgroupwin_height;
459         gint pluginswin_width;
460         gint pluginswin_height;
461         gint prefswin_width;
462         gint prefswin_height;
463         gint folderitemwin_width;
464         gint folderitemwin_height;
465         gchar *zero_replacement;
466         gint editaccountwin_width;
467         gint editaccountwin_height;
468         gint accountswin_width;
469         gint accountswin_height;
470         gint logwin_width;
471         gint logwin_height;
472         gint filtering_debugwin_width;
473         gint filtering_debugwin_height;
474         gint folderselwin_width;
475         gint folderselwin_height;
476         gint addressaddwin_width;
477         gint addressaddwin_height;
478         gint addressbook_folderselwin_width;
479         gint addressbook_folderselwin_height;
480         gint aboutwin_width;
481         gint aboutwin_height;
482         gint addrgather_width;
483         gint addrgather_height;
484         gint news_subscribe_width;
485         gint news_subscribe_height;
486
487         gint warn_dnd;
488         gint broken_are_utf8;
489         gint skip_ssl_cert_check;
490         gint live_dangerously;
491         gint save_parts_readwrite;
492         gint never_send_retrcpt;
493         gint hide_quotes;
494         gboolean unsafe_ssl_certs;
495         gboolean real_time_sync;
496         
497         gchar *print_paper_type;
498         gint print_paper_orientation;
499         gint print_margin_top;
500         gint print_margin_bottom;
501         gint print_margin_left;
502         gint print_margin_right;
503   
504         gint print_use_color;
505         gint print_use_collate;
506         gint print_use_reverse;
507         gint print_use_duplex;
508         gint print_imgs;
509         gint print_previewwin_width;
510         gint print_previewwin_height;
511         
512         gboolean use_networkmanager;
513         gboolean use_shred;
514         gboolean two_line_vert;
515         gboolean inherit_folder_props;
516         gboolean flush_metadata;
517
518         gint nav_history_length;
519
520         gulong diff_added_color;
521         gulong diff_deleted_color;
522         gulong diff_hunk_color;
523 };
524
525 extern PrefsCommon prefs_common;
526
527 PrefsCommon *prefs_common_get_prefs(void);
528
529 GList *prefs_common_read_history_from_dir_with_defaults(const gchar *dirname, const gchar *history,
530                                                                                                                           GList *default_list);
531 void prefs_common_read_config   (void);
532 void prefs_common_write_config  (void);
533 void prefs_common_open          (void);
534 void pref_get_unescaped_pref(gchar *out, const gchar *in);
535 void pref_get_escaped_pref(gchar *out, const gchar *in);
536 void pref_set_textview_from_pref(GtkTextView *textview, const gchar *txt);
537 void pref_set_entry_from_pref(GtkEntry *entry, const gchar *txt);
538 gchar *pref_get_pref_from_textview(GtkTextView *textview);
539 gchar *pref_get_pref_from_entry(GtkEntry *entry);
540 const gchar *prefs_common_translated_header_name(const gchar *header_name);
541 const gchar *prefs_common_get_uri_cmd(void);
542 const gchar *prefs_common_get_ext_editor_cmd(void);
543 #endif /* __PREFS_COMMON_H__ */