inital gtk2 patch
[claws.git] / src / prefs_common.h
index a2a2c8532ccbe5be6d9b80240e317185573639d0..c968a48a8278c58f6bd3e2db5137f7333fab91f2 100644 (file)
@@ -35,7 +35,7 @@ typedef struct _PrefsCommon   PrefsCommon;
 
 typedef enum {
        RECV_DIALOG_ALWAYS,
-       RECV_DIALOG_ACTIVE,
+       RECV_DIALOG_MANUAL,
        RECV_DIALOG_NEVER
 } RecvDialogMode;
 
@@ -74,13 +74,16 @@ struct _PrefsCommon
        gboolean newmail_notify_auto;
        gboolean newmail_notify_manu;
        gchar   *newmail_notify_cmd;
-       gint max_articles;
+       RecvDialogMode recv_dialog_mode;
+       gboolean close_recv_dialog;
+       gboolean no_recv_err_panel;
 
        /* Send */
        gboolean use_extsend;
        gchar *extsend_cmd;
        gboolean savemsg;
        gboolean queue_msg;
+       SendDialogMode send_dialog_mode;
        gchar *outgoing_charset;
        TransferEncodingMethod encoding_method;
 
@@ -115,18 +118,27 @@ struct _PrefsCommon
        gboolean enable_aspell;
        gchar *aspell_path;
        gchar *dictionary;
-       gint misspelled_col;
+       gulong misspelled_col;
        gint aspell_sugmode;
        gboolean check_while_typing;
        gboolean use_alternate;
 #endif
         
        /* Display */
+       /* obsolete fonts */
+       gchar *widgetfont_gtk1;
+       gchar *textfont_gtk1;
+       gchar *normalfont_gtk1;
+       gchar *boldfont_gtk1;
+       gchar *smallfont_gtk1;
+
+       /* new fonts */
        gchar *widgetfont;
        gchar *textfont;
        gchar *normalfont;
        gchar *boldfont;
        gchar *smallfont;
+       gchar *titlefont;
 
        gboolean trans_hdr;
        gboolean display_folder_unread;
@@ -142,6 +154,8 @@ struct _PrefsCommon
        gboolean bold_unread;
        gboolean enable_thread;
        gboolean thread_by_subject;
+       gint thread_by_subject_max_age; /*!< Max. age of a thread which was threaded
+                                        *   by subject (days) */
 
        ToolbarStyle toolbar_style;
        gboolean show_statusbar;
@@ -162,11 +176,13 @@ struct _PrefsCommon
        gint summary_col_pos[N_SUMMARY_COLS];
        gint summary_col_size[N_SUMMARY_COLS];
 
-       /* Widget size */
-       gint folderview_x;
-       gint folderview_y;
+       /* Widget visibility, position and size */
+       gint folderwin_x;
+       gint folderwin_y;
        gint folderview_width;
        gint folderview_height;
+       gboolean folderview_visible;
+
        gint folder_col_folder;
        gint folder_col_new;
        gint folder_col_unread;
@@ -175,6 +191,12 @@ struct _PrefsCommon
        gint summaryview_width;
        gint summaryview_height;
 
+       gint main_msgwin_x;
+       gint main_msgwin_y;
+       gint msgview_width;
+       gint msgview_height;
+       gboolean msgview_visible;
+
        gint mainview_x;
        gint mainview_y;
        gint mainview_width;
@@ -195,12 +217,12 @@ struct _PrefsCommon
 
        /* Message */
        gboolean enable_color;
-       gint quote_level1_col;
-       gint quote_level2_col;
-       gint quote_level3_col;
-       gint uri_col;
-       gint tgt_folder_col;
-       gint signature_col;
+       gulong quote_level1_col;
+       gulong quote_level2_col;
+       gulong quote_level3_col;
+       gulong uri_col;
+       gulong tgt_folder_col;
+       gulong signature_col;
        gboolean recycle_quote_colors;
        gboolean conv_mb_alnum;
        gboolean display_header_pane;
@@ -211,14 +233,13 @@ struct _PrefsCommon
        gint scroll_step;
        gboolean scroll_halfpage;
 
-       gboolean display_img;
-       gboolean resize_image;
-
        gchar *force_charset;
 
        gboolean show_other_header;
        GSList *disphdr_list;
 
+       gboolean attach_desc;
+
        /* MIME viewer */
        gchar *mime_image_viewer;
        gchar *mime_audio_player;
@@ -240,18 +261,15 @@ struct _PrefsCommon
        gboolean sep_folder;
        gboolean sep_msg;
        gboolean emulate_emacs;
-       gboolean show_msg_with_cursor_key;
+       gboolean always_show_msg;
        gboolean open_unread_on_enter;
        gboolean mark_as_read_on_new_window;
        gboolean open_inbox_on_inc;
        gboolean immediate_exec;
-       RecvDialogMode recv_dialog_mode;
-       SendDialogMode send_dialog_mode;
-       gboolean close_recv_dialog;
-       gboolean no_recv_err_panel;
        NextUnreadMsgDialogShow next_unread_msg_dialog;
        gboolean add_address_by_click;
        gchar *pixmap_theme_path;
+       int hover_timeout; /* msecs mouse hover timeout */
 
        /* Other */
        gchar *uri_cmd;
@@ -265,11 +283,15 @@ struct _PrefsCommon
        gboolean clean_on_exit;
        gboolean ask_on_clean;
        gboolean warn_queued_on_exit;
+
+       gint io_timeout_secs;
+       
 #if 0
 #ifdef USE_OPENSSL
        gboolean ssl_ask_unknown_valid;
 #endif
 #endif
+
        /* Memory cache*/
        gint cache_max_mem_usage;
        gint cache_min_keep_time;
@@ -279,14 +301,15 @@ struct _PrefsCommon
        gboolean work_offline;
        
        gint summary_quicksearch_type;
-
+       gulong color_new;
 };
 
 extern PrefsCommon prefs_common;
 
-void prefs_common_init         ();
+void prefs_common_init         (void);
 void prefs_common_read_config  (void);
 void prefs_common_save_config  (void);
 void prefs_common_open         (void);
+PrefsCommon *prefs_common_get  (void);
 
 #endif /* __PREFS_COMMON_H__ */