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