diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-11-21 09:03:03 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-11-21 09:03:03 +0000 |
commit | a7ff06e76f292fe17935eb1b2f09e145e054da76 (patch) | |
tree | 1842c3c1659413ec74ecd71c25d6e5b0da9e93bd /libsylph/prefs_common.h | |
parent | 062a82490dc43a6f2709f21e04a2e2a10b85fb18 (diff) |
modified the order of common prefs options.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@766 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/prefs_common.h')
-rw-r--r-- | libsylph/prefs_common.h | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/libsylph/prefs_common.h b/libsylph/prefs_common.h index 761ec691..71305bcb 100644 --- a/libsylph/prefs_common.h +++ b/libsylph/prefs_common.h @@ -47,11 +47,6 @@ typedef enum { struct _PrefsCommon { /* Receive */ - gboolean use_extinc; - gchar *extinc_cmd; - gboolean inc_local; - gboolean filter_on_inc; - gchar *spool_path; gboolean scan_all_after_inc; gboolean autochk_newmail; gint autochk_itv; @@ -59,9 +54,11 @@ struct _PrefsCommon gboolean enable_newmsg_notify; gchar *newmsg_notify_cmd; + gboolean inc_local; + gboolean filter_on_inc; + gchar *spool_path; + /* Send */ - gboolean use_extsend; - gchar *extsend_cmd; gboolean savemsg; gboolean filter_sent; gchar *outgoing_charset; @@ -178,6 +175,7 @@ struct _PrefsCommon gboolean resize_image; gboolean inline_image; + /* Encoding */ gchar *force_charset; gchar *default_encoding; @@ -217,15 +215,12 @@ struct _PrefsCommon gboolean mark_as_read_on_new_window; gboolean open_inbox_on_inc; gboolean immediate_exec; - RecvDialogMode recv_dialog_mode; - gboolean no_recv_err_panel; - gboolean close_recv_dialog; gboolean comply_gnome_hig; /* Other */ - gchar *uri_cmd; - gchar *print_cmd; - gchar *ext_editor_cmd; + RecvDialogMode recv_dialog_mode; + gboolean no_recv_err_panel; + gboolean close_recv_dialog; gboolean add_address_by_click; @@ -236,6 +231,16 @@ struct _PrefsCommon gint logwin_line_limit; + /* External commands */ + gchar *uri_cmd; + gchar *print_cmd; + gchar *ext_editor_cmd; + + gboolean use_extinc; + gchar *extinc_cmd; + gboolean use_extsend; + gchar *extsend_cmd; + /* Advanced */ gboolean strict_cache_check; gint io_timeout_secs; |