diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-06-26 23:42:01 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-06-26 23:42:01 +0800 |
commit | 9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3 (patch) | |
tree | 2719aa6b6bfa5eb78537dc384051687640cd7ac7 /my-evolution/e-summary.h | |
parent | 6f679c6c889771b0ca773cf90d2bfde4afd164ee (diff) | |
download | gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.tar gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.tar.gz gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.tar.bz2 gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.tar.lz gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.tar.xz gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.tar.zst gsoc2013-evolution-9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3.zip |
Fix bugs, make the folder list be a storage set view and add a delete url button
svn path=/trunk/; revision=17290
Diffstat (limited to 'my-evolution/e-summary.h')
-rw-r--r-- | my-evolution/e-summary.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/my-evolution/e-summary.h b/my-evolution/e-summary.h index 4ee9d7f98c..33e70da868 100644 --- a/my-evolution/e-summary.h +++ b/my-evolution/e-summary.h @@ -44,6 +44,7 @@ typedef struct _ESummaryPrivate ESummaryPrivate; typedef struct _ESummaryClass ESummaryClass; +typedef struct _ESummaryPrefsFolder ESummaryPrefsFolder; typedef struct _ESummaryPrefs ESummaryPrefs; typedef struct _ESummaryConnection ESummaryConnection; typedef struct _ESummaryConnectionData ESummaryConnectionData; @@ -77,10 +78,15 @@ struct _ESummaryConnectionData { char *type; }; +struct _ESummaryPrefsFolder { + char *physical_uri; + char *evolution_uri; +}; + struct _ESummaryPrefs { /* Mail */ - GList *display_folders; + GList *display_folders; /* List of ESummaryPrefsFolder */ gboolean show_full_path; /* RDF */ @@ -153,6 +159,7 @@ void e_summary_add_protocol_listener (ESummary *summary, void *closure); void e_summary_reconfigure (ESummary *summary); +void e_summary_reconfigure_all (void); int e_summary_count_connections (ESummary *summary); GList *e_summary_add_connections (ESummary *summary); |