From 60b04c2ac577a4139bd388f38c6c335bf262de61 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 4 Oct 2000 21:40:08 +0000 Subject: Select all elements of the etable. 2000-10-04 Jeffrey Stedfast * e-table-selection-model.c (e_table_selection_model_select_all): Select all elements of the etable. (e_table_selection_model_invert_selection): Invert the current selection. * e-table.c (e_table_select_all): New convenience function to select all elements in an e-table. (e_table_invert_selection): New convenience function to invert the current selection in an e-table. svn path=/trunk/; revision=5719 --- widgets/table/e-table.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'widgets/table/e-table.h') diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h index b3a2805fed..5b71fa82c2 100644 --- a/widgets/table/e-table.h +++ b/widgets/table/e-table.h @@ -247,6 +247,10 @@ GdkDragContext *e_table_drag_begin (ETable *table, gint button, GdkEvent *event); +/* selection stuff */ +void e_table_select_all (ETable *table); +void e_table_invert_selection (ETable *table); + END_GNOME_DECLS #endif /* _E_TABLE_H_ */ -- cgit