From 32c3d29bbc14cc1d4c054eb9d6538b0199e90c61 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 26 Jul 2000 20:33:39 +0000 Subject: Added "table_selection_model" argument. Removed foreach function and 2000-07-26 Christopher James Lahey * e-table-group-container.c, e-table-group-container.h, e-table-group-leaf.c, e-table-group-leaf.h: Added "table_selection_model" argument. Removed foreach function and selection notification. * e-table-group.c, e-table-group.h: Removed foreach function and selection notification. * e-table-header.c: Fixed header width calculation to include the last column. * e-table-item.c, e-table-item.h: Fixed this to use the new selection model. * e-table-scrolled.c, e-table-scrolled.h: Removed selection notification. * e-table-selection-model.c, e-table-selection-model.h: Finished notification signals and fixed a bunch of bit manipulations. Implemented do_something method. * e-table.c, e-table.h: Create an ETableSelectionModel and use it properly. svn path=/trunk/; revision=4363 --- widgets/table/e-table-selection-model.h | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) (limited to 'widgets/table/e-table-selection-model.h') diff --git a/widgets/table/e-table-selection-model.h b/widgets/table/e-table-selection-model.h index 2aaba021f8..251b1ceb00 100644 --- a/widgets/table/e-table-selection-model.h +++ b/widgets/table/e-table-selection-model.h @@ -19,13 +19,14 @@ typedef struct { gint row_count; guint32 *selection; - + gint cursor_row; gint cursor_col; + gint selection_start_row; guint model_changed_id; guint model_row_inserted_id, model_row_deleted_id; - + guint frozen : 1; guint selection_model_changed : 1; guint group_info_changed : 1; @@ -37,20 +38,26 @@ typedef struct { /* * Signals */ -#if 0 - void (*selection_model_changed) (ETableSelectionModel *selection); - void (*group_model_changed) (ETableSelectionModel *selection); -#endif + + void (*cursor_changed) (ETableSelectionModel *selection, int row, int col); + void (*selection_changed) (ETableSelectionModel *selection); + } ETableSelectionModelClass; GtkType e_table_selection_model_get_type (void); -gboolean e_table_selection_model_is_row_selected (ETableSelectionModel *selection, - guint n); -void e_table_selection_model_foreach (ETableSelectionModel *selection, - ETableForeachFunc callback, - gpointer closure); +gboolean e_table_selection_model_is_row_selected (ETableSelectionModel *selection, + gint n); +void e_table_selection_model_foreach (ETableSelectionModel *selection, + ETableForeachFunc callback, + gpointer closure); + +void e_table_selection_model_do_something (ETableSelectionModel *selection, + guint row, + guint col, + gboolean shift_p, + gboolean ctrl_p); -ETableSelectionModel *e_table_selection_model_new (void); +ETableSelectionModel *e_table_selection_model_new (void); #endif /* _E_TABLE_SELECTION_MODEL_H_ */ -- cgit