claws-mail/src/prefs_common.h

307 lines
6.5 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2003-02-18 06:42:13 +01:00
* Copyright (C) 1999-2003 Hiroyuki Yamamoto
2001-04-19 14:21:46 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __PREFS_COMMON_H__
#define __PREFS_COMMON_H__
2001-04-27 22:27:24 +02:00
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
2001-04-19 14:21:46 +02:00
#include <glib.h>
#include "mainwindow.h"
2001-10-22 10:42:36 +02:00
#include "summaryview.h"
2001-04-19 14:21:46 +02:00
#include "codeconv.h"
#include "textview.h"
typedef struct _PrefsCommon PrefsCommon;
2001-08-22 12:58:38 +02:00
typedef enum {
RECV_DIALOG_ALWAYS,
2003-09-01 12:36:33 +02:00
RECV_DIALOG_MANUAL,
2001-08-22 12:58:38 +02:00
RECV_DIALOG_NEVER
} RecvDialogMode;
2003-01-16 12:02:43 +01:00
typedef enum {
CTE_AUTO,
CTE_BASE64,
CTE_QUOTED_PRINTABLE,
CTE_8BIT
} TransferEncodingMethod;
typedef enum {
SEND_DIALOG_ALWAYS,
/* SEND_DIALOG_ACTIVE would be irrelevant */
SEND_DIALOG_NEVER
} SendDialogMode;
2001-09-25 13:50:09 +02:00
typedef enum
{
NEXTUNREADMSGDIALOG_ALWAYS,
NEXTUNREADMSGDIALOG_ASSUME_YES,
NEXTUNREADMSGDIALOG_ASSUME_NO
} NextUnreadMsgDialogShow;
2001-04-19 14:21:46 +02:00
struct _PrefsCommon
{
/* Receive */
gboolean use_extinc;
2001-09-13 15:38:32 +02:00
gchar *extinc_cmd;
2001-04-19 14:21:46 +02:00
gboolean inc_local;
gboolean filter_on_inc;
gchar *spool_path;
2001-08-16 13:28:10 +02:00
gboolean scan_all_after_inc;
2001-04-19 14:21:46 +02:00
gboolean autochk_newmail;
gint autochk_itv;
gboolean chk_on_startup;
gboolean newmail_notify_auto;
gboolean newmail_notify_manu;
gchar *newmail_notify_cmd;
2003-04-15 22:48:37 +02:00
RecvDialogMode recv_dialog_mode;
gboolean close_recv_dialog;
gboolean no_recv_err_panel;
2001-04-19 14:21:46 +02:00
/* Send */
gboolean use_extsend;
2001-08-30 14:59:38 +02:00
gchar *extsend_cmd;
2001-04-19 14:21:46 +02:00
gboolean savemsg;
gboolean queue_msg;
2003-04-15 22:48:37 +02:00
SendDialogMode send_dialog_mode;
2001-04-19 14:21:46 +02:00
gchar *outgoing_charset;
2003-01-16 12:02:43 +01:00
TransferEncodingMethod encoding_method;
2001-04-19 14:21:46 +02:00
/* Compose */
2001-12-16 14:34:13 +01:00
gint undolevels;
2001-04-19 14:21:46 +02:00
gint linewrap_len;
gboolean linewrap_quote;
2002-06-26 08:48:01 +02:00
gboolean autowrap;
2001-04-19 14:21:46 +02:00
gboolean linewrap_at_send;
2001-09-13 15:38:32 +02:00
gboolean auto_exteditor;
2001-07-26 00:13:17 +02:00
gboolean reply_account_autosel;
2002-10-02 12:24:03 +02:00
gboolean default_reply_list;
2001-08-30 12:51:36 +02:00
gboolean forward_account_autosel;
gboolean reedit_account_autosel;
2001-04-19 14:21:46 +02:00
gboolean show_ruler;
2002-09-03 18:15:17 +02:00
gboolean autosave;
gint autosave_length;
2001-11-07 11:29:45 +01:00
/* Quote */
gboolean reply_with_quote;
gchar *quotemark;
gchar *quotefmt;
gchar *fw_quotemark;
gchar *fw_quotefmt;
gboolean forward_as_attachment;
2002-05-23 10:18:33 +02:00
gboolean redirect_keep_from;
2001-07-09 22:14:59 +02:00
gboolean smart_wrapping;
2001-10-02 20:45:45 +02:00
gboolean block_cursor;
gchar *quote_chars;
2002-08-28 15:04:15 +02:00
#if USE_ASPELL
gboolean enable_aspell;
gchar *aspell_path;
gchar *dictionary;
gulong misspelled_col;
2002-08-28 15:04:15 +02:00
gint aspell_sugmode;
2002-01-29 00:00:53 +01:00
gboolean check_while_typing;
gboolean use_alternate;
2001-09-18 18:43:10 +02:00
#endif
2001-04-19 14:21:46 +02:00
/* Display */
gchar *widgetfont;
gchar *textfont;
2001-05-13 11:38:54 +02:00
gchar *normalfont;
2001-08-16 13:28:10 +02:00
gchar *boldfont;
gchar *smallfont;
2002-11-27 10:26:17 +01:00
gboolean trans_hdr;
2001-04-19 14:21:46 +02:00
gboolean display_folder_unread;
2002-05-10 09:32:09 +02:00
gint ng_abbrev_len;
2002-11-27 10:26:17 +01:00
gboolean show_searchbar;
2001-04-19 14:21:46 +02:00
gboolean swap_from;
2002-11-27 10:26:17 +01:00
gboolean expand_thread;
gboolean use_addr_book;
gchar *date_format;
2001-04-19 14:21:46 +02:00
2002-11-27 10:26:17 +01:00
gboolean enable_hscrollbar;
gboolean bold_unread;
gboolean enable_thread;
2003-02-04 21:57:27 +01:00
gboolean thread_by_subject;
gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
* by subject (days) */
2002-11-27 10:26:17 +01:00
ToolbarStyle toolbar_style;
gboolean show_statusbar;
2002-06-22 19:49:39 +02:00
gint folderview_vscrollbar_policy;
2001-04-19 14:21:46 +02:00
/* Filtering */
GSList *fltlist;
gint kill_score;
gint important_score;
/* Actions */
2002-07-06 08:48:23 +02:00
GSList *actions_list;
2001-10-22 10:42:36 +02:00
/* Summary columns visibility, position and size */
gboolean summary_col_visible[N_SUMMARY_COLS];
gint summary_col_pos[N_SUMMARY_COLS];
gint summary_col_size[N_SUMMARY_COLS];
2001-04-19 14:21:46 +02:00
2003-08-21 10:45:43 +02:00
/* Widget visibility, position and size */
2003-08-09 08:26:27 +02:00
gint folderwin_x;
gint folderwin_y;
2001-04-19 14:21:46 +02:00
gint folderview_width;
gint folderview_height;
2003-08-21 10:45:43 +02:00
gboolean folderview_visible;
2003-08-09 08:26:27 +02:00
2001-04-19 14:21:46 +02:00
gint folder_col_folder;
gint folder_col_new;
gint folder_col_unread;
gint folder_col_total;
gint summaryview_width;
gint summaryview_height;
2003-08-09 08:26:27 +02:00
gint main_msgwin_x;
gint main_msgwin_y;
gint msgview_width;
gint msgview_height;
2003-08-21 10:45:43 +02:00
gboolean msgview_visible;
2003-08-09 08:26:27 +02:00
2001-04-19 14:21:46 +02:00
gint mainview_x;
gint mainview_y;
gint mainview_width;
gint mainview_height;
gint mainwin_x;
gint mainwin_y;
gint mainwin_width;
gint mainwin_height;
gint msgwin_width;
gint msgwin_height;
2003-02-18 06:42:13 +01:00
gint sourcewin_width;
gint sourcewin_height;
2001-04-19 14:21:46 +02:00
gint compose_width;
gint compose_height;
/* Message */
gboolean enable_color;
gulong quote_level1_col;
gulong quote_level2_col;
gulong quote_level3_col;
gulong uri_col;
gulong tgt_folder_col;
gulong signature_col;
2001-04-19 14:21:46 +02:00
gboolean recycle_quote_colors;
gboolean conv_mb_alnum;
gboolean display_header_pane;
gboolean display_header;
gboolean head_space;
gint line_space;
gboolean enable_smooth_scroll;
gint scroll_step;
gboolean scroll_halfpage;
gchar *force_charset;
2001-05-06 22:06:56 +02:00
gboolean show_other_header;
GSList *disphdr_list;
gboolean attach_desc;
2001-04-19 14:21:46 +02:00
/* MIME viewer */
gchar *mime_image_viewer;
gchar *mime_audio_player;
2001-11-07 11:29:45 +01:00
gchar *mime_open_cmd;
GList *mime_open_cmd_history;
2001-04-19 14:21:46 +02:00
2002-08-06 10:38:29 +02:00
#if USE_GPGME
2001-04-19 14:21:46 +02:00
/* Privacy */
2001-05-28 20:38:15 +02:00
gboolean auto_check_signatures;
gboolean gpg_signature_popup;
2002-04-13 12:21:38 +02:00
gboolean store_passphrase;
2002-08-06 10:38:29 +02:00
gint store_passphrase_timeout;
2001-04-19 14:21:46 +02:00
gboolean passphrase_grab;
2001-05-28 20:38:15 +02:00
gboolean gpg_warning;
#endif /* USE_GPGME */
2001-04-19 14:21:46 +02:00
/* Interface */
gboolean sep_folder;
gboolean sep_msg;
gboolean emulate_emacs;
2003-05-09 10:21:45 +02:00
gboolean always_show_msg;
2001-04-19 14:21:46 +02:00
gboolean open_unread_on_enter;
2002-09-06 09:38:22 +02:00
gboolean mark_as_read_on_new_window;
2001-04-19 14:21:46 +02:00
gboolean open_inbox_on_inc;
gboolean immediate_exec;
2001-09-25 13:50:09 +02:00
NextUnreadMsgDialogShow next_unread_msg_dialog;
2001-04-21 01:24:31 +02:00
gboolean add_address_by_click;
2002-02-11 20:46:04 +01:00
gchar *pixmap_theme_path;
int hover_timeout; /* msecs mouse hover timeout */
2001-04-19 14:21:46 +02:00
2002-01-28 13:46:49 +01:00
/* Other */
gchar *uri_cmd;
gchar *print_cmd;
gchar *ext_editor_cmd;
gboolean cliplog;
guint loglength;
gboolean confirm_on_exit;
2001-04-19 14:21:46 +02:00
gboolean clean_on_exit;
gboolean ask_on_clean;
gboolean warn_queued_on_exit;
2003-05-27 09:36:59 +02:00
gint io_timeout_secs;
#if 0
#ifdef USE_OPENSSL
2002-11-25 20:19:09 +01:00
gboolean ssl_ask_unknown_valid;
#endif
2002-11-25 20:19:09 +01:00
#endif
2003-02-18 06:55:38 +01:00
2002-06-30 01:33:42 +02:00
/* Memory cache*/
gint cache_max_mem_usage;
gint cache_min_keep_time;
2002-04-21 14:11:43 +02:00
/* boolean for work offline
stored here for use in inc.c */
gboolean work_offline;
2002-12-11 11:16:39 +01:00
gint summary_quicksearch_type;
gulong color_new;
2001-04-19 14:21:46 +02:00
};
extern PrefsCommon prefs_common;
void prefs_common_init (void);
2001-04-19 14:21:46 +02:00
void prefs_common_read_config (void);
void prefs_common_save_config (void);
void prefs_common_open (void);
PrefsCommon *prefs_common_get (void);
2001-04-19 14:21:46 +02:00
#endif /* __PREFS_COMMON_H__ */