2006-10-12 [colin] 2.5.5cvs4
[claws.git] / src / prefs_common.h
index d7cda7baf9ff7e0d048aeef313a02da6b78ffbbf..5a1861bb2066a40d2e76ea85e48102534dcad134 100644 (file)
@@ -42,6 +42,12 @@ typedef enum {
        RECV_DIALOG_NEVER
 } RecvDialogMode;
 
+typedef enum {
+       COMPOSE_DND_ASK,
+       COMPOSE_DND_INSERT,
+       COMPOSE_DND_ATTACH
+} ComposeDndInsertOrAttach;
+
 typedef enum {
        CTE_AUTO,
        CTE_BASE64,
@@ -88,6 +94,8 @@ struct _PrefsCommon
        gboolean newmail_notify_manu;
        gchar   *newmail_notify_cmd;
        RecvDialogMode recv_dialog_mode;
+       gint receivewin_width;
+       gint receivewin_height;
        gboolean close_recv_dialog;
        gboolean no_recv_err_panel;
 
@@ -95,6 +103,8 @@ struct _PrefsCommon
        gboolean savemsg;
        gboolean confirm_send_queued_messages;
        SendDialogMode send_dialog_mode;
+       gint sendwin_width;
+       gint sendwin_height;
        gchar *outgoing_charset;
        TransferEncodingMethod encoding_method;
 
@@ -115,6 +125,7 @@ struct _PrefsCommon
        gboolean autosave;
        gint autosave_length;
        gboolean compose_no_markup;
+       ComposeDndInsertOrAttach compose_dnd_mode;
 
        /* Quote */
        gboolean reply_with_quote;
@@ -172,7 +183,10 @@ struct _PrefsCommon
        gboolean use_addr_book;
        gchar *date_format;
 
-       gboolean enable_rules_hint;
+       gboolean use_stripes_everywhere;
+       gboolean use_stripes_in_summaries; /* overrides if use_stripes_everywhere is set to TRUE */
+       gint stripes_color_offset;
+       gboolean enable_dotted_lines;
        gboolean enable_hscrollbar;
        gboolean bold_unread;
        gboolean enable_thread;
@@ -263,6 +277,7 @@ struct _PrefsCommon
        gboolean enable_smooth_scroll;
        gint scroll_step;
        gboolean scroll_halfpage;
+       gboolean respect_flowed_format;
 
        gboolean show_other_header;
        gboolean use_different_print_font;
@@ -271,8 +286,7 @@ struct _PrefsCommon
        gboolean attach_desc;
 
        /* MIME viewer */
-       gchar *mime_image_viewer;
-       gchar *mime_audio_player;
+       gchar *mime_textviewer;
        gchar *mime_open_cmd;
        gchar *attach_save_dir;
        gchar *attach_load_dir;
@@ -304,6 +318,8 @@ struct _PrefsCommon
        gchar *pixmap_theme_path;
        int hover_timeout; /* msecs mouse hover timeout */
        gboolean ask_mark_all_read;
+       gboolean ask_apply_per_account_filtering_rules;
+       gint apply_per_account_filtering_rules;
 
        /* Other */
        gchar *uri_cmd;
@@ -354,6 +370,8 @@ struct _PrefsCommon
        gint addressbookwin_height;
        gint addressbookeditpersonwin_width;
        gint addressbookeditpersonwin_height;
+       gint addressbookeditgroupwin_width;
+       gint addressbookeditgroupwin_height;
        gint pluginswin_width;
        gint pluginswin_height;
        gint prefswin_width;
@@ -370,12 +388,15 @@ struct _PrefsCommon
        gint folderselwin_height;
        gint addressaddwin_width;
        gint addressaddwin_height;
+       gint addressbook_folderselwin_width;
+       gint addressbook_folderselwin_height;
 
        gint warn_dnd;
        gint broken_are_utf8;
        gint skip_ssl_cert_check;
        gint live_dangerously;
        gint never_send_retrcpt;
+       gint hide_quotes;
 };
 
 extern PrefsCommon prefs_common;