Fix typos and errors in polish translation
[claws.git] / src / prefs_common.h
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2016 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 #ifndef __PREFS_COMMON_H__
20 #define __PREFS_COMMON_H__
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #include "claws-features.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 #define CLAWS_CONFIG_VERSION 2
39
40 typedef struct _PrefsCommon     PrefsCommon;
41
42 typedef enum {
43         RECV_DIALOG_ALWAYS,
44         RECV_DIALOG_MANUAL,
45         RECV_DIALOG_NEVER
46 } RecvDialogMode;
47
48 typedef enum {
49         COMPOSE_DND_ASK,
50         COMPOSE_DND_INSERT,
51         COMPOSE_DND_ATTACH
52 } ComposeDndInsertOrAttach;
53
54 typedef enum {
55         CTE_AUTO,
56         CTE_BASE64,
57         CTE_QUOTED_PRINTABLE,
58         CTE_8BIT
59 } TransferEncodingMethod;
60
61 typedef enum
62 {
63 /* U = unread, N = new, M = marked */
64         SELECTONENTRY_NOTHING,
65         SELECTONENTRY_UNM,
66         SELECTONENTRY_UMN,
67         SELECTONENTRY_NUM,
68         SELECTONENTRY_NMU,
69         SELECTONENTRY_MNU,
70         SELECTONENTRY_MUN,
71         SELECTONENTRY_LAST
72 } SelectOnEntry;
73
74 typedef enum
75 {
76         ACTION_UNSET = 0, /* for backward compatibility */
77         ACTION_OLDEST_MARKED,
78         ACTION_OLDEST_NEW,
79         ACTION_OLDEST_UNREAD,
80         ACTION_LAST_OPENED,
81         ACTION_NEWEST_LIST,
82         ACTION_NOTHING,
83         ACTION_OLDEST_LIST,
84         ACTION_NEWEST_MARKED,
85         ACTION_NEWEST_NEW,
86         ACTION_NEWEST_UNREAD
87 } EntryAction;
88
89 typedef enum
90 {
91         NEXTUNREADMSGDIALOG_ALWAYS,
92         NEXTUNREADMSGDIALOG_ASSUME_YES,
93         NEXTUNREADMSGDIALOG_ASSUME_NO
94 } NextUnreadMsgDialogShow;
95
96 typedef enum
97 {
98         SHOW_NAME,
99         SHOW_ADDR,
100         SHOW_BOTH
101 } SummaryFromShow;
102
103 typedef enum
104 {
105         AVATARS_DISABLE = 0,
106         AVATARS_ENABLE_CAPTURE = 1,
107         AVATARS_ENABLE_RENDER = 2,
108         AVATARS_ENABLE_BOTH = 3
109 } EnableAvatars;
110
111 struct _PrefsCommon
112 {
113         gint config_version;
114
115         /* Receive */
116         gboolean use_extinc;
117         gchar *extinc_cmd;
118         gboolean scan_all_after_inc;
119         gboolean autochk_newmail;
120         gint autochk_itv;
121         gboolean chk_on_startup;
122         gboolean open_inbox_on_inc;
123         gboolean newmail_notify_auto;
124         gboolean newmail_notify_manu;
125         gchar   *newmail_notify_cmd;
126         RecvDialogMode recv_dialog_mode;
127         gint receivewin_width;
128         gint receivewin_height;
129         gboolean close_recv_dialog;
130         gboolean no_recv_err_panel;
131
132         /* Send */
133         gboolean savemsg;
134         gboolean confirm_send_queued_messages;
135         gboolean send_dialog_invisible;
136         gint sendwin_width;
137         gint sendwin_height;
138         gchar *outgoing_charset;
139         TransferEncodingMethod encoding_method;
140         gboolean outgoing_fallback_to_ascii;
141         gboolean rewrite_first_from;
142         gboolean warn_empty_subj;
143         gint warn_sending_many_recipients_num;
144         gboolean hide_timezone;
145         gboolean allow_jisx0201_kana;
146
147         /* Compose */
148         gint undolevels;
149         gint linewrap_len;
150         gboolean linewrap_quote;
151         gboolean linewrap_pastes;
152         gboolean primary_paste_unselects;
153         gboolean autowrap;
154         gboolean auto_indent;
155         gboolean auto_exteditor;
156         gboolean reply_account_autosel;
157         gboolean default_reply_list;
158         gboolean forward_account_autosel;
159         gboolean reedit_account_autosel;
160         gboolean show_ruler;
161         gboolean autosave;
162         gint autosave_length;
163         gboolean autosave_encrypted;
164         gboolean warn_large_insert;
165         gint warn_large_insert_size;
166         gboolean compose_no_markup;
167         ComposeDndInsertOrAttach compose_dnd_mode;
168         gboolean compose_with_format;
169         gchar *compose_subject_format;
170         gchar *compose_body_format;
171         gboolean show_compose_margin;
172         gboolean type_any_header;
173
174         /* Quote */
175         gboolean reply_with_quote;
176         gchar *quotemark;
177         gchar *quotefmt;
178         gchar *fw_quotemark;
179         gchar *fw_quotefmt;
180         gboolean forward_as_attachment;
181         gboolean redirect_keep_from;
182         gchar *quote_chars;
183         
184         gboolean enable_aspell;
185         gchar *dictionary;
186         gchar *alt_dictionary;
187         gulong misspelled_col;
188         gboolean check_while_typing;
189         gboolean recheck_when_changing_dict;
190         gboolean use_alternate;
191         gboolean use_both_dicts;
192
193         /* Display */
194         /* fonts */
195         gchar *textfont;
196         gchar *printfont;
197         gchar *boldfont;
198         gchar *normalfont;
199         gchar *smallfont;
200         gchar *titlefont;
201         gboolean use_different_print_font;
202         gboolean derive_from_normal_font;
203
204         /* custom colors */
205         ColorlabelPrefs custom_colorlabel[COLORLABELS];
206
207         /* image viewer */
208         gboolean display_img;
209         gboolean resize_img;
210         gboolean inline_img;
211
212         gboolean trans_hdr;
213         gint display_folder_unread;
214         gint ng_abbrev_len;
215
216         gboolean show_searchbar;
217         gboolean expand_thread;
218         gboolean swap_from;
219         gboolean use_addr_book;
220         gchar *date_format;
221         gboolean *msgview_date_format;
222
223         gboolean use_stripes_everywhere;
224         gboolean use_stripes_in_summaries; /* overrides if use_stripes_everywhere is set to TRUE */
225         gint stripes_color_offset;
226         gboolean enable_hscrollbar;
227         gboolean bold_unread;
228         gboolean next_on_delete;
229         gboolean enable_thread;
230         gboolean thread_by_subject;
231         gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
232                                          *   by subject (days) */
233         FolderSortKey default_sort_key;
234         FolderSortType default_sort_type;
235
236         gchar *last_opened_folder;
237         gboolean goto_last_folder_on_startup;
238
239         ToolbarStyle toolbar_style;
240         gboolean toolbar_detachable;
241         gboolean show_statusbar;
242         gboolean show_col_headers;
243
244         gint folderview_vscrollbar_policy;
245
246         /* Filtering */
247         GSList *fltlist;
248
249         gint kill_score;
250         gint important_score;
251
252         /* Actions */
253         GSList *actions_list;
254
255         /* Summary columns visibility, position and size */
256         gboolean summary_col_visible[N_SUMMARY_COLS];
257         gint summary_col_pos[N_SUMMARY_COLS];
258         gint summary_col_size[N_SUMMARY_COLS];
259
260         gboolean folder_col_visible[N_FOLDER_COLS];
261         gint folder_col_pos[N_FOLDER_COLS];
262         gint folder_col_size[N_FOLDER_COLS];
263
264         /* Widget visibility, position and size */
265         gint folderwin_x;
266         gint folderwin_y;
267         gint folderview_width;
268         gint folderview_height;
269         gboolean folderview_visible;
270
271         gint summaryview_width;
272         gint summaryview_height;
273
274         gint main_msgwin_x;
275         gint main_msgwin_y;
276         gint msgview_width;
277         gint msgview_height;
278         gboolean msgview_visible;
279
280         gint mainview_x;
281         gint mainview_y;
282         gint mainview_width;
283         gint mainview_height;
284         gint mainwin_x;
285         gint mainwin_y;
286         gint mainwin_width;
287         gint mainwin_height;
288         gint mainwin_maximised;
289         gint mainwin_fullscreen;
290         gint mainwin_menubar;
291
292         gint msgwin_width;
293         gint msgwin_height;
294
295         gint mimeview_tree_height;
296         
297         gint sourcewin_width;
298         gint sourcewin_height;
299
300         gint compose_width;
301         gint compose_height;
302         gint compose_notebook_height;
303         gint compose_x;
304         gint compose_y;
305
306         /* Message */
307         gboolean enable_color;
308         gboolean enable_bgcolor;
309         gulong quote_level1_col;
310         gulong quote_level2_col;
311         gulong quote_level3_col;
312         gulong quote_level1_bgcol;
313         gulong quote_level2_bgcol;
314         gulong quote_level3_bgcol;
315         gulong uri_col;
316         gulong tgt_folder_col;
317         gulong signature_col;
318         gulong emphasis_col;
319         gboolean recycle_quote_colors;
320         gulong default_header_bgcolor;
321         gulong default_header_color;
322         gulong tags_bgcolor;
323         gulong tags_color;
324         gulong qs_active_bgcolor;
325         gulong qs_active_color;
326         gulong qs_error_bgcolor;
327         gulong qs_error_color;
328         gboolean display_header_pane;
329         gboolean display_header;
330         gboolean display_xface;
331         gint line_space;
332         gboolean render_html;
333         gboolean invoke_plugin_on_html;
334         gboolean promote_html_part;
335         gboolean textview_cursor_visible;
336         gboolean enable_smooth_scroll;
337         gint scroll_step;
338         gboolean scroll_halfpage;
339         gboolean hide_quoted;
340         gboolean respect_flowed_format;
341         gboolean show_all_headers;
342
343         gboolean show_other_header;
344         GSList *disphdr_list;
345
346         gboolean attach_desc;
347
348         /* MIME viewer */
349         gchar *mime_textviewer;
350         gchar *mime_open_cmd;
351         gchar *attach_save_dir;
352         gchar *attach_load_dir;
353
354         GList *mime_open_cmd_history;
355         gboolean show_inline_attachments;
356
357         /* Addressbook */
358         gboolean addressbook_use_editaddress_dialog;
359         gint addressbook_hpaned_pos;
360         gint addressbook_vpaned_pos;
361         GList *addressbook_custom_attributes;
362
363         /* Interface */
364         gboolean layout_mode;
365
366         gint statusbar_update_step;
367         gboolean emulate_emacs;
368
369         gboolean open_selected_on_folder_open;
370         gboolean open_selected_on_search_results;
371         gboolean open_selected_on_prevnext;
372         gboolean open_selected_on_deletemove;
373         gboolean open_selected_on_directional;
374         gboolean always_show_msg;
375
376         gboolean mark_as_read_on_new_window;
377         gboolean mark_as_read_delay;
378         gboolean immediate_exec;
379         SelectOnEntry select_on_entry;
380         gboolean show_tooltips;
381
382         EntryAction summary_select_prio[SUMMARY_OPEN_ACTIONS-1];
383
384         NextUnreadMsgDialogShow next_unread_msg_dialog;
385         SummaryFromShow summary_from_show;
386         gboolean add_address_by_click;
387         gchar *pixmap_theme_path;
388 #ifdef HAVE_SVG
389         gboolean enable_alpha_svg;
390         gboolean enable_pixmap_scaling;
391         gboolean pixmap_scaling_auto;
392         gint pixmap_scaling_ppi;
393 #endif
394         int hover_timeout; /* msecs mouse hover timeout */
395         gboolean ask_mark_all_read;
396         gboolean ask_apply_per_account_filtering_rules;
397         gint apply_per_account_filtering_rules;
398
399         /* Other */
400 #ifndef G_OS_WIN32
401         gchar *uri_cmd;
402 #else
403         gchar *gtk_theme;
404 #endif
405         gchar *ext_editor_cmd;
406         gboolean cmds_use_system_default;
407
408         gboolean cliplog;
409         guint loglength;
410         gboolean enable_log_standard;
411         gboolean enable_log_warning;
412         gboolean enable_log_error;
413         gboolean enable_log_status;
414
415         gulong log_msg_color;
416         gulong log_warn_color;
417         gulong log_error_color;
418         gulong log_in_color;
419         gulong log_out_color;
420         gulong log_status_ok_color;
421         gulong log_status_nok_color;
422         gulong log_status_skip_color;
423
424         gboolean enable_filtering_debug;
425         gint filtering_debug_level;
426         gboolean enable_filtering_debug_inc;
427         gboolean enable_filtering_debug_manual;
428         gboolean enable_filtering_debug_folder_proc;
429         gboolean enable_filtering_debug_pre_proc;
430         gboolean enable_filtering_debug_post_proc;
431         gboolean filtering_debug_cliplog;
432         guint filtering_debug_loglength;
433
434         gboolean confirm_on_exit;
435         gboolean session_passwords;
436         gboolean clean_on_exit;
437         gboolean ask_on_clean;
438         gboolean warn_queued_on_exit;
439
440         gint io_timeout_secs;
441
442         gboolean gtk_can_change_accels;
443         
444         /* Memory cache*/
445         gint cache_max_mem_usage;
446         gint cache_min_keep_time;
447         
448         /* boolean for work offline 
449            stored here for use in inc.c */
450         gboolean work_offline;
451         
452         gint summary_quicksearch_type;
453         gint summary_quicksearch_sticky;
454         gint summary_quicksearch_recurse;
455         gint summary_quicksearch_dynamic;
456         gint summary_quicksearch_autorun;
457         gulong color_new;
458         
459         GList *summary_quicksearch_history;
460         GList *summary_search_from_history;
461         GList *summary_search_to_history;
462         GList *summary_search_subject_history;
463         GList *summary_search_body_history;
464         GList *summary_search_adv_condition_history;
465         GList *message_search_history;
466         GList *compose_save_to_history;
467
468         gint filteringwin_width;
469         gint filteringwin_height;
470         gint filteringactionwin_width;
471         gint filteringactionwin_height;
472         gint matcherwin_width;
473         gint matcherwin_height;
474         gint templateswin_width;
475         gint templateswin_height;
476         gint actionswin_width;
477         gint actionswin_height;
478         gint tagswin_width;
479         gint tagswin_height;
480         gint addressbookwin_width;
481         gint addressbookwin_height;
482         gint addressbookeditpersonwin_width;
483         gint addressbookeditpersonwin_height;
484         gint addressbookeditgroupwin_width;
485         gint addressbookeditgroupwin_height;
486         gint pluginswin_width;
487         gint pluginswin_height;
488         gint prefswin_width;
489         gint prefswin_height;
490         gint folderitemwin_width;
491         gint folderitemwin_height;
492         gchar *zero_replacement;
493         gint editaccountwin_width;
494         gint editaccountwin_height;
495         gint accountswin_width;
496         gint accountswin_height;
497         gint logwin_width;
498         gint logwin_height;
499         gint filtering_debugwin_width;
500         gint filtering_debugwin_height;
501         gint folderselwin_width;
502         gint folderselwin_height;
503         gint addressaddwin_width;
504         gint addressaddwin_height;
505         gint addressbook_folderselwin_width;
506         gint addressbook_folderselwin_height;
507         gint aboutwin_width;
508         gint aboutwin_height;
509         gint addrgather_width;
510         gint addrgather_height;
511         gint news_subscribe_width;
512         gint news_subscribe_height;
513
514         gint warn_dnd;
515         gint broken_are_utf8;
516         gint skip_ssl_cert_check;
517         gint live_dangerously;
518         gint save_parts_readwrite;
519         gint never_send_retrcpt;
520         gint hide_quotes;
521         gboolean unsafe_ssl_certs;
522         gboolean real_time_sync;
523         
524         gchar *print_paper_type;
525         gint print_paper_orientation;
526         gint print_margin_top;
527         gint print_margin_bottom;
528         gint print_margin_left;
529         gint print_margin_right;
530   
531         gint print_use_color;
532         gint print_use_collate;
533         gint print_use_reverse;
534         gint print_use_duplex;
535         gint print_imgs;
536         gint print_previewwin_width;
537         gint print_previewwin_height;
538         
539         gboolean use_networkmanager;
540         gboolean use_shred;
541         gboolean two_line_vert;
542         gboolean inherit_folder_props;
543         gboolean flush_metadata;
544
545         gint nav_history_length;
546
547         gulong diff_added_color;
548         gulong diff_deleted_color;
549         gulong diff_hunk_color;
550         
551         gboolean folder_search_wildcard;
552         gboolean address_search_wildcard;
553
554         guint enable_avatars;
555
556 #ifndef PASSWORD_CRYPTO_OLD
557         gboolean use_master_passphrase;
558         gchar *master_passphrase;
559         gchar *master_passphrase_salt;
560         guint master_passphrase_pbkdf2_rounds;
561 #endif
562 };
563
564 extern PrefsCommon prefs_common;
565
566 PrefsCommon *prefs_common_get_prefs(void);
567
568 GList *prefs_common_read_history_from_dir_with_defaults(const gchar *dirname, const gchar *history,
569                                                                                                                           GList *default_list);
570 void prefs_common_read_config   (void);
571 void prefs_common_write_config  (void);
572 void prefs_common_open          (void);
573 void pref_get_unescaped_pref(gchar *out, const gchar *in);
574 void pref_get_escaped_pref(gchar *out, const gchar *in);
575 void pref_set_textview_from_pref(GtkTextView *textview, const gchar *txt);
576 void pref_set_entry_from_pref(GtkEntry *entry, const gchar *txt);
577 gchar *pref_get_pref_from_textview(GtkTextView *textview);
578 gchar *pref_get_pref_from_entry(GtkEntry *entry);
579 const gchar *prefs_common_translated_header_name(const gchar *header_name);
580 const gchar *prefs_common_get_uri_cmd(void);
581 const gchar *prefs_common_get_ext_editor_cmd(void);
582
583 #define OPEN_SELECTED(when) (prefs_common.always_show_msg || prefs_common.when)
584
585 #define OPEN_SELECTED_ON_FOLDER_OPEN OPEN_SELECTED(open_selected_on_folder_open)
586 #define OPEN_SELECTED_ON_SEARCH_RESULTS OPEN_SELECTED(open_selected_on_search_results)
587 #define OPEN_SELECTED_ON_PREVNEXT OPEN_SELECTED(open_selected_on_prevnext)
588 #define OPEN_SELECTED_ON_DELETEMOVE OPEN_SELECTED(open_selected_on_deletemove)
589 #define OPEN_SELECTED_ON_DIRECTIONAL OPEN_SELECTED(open_selected_on_directional)
590
591 #endif /* __PREFS_COMMON_H__ */