2007-08-10 [wwp] 2.10.0cvs112
[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         SEND_DIALOG_ALWAYS,
60         /* SEND_DIALOG_ACTIVE would be irrelevant */
61         SEND_DIALOG_NEVER
62 } SendDialogMode;
63
64 typedef enum
65 {
66 /* U = unread, N = new, M = marked */
67         SELECTONENTRY_NOTHING,
68         SELECTONENTRY_UNM,
69         SELECTONENTRY_UMN,
70         SELECTONENTRY_NUM,
71         SELECTONENTRY_NMU,
72         SELECTONENTRY_MNU,
73         SELECTONENTRY_MUN,
74         SELECTONENTRY_LAST
75 } SelectOnEntry;
76
77 typedef enum
78 {
79         ACTION_UNSET = 0, /* for backward compatibility */
80         ACTION_MARKED,
81         ACTION_NEW,
82         ACTION_UNREAD,
83         ACTION_LAST_OPENED,
84         ACTION_LAST_LIST,
85         ACTION_NOTHING
86 } EntryAction;
87
88 typedef enum
89 {
90         NEXTUNREADMSGDIALOG_ALWAYS,
91         NEXTUNREADMSGDIALOG_ASSUME_YES,
92         NEXTUNREADMSGDIALOG_ASSUME_NO
93 } NextUnreadMsgDialogShow;
94
95 struct _PrefsCommon
96 {
97 #ifdef MAEMO
98         gchar *data_root;
99 #endif
100         /* Receive */
101         gboolean use_extinc;
102         gchar *extinc_cmd;
103         gboolean scan_all_after_inc;
104         gboolean autochk_newmail;
105         gint autochk_itv;
106         gboolean chk_on_startup;
107         gboolean open_inbox_on_inc;
108         gboolean newmail_notify_auto;
109         gboolean newmail_notify_manu;
110         gchar   *newmail_notify_cmd;
111 #ifdef MAEMO
112         gboolean maemo_play_sound;
113         gboolean maemo_show_banner;
114 #endif
115         RecvDialogMode recv_dialog_mode;
116         gint receivewin_width;
117         gint receivewin_height;
118         gboolean close_recv_dialog;
119         gboolean no_recv_err_panel;
120
121         /* Send */
122         gboolean savemsg;
123         gboolean confirm_send_queued_messages;
124         SendDialogMode send_dialog_mode;
125         gint sendwin_width;
126         gint sendwin_height;
127         gchar *outgoing_charset;
128         TransferEncodingMethod encoding_method;
129
130         gboolean allow_jisx0201_kana;
131
132         /* Compose */
133         gint undolevels;
134         gint linewrap_len;
135         gboolean linewrap_quote;
136         gboolean linewrap_pastes;
137         gboolean autowrap;
138         gboolean auto_exteditor;
139         gboolean reply_account_autosel;
140         gboolean default_reply_list;
141         gboolean forward_account_autosel;
142         gboolean reedit_account_autosel;
143         gboolean show_ruler;
144         gboolean autosave;
145         gint autosave_length;
146         gboolean compose_no_markup;
147         ComposeDndInsertOrAttach compose_dnd_mode;
148         gboolean compose_with_format;
149         gchar *compose_subject_format;
150         gchar *compose_body_format;
151
152         /* Quote */
153         gboolean reply_with_quote;
154         gchar *quotemark;
155         gchar *quotefmt;
156         gchar *fw_quotemark;
157         gchar *fw_quotefmt;
158         gboolean forward_as_attachment;
159         gboolean redirect_keep_from;
160         gboolean block_cursor;
161         gchar *quote_chars;
162         
163 #if USE_ASPELL
164         gboolean enable_aspell;
165         gchar *aspell_path;
166         gchar *dictionary;
167         gchar *alt_dictionary;
168         gulong misspelled_col;
169         gint aspell_sugmode;
170         gboolean check_while_typing;
171         gboolean recheck_when_changing_dict;
172         gboolean use_alternate;
173         gboolean use_both_dicts;
174 #endif
175         
176         /* Display */
177         /* obsolete fonts */
178         gchar *widgetfont_gtk1;
179         gchar *textfont_gtk1;
180         gchar *normalfont_gtk1;
181         gchar *boldfont_gtk1;
182         gchar *smallfont_gtk1;
183
184         /* new fonts */
185         gchar *widgetfont;
186         gchar *textfont;
187         gchar *printfont;
188         gchar *normalfont;
189         gchar *smallfont;
190         gchar *titlefont;
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
274         gint msgwin_width;
275         gint msgwin_height;
276
277         gint sourcewin_width;
278         gint sourcewin_height;
279
280         gint compose_width;
281         gint compose_height;
282         gint compose_x;
283         gint compose_y;
284
285         /* Message */
286         gboolean enable_color;
287         gboolean enable_bgcolor;
288         gulong quote_level1_col;
289         gulong quote_level2_col;
290         gulong quote_level3_col;
291         gulong quote_level1_bgcol;
292         gulong quote_level2_bgcol;
293         gulong quote_level3_bgcol;
294         gulong uri_col;
295         gulong tgt_folder_col;
296         gulong signature_col;
297         gulong emphasis_col;
298         gboolean recycle_quote_colors;
299         gboolean display_header_pane;
300         gboolean display_header;
301         gboolean display_xface;
302         gint line_space;
303         gboolean render_html;
304         gboolean invoke_plugin_on_html;
305         gboolean textview_cursor_visible;
306         gboolean enable_smooth_scroll;
307         gint scroll_step;
308         gboolean scroll_halfpage;
309         gboolean respect_flowed_format;
310
311         gboolean show_other_header;
312         gboolean use_different_print_font;
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
340         /* Interface */
341         gboolean layout_mode;
342
343         gint statusbar_update_step;
344         gboolean emulate_emacs;
345         gboolean always_show_msg;
346         gboolean mark_as_read_on_new_window;
347         gboolean mark_as_read_delay;
348         gboolean immediate_exec;
349         SelectOnEntry select_on_entry;
350
351         EntryAction summary_select_prio[6];
352
353         NextUnreadMsgDialogShow next_unread_msg_dialog;
354         gboolean add_address_by_click;
355         gchar *pixmap_theme_path;
356         int hover_timeout; /* msecs mouse hover timeout */
357         gboolean ask_mark_all_read;
358         gboolean ask_apply_per_account_filtering_rules;
359         gint apply_per_account_filtering_rules;
360
361         /* Other */
362         gchar *uri_cmd;
363         gchar *print_cmd;
364         gchar *ext_editor_cmd;
365
366         gboolean cliplog;
367         guint loglength;
368         gboolean enable_log_standard;
369         gboolean enable_log_warning;
370         gboolean enable_log_error;
371         gboolean enable_log_status;
372
373         gulong log_msg_color;
374         gulong log_warn_color;
375         gulong log_error_color;
376         gulong log_in_color;
377         gulong log_out_color;
378         gulong log_status_ok_color;
379         gulong log_status_nok_color;
380         gulong log_status_skip_color;
381
382         gboolean enable_filtering_debug;
383         gint filtering_debug_level;
384         gboolean enable_filtering_debug_inc;
385         gboolean enable_filtering_debug_manual;
386         gboolean enable_filtering_debug_folder_proc;
387         gboolean enable_filtering_debug_pre_proc;
388         gboolean enable_filtering_debug_post_proc;
389     gboolean filtering_debug_cliplog;
390     guint filtering_debug_loglength;
391
392     gboolean confirm_on_exit;
393         gboolean clean_on_exit;
394         gboolean ask_on_clean;
395         gboolean warn_queued_on_exit;
396
397         gint io_timeout_secs;
398
399         gboolean gtk_can_change_accels;
400         
401         /* Memory cache*/
402         gint cache_max_mem_usage;
403         gint cache_min_keep_time;
404         
405         /* boolean for work offline 
406            stored here for use in inc.c */
407         gboolean work_offline;
408         
409         gint summary_quicksearch_type;
410         gint summary_quicksearch_sticky;
411         gint summary_quicksearch_recurse;
412         gint summary_quicksearch_dynamic;
413         gint summary_quicksearch_autorun;
414         gulong color_new;
415         
416         GList *summary_quicksearch_history;
417         GList *summary_search_from_history;
418         GList *summary_search_to_history;
419         GList *summary_search_subject_history;
420         GList *summary_search_body_history;
421         GList *summary_search_adv_condition_history;
422         GList *message_search_history;
423
424         gint filteringwin_width;
425         gint filteringwin_height;
426         gint filteringactionwin_width;
427         gint filteringactionwin_height;
428         gint matcherwin_width;
429         gint matcherwin_height;
430         gint templateswin_width;
431         gint templateswin_height;
432         gint actionswin_width;
433         gint actionswin_height;
434         gint tagswin_width;
435         gint tagswin_height;
436         gint addressbookwin_width;
437         gint addressbookwin_height;
438         gint addressbookeditpersonwin_width;
439         gint addressbookeditpersonwin_height;
440         gint addressbookeditgroupwin_width;
441         gint addressbookeditgroupwin_height;
442         gint pluginswin_width;
443         gint pluginswin_height;
444         gint prefswin_width;
445         gint prefswin_height;
446         gint folderitemwin_width;
447         gint folderitemwin_height;
448         gchar *zero_replacement;
449         gint editaccountwin_width;
450         gint editaccountwin_height;
451         gint accountswin_width;
452         gint accountswin_height;
453         gint logwin_width;
454         gint logwin_height;
455         gint filtering_debugwin_width;
456         gint filtering_debugwin_height;
457         gint folderselwin_width;
458         gint folderselwin_height;
459         gint addressaddwin_width;
460         gint addressaddwin_height;
461         gint addressbook_folderselwin_width;
462         gint addressbook_folderselwin_height;
463
464         gint warn_dnd;
465         gint broken_are_utf8;
466         gint skip_ssl_cert_check;
467         gint live_dangerously;
468         gint never_send_retrcpt;
469         gint hide_quotes;
470         gboolean unsafe_ssl_certs;
471         gboolean real_time_sync;
472 };
473
474 extern PrefsCommon prefs_common;
475
476 void prefs_common_read_config   (void);
477 void prefs_common_write_config  (void);
478 void prefs_common_open          (void);
479 PrefsCommon *prefs_common_get   (void);
480 void pref_get_unescaped_pref(gchar *out, const gchar *in);
481 void pref_get_escaped_pref(gchar *out, const gchar *in);
482 void pref_set_textview_from_pref(GtkTextView *textview, const gchar *txt);
483 void pref_set_entry_from_pref(GtkEntry *entry, const gchar *txt);
484 gchar *pref_get_pref_from_textview(GtkTextView *textview);
485 gchar *pref_get_pref_from_entry(GtkEntry *entry);
486 const gchar *prefs_common_translated_header_name(const gchar *header_name);
487
488 #endif /* __PREFS_COMMON_H__ */