aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-shown.h
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2002-06-26 23:42:01 +0800
committerIain Holmes <iain@src.gnome.org>2002-06-26 23:42:01 +0800
commit9a210db24ffc2e0d806c5afda8cf3b471aa4d5c3 (patch)
tree2719aa6b6bfa5eb78537dc384051687640cd7ac7 /my-evolution/e-summary-shown.h
parent6f679c6c889771b0ca773cf90d2bfde4afd164ee (diff)
downloadgsoc2013-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-shown.h')
-rw-r--r--my-evolution/e-summary-shown.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/my-evolution/e-summary-shown.h b/my-evolution/e-summary-shown.h
index af9684c671..739e773a0f 100644
--- a/my-evolution/e-summary-shown.h
+++ b/my-evolution/e-summary-shown.h
@@ -44,6 +44,8 @@ typedef struct _ESummaryShownModelEntry {
gboolean showable;
int ref_count;
+
+ gpointer data;
} ESummaryShownModelEntry;
struct _ESummaryShown {
@@ -58,6 +60,8 @@ struct _ESummaryShownClass {
GtkHBoxClass parent_class;
void (* item_changed) (ESummaryShown *shown);
+ void (* selection_changed) (ESummaryShown *shown,
+ GList *rows);
};
GtkType e_summary_shown_get_type (void);
@@ -71,4 +75,6 @@ ETreePath e_summary_shown_add_node (ESummaryShown *shown,
void e_summary_shown_remove_node (ESummaryShown *shown,
gboolean all,
ESummaryShownModelEntry *entry);
+GList *e_summary_shown_get_selection (ESummaryShown *shown,
+ gboolean all);
#endif