diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-30 05:34:13 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-30 05:34:13 +0800 |
commit | b096d8f5c3c547572ccd37f6341fedf876ba62d7 (patch) | |
tree | 043c57804a08d4e618307632b540045d61f78b62 /shell/e-storage-set-view.h | |
parent | 1a717e48de0ecb615c94e0389b48897210ce8ec9 (diff) | |
download | gsoc2013-evolution-b096d8f5c3c547572ccd37f6341fedf876ba62d7.tar.gz gsoc2013-evolution-b096d8f5c3c547572ccd37f6341fedf876ba62d7.tar.zst gsoc2013-evolution-b096d8f5c3c547572ccd37f6341fedf876ba62d7.zip |
Added these functions. Implemented checkboxes in the ETreeModel here.
2002-04-29 Christopher James Lahey <clahey@ximian.com>
* e-storage-set-view.c (e_storage_set_view_set_checkboxes_list,
e_storage_set_view_get_checkboxes_list): Added these functions.
Implemented checkboxes in the ETreeModel here.
svn path=/trunk/; revision=16637
Diffstat (limited to 'shell/e-storage-set-view.h')
-rw-r--r-- | shell/e-storage-set-view.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/e-storage-set-view.h b/shell/e-storage-set-view.h index ff074ce30b..04f08f4b03 100644 --- a/shell/e-storage-set-view.h +++ b/shell/e-storage-set-view.h @@ -92,6 +92,11 @@ void e_storage_set_view_set_show_checkboxes (EStorageSetView *storage_set gboolean show); gboolean e_storage_set_view_get_show_checkboxes (EStorageSetView *storage_set_view); +void e_storage_set_view_set_checkboxes_list (EStorageSetView *storage_set_view, + GList *checkboxes); +/* g_list_free this list, but don't free the strings within. */ +GList *e_storage_set_view_get_checkboxes_list (EStorageSetView *storage_set_view); + void e_storage_set_view_set_allow_dnd (EStorageSetView *storage_set_view, gboolean allow_dnd); gboolean e_storage_set_view_get_allow_dnd (EStorageSetView *storage_set_view); |