2006-03-01 [colin] 2.0.0cvs95
[claws.git] / src / prefs_common.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws 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 2 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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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
36 typedef struct _PrefsCommon     PrefsCommon;
37
38 typedef enum {
39         RECV_DIALOG_ALWAYS,
40         RECV_DIALOG_MANUAL,
41         RECV_DIALOG_NEVER
42 } RecvDialogMode;
43
44 typedef enum {
45         CTE_AUTO,
46         CTE_BASE64,
47         CTE_QUOTED_PRINTABLE,
48         CTE_8BIT
49 } TransferEncodingMethod;
50
51 typedef enum {
52         SEND_DIALOG_ALWAYS,
53         /* SEND_DIALOG_ACTIVE would be irrelevant */
54         SEND_DIALOG_NEVER
55 } SendDialogMode;
56
57 typedef enum
58 {
59         SELECTONENTRY_UNREAD = 1 << 0,
60         SELECTONENTRY_NEW    = 1 << 1
61 } SelectOnEntry;
62
63 typedef enum
64 {
65         NEXTUNREADMSGDIALOG_ALWAYS,
66         NEXTUNREADMSGDIALOG_ASSUME_YES,
67         NEXTUNREADMSGDIALOG_ASSUME_NO
68 } NextUnreadMsgDialogShow;
69
70 struct _PrefsCommon
71 {
72         /* Receive */
73         gboolean use_extinc;
74         gchar *extinc_cmd;
75         gboolean scan_all_after_inc;
76         gboolean autochk_newmail;
77         gint autochk_itv;
78         gboolean chk_on_startup;
79         gboolean open_inbox_on_inc;
80         gboolean newmail_notify_auto;
81         gboolean newmail_notify_manu;
82         gchar   *newmail_notify_cmd;
83         RecvDialogMode recv_dialog_mode;
84         gboolean close_recv_dialog;
85         gboolean no_recv_err_panel;
86
87         /* Send */
88         gboolean savemsg;
89         gboolean confirm_send_queued_messages;
90         SendDialogMode send_dialog_mode;
91         gchar *outgoing_charset;
92         TransferEncodingMethod encoding_method;
93
94         gboolean allow_jisx0201_kana;
95
96         /* Compose */
97         gint undolevels;
98         gint linewrap_len;
99         gboolean linewrap_quote;
100         gboolean linewrap_pastes;
101         gboolean autowrap;
102         gboolean auto_exteditor;
103         gboolean reply_account_autosel;
104         gboolean default_reply_list;
105         gboolean forward_account_autosel;
106         gboolean reedit_account_autosel;
107         gboolean show_ruler;
108         gboolean autosave;
109         gint autosave_length;
110         
111         /* Quote */
112         gboolean reply_with_quote;
113         gchar *quotemark;
114         gchar *quotefmt;
115         gchar *fw_quotemark;
116         gchar *fw_quotefmt;
117         gboolean forward_as_attachment;
118         gboolean redirect_keep_from;
119         gboolean block_cursor;
120         gchar *quote_chars;
121         
122 #if USE_ASPELL
123         gboolean enable_aspell;
124         gchar *aspell_path;
125         gchar *dictionary;
126         gulong misspelled_col;
127         gint aspell_sugmode;
128         gboolean check_while_typing;
129         gboolean recheck_when_changing_dict;
130         gboolean use_alternate;
131 #endif
132         
133         /* Display */
134         /* obsolete fonts */
135         gchar *widgetfont_gtk1;
136         gchar *textfont_gtk1;
137         gchar *normalfont_gtk1;
138         gchar *boldfont_gtk1;
139         gchar *smallfont_gtk1;
140
141         /* new fonts */
142         gchar *widgetfont;
143         gchar *textfont;
144         gchar *normalfont;
145         gchar *smallfont;
146         gchar *titlefont;
147
148         /* image viewer */
149         gboolean display_img;
150         gboolean resize_img;
151         gboolean inline_img;
152
153         gboolean trans_hdr;
154         gboolean display_folder_unread;
155         gint ng_abbrev_len;
156
157         gboolean show_searchbar;
158         gboolean expand_thread;
159         gboolean swap_from;
160         gboolean use_addr_book;
161         gchar *date_format;
162
163         gboolean enable_rules_hint;
164         gboolean enable_hscrollbar;
165         gboolean bold_unread;
166         gboolean enable_thread;
167         gboolean thread_by_subject;
168         gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
169                                          *   by subject (days) */
170
171         ToolbarStyle toolbar_style;
172         gboolean toolbar_detachable;
173         gboolean show_statusbar;
174
175         gint folderview_vscrollbar_policy;
176
177         /* Filtering */
178         GSList *fltlist;
179
180         gint kill_score;
181         gint important_score;
182
183         /* Actions */
184         GSList *actions_list;
185
186         /* Summary columns visibility, position and size */
187         gboolean summary_col_visible[N_SUMMARY_COLS];
188         gint summary_col_pos[N_SUMMARY_COLS];
189         gint summary_col_size[N_SUMMARY_COLS];
190
191         gboolean folder_col_visible[N_FOLDER_COLS];
192         gint folder_col_pos[N_FOLDER_COLS];
193         gint folder_col_size[N_FOLDER_COLS];
194
195         /* Widget visibility, position and size */
196         gint folderwin_x;
197         gint folderwin_y;
198         gint folderview_width;
199         gint folderview_height;
200         gboolean folderview_visible;
201
202         gint summaryview_width;
203         gint summaryview_height;
204
205         gint main_msgwin_x;
206         gint main_msgwin_y;
207         gint msgview_width;
208         gint msgview_height;
209         gboolean msgview_visible;
210
211         gint mainview_x;
212         gint mainview_y;
213         gint mainview_width;
214         gint mainview_height;
215         gint mainwin_x;
216         gint mainwin_y;
217         gint mainwin_width;
218         gint mainwin_height;
219
220         gint msgwin_width;
221         gint msgwin_height;
222
223         gint sourcewin_width;
224         gint sourcewin_height;
225
226         gint compose_width;
227         gint compose_height;
228         gint compose_x;
229         gint compose_y;
230
231         /* Message */
232         gboolean enable_color;
233         gulong quote_level1_col;
234         gulong quote_level2_col;
235         gulong quote_level3_col;
236         gulong uri_col;
237         gulong tgt_folder_col;
238         gulong signature_col;
239         gboolean recycle_quote_colors;
240         gboolean display_header_pane;
241         gboolean display_header;
242         gboolean display_xface;
243         gint line_space;
244         gboolean render_html;
245         gboolean invoke_plugin_on_html;
246         gboolean textview_cursor_visible;
247         gboolean enable_smooth_scroll;
248         gint scroll_step;
249         gboolean scroll_halfpage;
250
251         gboolean show_other_header;
252         GSList *disphdr_list;
253
254         gboolean attach_desc;
255
256         /* MIME viewer */
257         gchar *mime_image_viewer;
258         gchar *mime_audio_player;
259         gchar *mime_open_cmd;
260         gchar *attach_save_dir;
261         gchar *attach_load_dir;
262
263         GList *mime_open_cmd_history;
264
265 #if USE_GPGME
266         /* Privacy */
267         gboolean auto_check_signatures;
268         gboolean gpg_signature_popup;
269         gboolean store_passphrase;
270         gint store_passphrase_timeout;
271         gboolean passphrase_grab;
272         gboolean gpg_warning;
273 #endif /* USE_GPGME */
274
275         /* Interface */
276         gboolean sep_folder;
277         gboolean sep_msg;
278         gint statusbar_update_step;
279         gboolean emulate_emacs;
280         gboolean always_show_msg;
281         gboolean mark_as_read_on_new_window;
282         gboolean mark_as_read_delay;
283         gboolean immediate_exec;
284         SelectOnEntry select_on_entry;
285         NextUnreadMsgDialogShow next_unread_msg_dialog;
286         gboolean add_address_by_click;
287         gchar *pixmap_theme_path;
288         int hover_timeout; /* msecs mouse hover timeout */
289         gboolean ask_mark_all_read;
290
291         /* Other */
292         gchar *uri_cmd;
293         gchar *print_cmd;
294         gchar *ext_editor_cmd;
295
296         gboolean cliplog;
297         guint loglength;
298
299         gboolean confirm_on_exit;
300         gboolean clean_on_exit;
301         gboolean ask_on_clean;
302         gboolean warn_queued_on_exit;
303
304         gint io_timeout_secs;
305         
306         /* Memory cache*/
307         gint cache_max_mem_usage;
308         gint cache_min_keep_time;
309         
310         /* boolean for work offline 
311            stored here for use in inc.c */
312         gboolean work_offline;
313         
314         gint summary_quicksearch_type;
315         gint summary_quicksearch_sticky;
316         gint summary_quicksearch_recurse;
317         gulong color_new;
318         
319         GList *summary_quicksearch_history;
320
321         gint filteringwin_width;
322         gint filteringwin_height;
323         gint filteringactionwin_width;
324         gint filteringactionwin_height;
325         gint matcherwin_width;
326         gint matcherwin_height;
327         gint templateswin_width;
328         gint templateswin_height;
329         gint actionswin_width;
330         gint actionswin_height;
331         gint addressbookwin_width;
332         gint addressbookwin_height;
333         gint addressbookeditpersonwin_width;
334         gint addressbookeditpersonwin_height;
335         gint pluginswin_width;
336         gint pluginswin_height;
337         gint prefswin_width;
338         gint prefswin_height;
339         gint folderitemwin_width;
340         gint folderitemwin_height;
341         gint editaccountwin_width;
342         gint editaccountwin_height;
343         gint accountswin_width;
344         gint accountswin_height;
345         gint logwin_width;
346         gint logwin_height;
347
348         gint warn_dnd;
349         gint broken_are_utf8;
350 };
351
352 extern PrefsCommon prefs_common;
353
354 void prefs_common_read_config   (void);
355 void prefs_common_write_config  (void);
356 void prefs_common_open          (void);
357 PrefsCommon *prefs_common_get   (void);
358 void pref_set_textview_from_pref(GtkTextView *textview, gchar *txt);
359 gchar *pref_get_pref_from_textview(GtkTextView *textview);
360
361 #endif /* __PREFS_COMMON_H__ */