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