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