diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-03-20 12:51:11 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-03-20 12:51:11 +0800 |
commit | 79aed0f7f042554d54c1504f7401624163499c36 (patch) | |
tree | ff1f5bb3cad92531c8ca332689ddde7466b98b45 /widgets/misc/e-selection-model.h | |
parent | 68a731e0a02290edf039d419bc36582023624726 (diff) | |
download | gsoc2013-evolution-79aed0f7f042554d54c1504f7401624163499c36.tar.gz gsoc2013-evolution-79aed0f7f042554d54c1504f7401624163499c36.tar.zst gsoc2013-evolution-79aed0f7f042554d54c1504f7401624163499c36.zip |
Upped the version number to 0.5.99.4.
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* configure.in: Upped the version number to 0.5.99.4.
* Merged branch:
2001-03-18 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/e-selection-model.c,
gal/widgets/e-selection-model.h: Added another semi-private
function (e_selection_model_change_cursor.)
2001-03-18 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/e-selection-model.c,
gal/widgets/e-selection-model.h: Added a couple of semi-private
functions (e_selection_model_change_one_row and
e_selection_model_confirm_row_count.)
2001-03-18 Christopher James Lahey <clahey@ximian.com>
* tests/test-tree-1.c, tests/test-tree-3.c: Added arguments for
e_tree_memory_callbacks_new of get_save_id and has_save_id to
NULL.
2001-03-17 Christopher James Lahey <clahey@ximian.com>
* gal/util/e-util.c (e_sort): Switched to just using qsort
directly here.
2001-03-17 Christopher James Lahey <clahey@ximian.com>
* gal/util/e-util.c, gal/util/e-util.h (e_bsearch, e_sort): Added e_sort and
e_bsearch. They both take a closure. e_sort guarantees a stable
sort. e_bsearch returns the range of matching elements including
the position where an object would be if there are no matching
elements.
2001-03-16 Christopher James Lahey <clahey@ximian.com>
* gal/Makefile.am (libgal_la_LIBADD): Added e-tree-sorted.lo.
2001-03-14 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/e-selection-model-simple.c,
gal/widgets/e-selection-model-simple.h: Replaced the methods
insert_row and delete_row with insert_rows and delete_rows.
* gal/widgets/e-selection-model.c,
gal/widgets/e-selection-model.h: Replaced the methods insert_row
and delete_row with insert_rows and delete_rows.
2001-03-08 Christopher James Lahey <clahey@ximian.com>
* Makefile.am: Added e-table/e-table-utils.lo,
e-table/e-tree-memory-callbacks.lo, e-table/e-tree-memory.lo,
e-table/e-tree-scrolled.lo, e-table/e-tree-table-adapter.lo, and
e-table/e-tree.lo. Removed e-table/e-tree-simple.lo.
* gal/util/e-util.c, gal/util/e-util.h: Added a whole bunch of
e_marshal functions for ETree.
* tests/test-tree-1.c, tests/test-tree-3.c: Reworked these to use
the new tree stuff.
End of branch
svn path=/trunk/; revision=8840
Diffstat (limited to 'widgets/misc/e-selection-model.h')
-rw-r--r-- | widgets/misc/e-selection-model.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/widgets/misc/e-selection-model.h b/widgets/misc/e-selection-model.h index 74cbcb50d2..5ba0411587 100644 --- a/widgets/misc/e-selection-model.h +++ b/widgets/misc/e-selection-model.h @@ -65,7 +65,6 @@ typedef struct { } ESelectionModelClass; GtkType e_selection_model_get_type (void); - gboolean e_selection_model_is_row_selected (ESelectionModel *selection, gint n); void e_selection_model_foreach (ESelectionModel *selection, @@ -87,13 +86,21 @@ void e_selection_model_select_all (ESelectionModel *selection); void e_selection_model_invert_selection (ESelectionModel *selection); /* Private Functions */ -void e_selection_model_insert_row (ESelectionModel *esm, - int row); -void e_selection_model_delete_row (ESelectionModel *esm, - int row); +void e_selection_model_insert_rows (ESelectionModel *esm, + int row, + int count); +void e_selection_model_delete_rows (ESelectionModel *esm, + int row, + int count); void e_selection_model_move_row (ESelectionModel *esm, int old_row, int new_row); +void e_selection_model_change_one_row (ESelectionModel *esm, + int row, + gboolean on); +void e_selection_model_change_cursor (ESelectionModel *esm, + int row); +gboolean e_selection_model_confirm_row_count (ESelectionModel *esm); /* Virtual Function */ gint e_selection_model_get_row_count (ESelectionModel *esm); |