2007-07-20 [colin] 2.10.0cvs49
[claws.git] / src / prefs_common.h
blobdd2e99606d1bb9e8bde552928a420f172d98d82e
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
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.
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.
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/>.
20 #ifndef __PREFS_COMMON_H__
21 #define __PREFS_COMMON_H__
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
27 #include <glib.h>
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"
37 typedef struct _PrefsCommon PrefsCommon;
39 typedef enum {
40 RECV_DIALOG_ALWAYS,
41 RECV_DIALOG_MANUAL,
42 RECV_DIALOG_NEVER
43 } RecvDialogMode;
45 typedef enum {
46 COMPOSE_DND_ASK,
47 COMPOSE_DND_INSERT,
48 COMPOSE_DND_ATTACH
49 } ComposeDndInsertOrAttach;
51 typedef enum {
52 CTE_AUTO,
53 CTE_BASE64,
54 CTE_QUOTED_PRINTABLE,
55 CTE_8BIT
56 } TransferEncodingMethod;
58 typedef enum {
59 SEND_DIALOG_ALWAYS,
60 /* SEND_DIALOG_ACTIVE would be irrelevant */
61 SEND_DIALOG_NEVER
62 } SendDialogMode;
64 typedef enum
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;
77 typedef enum
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;
88 typedef enum
90 NEXTUNREADMSGDIALOG_ALWAYS,
91 NEXTUNREADMSGDIALOG_ASSUME_YES,
92 NEXTUNREADMSGDIALOG_ASSUME_NO
93 } NextUnreadMsgDialogShow;
95 struct _PrefsCommon
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 RecvDialogMode recv_dialog_mode;
112 gint receivewin_width;
113 gint receivewin_height;
114 gboolean close_recv_dialog;
115 gboolean no_recv_err_panel;
117 /* Send */
118 gboolean savemsg;
119 gboolean confirm_send_queued_messages;
120 SendDialogMode send_dialog_mode;
121 gint sendwin_width;
122 gint sendwin_height;
123 gchar *outgoing_charset;
124 TransferEncodingMethod encoding_method;
126 gboolean allow_jisx0201_kana;
128 /* Compose */
129 gint undolevels;
130 gint linewrap_len;
131 gboolean linewrap_quote;
132 gboolean linewrap_pastes;
133 gboolean autowrap;
134 gboolean auto_exteditor;
135 gboolean reply_account_autosel;
136 gboolean default_reply_list;
137 gboolean forward_account_autosel;
138 gboolean reedit_account_autosel;
139 gboolean show_ruler;
140 gboolean autosave;
141 gint autosave_length;
142 gboolean compose_no_markup;
143 ComposeDndInsertOrAttach compose_dnd_mode;
144 gboolean compose_with_format;
145 gchar *compose_subject_format;
146 gchar *compose_body_format;
148 /* Quote */
149 gboolean reply_with_quote;
150 gchar *quotemark;
151 gchar *quotefmt;
152 gchar *fw_quotemark;
153 gchar *fw_quotefmt;
154 gboolean forward_as_attachment;
155 gboolean redirect_keep_from;
156 gboolean block_cursor;
157 gchar *quote_chars;
159 #if USE_ASPELL
160 gboolean enable_aspell;
161 gchar *aspell_path;
162 gchar *dictionary;
163 gchar *alt_dictionary;
164 gulong misspelled_col;
165 gint aspell_sugmode;
166 gboolean check_while_typing;
167 gboolean recheck_when_changing_dict;
168 gboolean use_alternate;
169 gboolean use_both_dicts;
170 #endif
172 /* Display */
173 /* obsolete fonts */
174 gchar *widgetfont_gtk1;
175 gchar *textfont_gtk1;
176 gchar *normalfont_gtk1;
177 gchar *boldfont_gtk1;
178 gchar *smallfont_gtk1;
180 /* new fonts */
181 gchar *widgetfont;
182 gchar *textfont;
183 gchar *printfont;
184 gchar *normalfont;
185 gchar *smallfont;
186 gchar *titlefont;
188 /* custom colors */
189 ColorlabelPrefs custom_colorlabel[COLORLABELS];
191 /* image viewer */
192 gboolean display_img;
193 gboolean resize_img;
194 gboolean inline_img;
196 gboolean trans_hdr;
197 gint display_folder_unread;
198 gint ng_abbrev_len;
200 gboolean show_searchbar;
201 gboolean expand_thread;
202 gboolean swap_from;
203 gboolean use_addr_book;
204 gchar *date_format;
206 gboolean use_stripes_everywhere;
207 gboolean use_stripes_in_summaries; /* overrides if use_stripes_everywhere is set to TRUE */
208 gint stripes_color_offset;
209 gboolean enable_dotted_lines;
210 gboolean enable_hscrollbar;
211 gboolean bold_unread;
212 gboolean enable_thread;
213 gboolean thread_by_subject;
214 gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
215 * by subject (days) */
217 gchar *last_opened_folder;
218 gboolean goto_last_folder_on_startup;
220 ToolbarStyle toolbar_style;
221 gboolean toolbar_detachable;
222 gboolean show_statusbar;
224 gint folderview_vscrollbar_policy;
226 /* Filtering */
227 GSList *fltlist;
229 gint kill_score;
230 gint important_score;
232 /* Actions */
233 GSList *actions_list;
235 /* Summary columns visibility, position and size */
236 gboolean summary_col_visible[N_SUMMARY_COLS];
237 gint summary_col_pos[N_SUMMARY_COLS];
238 gint summary_col_size[N_SUMMARY_COLS];
240 gboolean folder_col_visible[N_FOLDER_COLS];
241 gint folder_col_pos[N_FOLDER_COLS];
242 gint folder_col_size[N_FOLDER_COLS];
244 /* Widget visibility, position and size */
245 gint folderwin_x;
246 gint folderwin_y;
247 gint folderview_width;
248 gint folderview_height;
249 gboolean folderview_visible;
251 gint summaryview_width;
252 gint summaryview_height;
254 gint main_msgwin_x;
255 gint main_msgwin_y;
256 gint msgview_width;
257 gint msgview_height;
258 gboolean msgview_visible;
260 gint mainview_x;
261 gint mainview_y;
262 gint mainview_width;
263 gint mainview_height;
264 gint mainwin_x;
265 gint mainwin_y;
266 gint mainwin_width;
267 gint mainwin_height;
269 gint msgwin_width;
270 gint msgwin_height;
272 gint sourcewin_width;
273 gint sourcewin_height;
275 gint compose_width;
276 gint compose_height;
277 gint compose_x;
278 gint compose_y;
280 /* Message */
281 gboolean enable_color;
282 gboolean enable_bgcolor;
283 gulong quote_level1_col;
284 gulong quote_level2_col;
285 gulong quote_level3_col;
286 gulong quote_level1_bgcol;
287 gulong quote_level2_bgcol;
288 gulong quote_level3_bgcol;
289 gulong uri_col;
290 gulong tgt_folder_col;
291 gulong signature_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;
305 gboolean show_other_header;
306 gboolean use_different_print_font;
307 GSList *disphdr_list;
309 gboolean attach_desc;
311 /* MIME viewer */
312 gchar *mime_textviewer;
313 gchar *mime_open_cmd;
314 gchar *attach_save_dir;
315 gchar *attach_load_dir;
317 GList *mime_open_cmd_history;
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 */
329 /* Addressbook */
330 gboolean addressbook_use_editaddress_dialog;
331 gint addressbook_hpaned_pos;
332 gint addressbook_vpaned_pos;
334 /* Interface */
335 gboolean layout_mode;
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;
345 EntryAction summary_select_prio[6];
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;
355 /* Other */
356 gchar *uri_cmd;
357 gchar *print_cmd;
358 gchar *ext_editor_cmd;
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;
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;
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;
386 gboolean confirm_on_exit;
387 gboolean clean_on_exit;
388 gboolean ask_on_clean;
389 gboolean warn_queued_on_exit;
391 gint io_timeout_secs;
393 gboolean gtk_can_change_accels;
395 /* Memory cache*/
396 gint cache_max_mem_usage;
397 gint cache_min_keep_time;
399 /* boolean for work offline
400 stored here for use in inc.c */
401 gboolean work_offline;
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;
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;
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;
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;
468 extern PrefsCommon prefs_common;
470 void prefs_common_read_config (void);
471 void prefs_common_write_config (void);
472 void prefs_common_open (void);
473 PrefsCommon *prefs_common_get (void);
474 void pref_get_unescaped_pref(gchar *out, const gchar *in);
475 void pref_get_escaped_pref(gchar *out, const gchar *in);
476 void pref_set_textview_from_pref(GtkTextView *textview, const gchar *txt);
477 void pref_set_entry_from_pref(GtkEntry *entry, const gchar *txt);
478 gchar *pref_get_pref_from_textview(GtkTextView *textview);
479 gchar *pref_get_pref_from_entry(GtkEntry *entry);
480 const gchar *prefs_common_translated_header_name(const gchar *header_name);
482 #endif /* __PREFS_COMMON_H__ */