diff options
author | Peter Williams <peterw@ximian.com> | 2001-06-28 05:11:34 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-06-28 05:11:34 +0800 |
commit | 6fa46ef11d80a615733338bfe1f76acaef5eab48 (patch) | |
tree | 4bd3d8d04537d46a2163d5bf9f45b9e92d398483 /widgets/table/e-tree.h | |
parent | 780e047c0471ed396ac6ac7f2534fa81034a581f (diff) | |
download | gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.tar gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.tar.gz gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.tar.bz2 gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.tar.lz gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.tar.xz gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.tar.zst gsoc2013-evolution-6fa46ef11d80a615733338bfe1f76acaef5eab48.zip |
Bump version number due to incompatible changes in ETree.
2001-06-27 Peter Williams <peterw@ximian.com>
* configure.in: Bump version number due to incompatible changes
in ETree.
gal/e-table:
2001-06-27 Peter Williams <peterw@ximian.com>
* e-tree-selection-model.c (e_tree_selection_model_add_to_selection): New function,
heavily based on select_single_row.
* e-tree-selection-model.h: Added prototype;
* e-tree.c (e_tree_get_model): New accessor function.
(e_tree_get_selection_model): Same.
(e_tree_selected_count, e_tree_select_all, e_tree_invert_select): Removed. With
the accessors these become pointless.
* e-tree.h: Prototype the functions above. Remove a few functions that
don't make sense anymore.
svn path=/trunk/; revision=10543
Diffstat (limited to 'widgets/table/e-tree.h')
-rw-r--r-- | widgets/table/e-tree.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/widgets/table/e-tree.h b/widgets/table/e-tree.h index 7ad9873d8b..8034d43c95 100644 --- a/widgets/table/e-tree.h +++ b/widgets/table/e-tree.h @@ -181,6 +181,9 @@ void e_tree_get_cell_geometry (ETree *tree, int *width_return, int *height_return); +/* Useful accessors */ +ETreeModel * e_tree_get_model (ETree *et); +ESelectionModel *e_tree_get_selection_model (ETree *et); /* Drag & drop stuff. */ /* Target */ @@ -226,12 +229,7 @@ GdkDragContext *e_tree_drag_begin (ETree *tree, GtkTargetList *targets, GdkDragAction actions, gint button, - GdkEvent *event); - -/* selection stuff */ -void e_tree_select_all (ETree *tree); -void e_tree_invert_selection (ETree *tree); - + GdkEvent *event); /* Adapter functions */ gboolean e_tree_node_is_expanded (ETree *et, |