From 5a2e01a7af2f63f01ce96c6f82fd66bdbb7f9cea Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 28 Feb 2001 03:32:47 +0000 Subject: Added e-sorter.lo and e-selection-model.lo. 2001-02-27 Christopher James Lahey * gal/Makefile.am: Added e-sorter.lo and e-selection-model.lo. * gal/util/Makefile.am: Added e-sorter.c and e-sorter.h. * gal/util/e-sorter.c, gal/util/e-sorter.h: New class. This is a new simple virtual class for use with ESelectionModel. It implements the same set of methods as ETableSorter but the default behavior is as if the sorting was a no-op. * gal/widgets/Makefile.am: Added e-selection-model.c and e-selection-model.h. * gal/widgets/e-selection-model.c, gal/widgets/e-selection-model.h: New class. Implements all of the semantics of ETableSelectionModel except for the connection to the ETableModel. svn path=/trunk/; revision=8421 --- e-util/e-sorter.h | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 e-util/e-sorter.h (limited to 'e-util/e-sorter.h') diff --git a/e-util/e-sorter.h b/e-util/e-sorter.h new file mode 100644 index 0000000000..fa6c5bbc60 --- /dev/null +++ b/e-util/e-sorter.h @@ -0,0 +1,59 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +#ifndef _E_SORTER_H_ +#define _E_SORTER_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#define E_SORTER_TYPE (e_sorter_get_type ()) +#define E_SORTER(o) (GTK_CHECK_CAST ((o), E_SORTER_TYPE, ESorter)) +#define E_SORTER_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_SORTER_TYPE, ESorterClass)) +#define E_IS_SORTER(o) (GTK_CHECK_TYPE ((o), E_SORTER_TYPE)) +#define E_IS_SORTER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_SORTER_TYPE)) + +typedef struct { + GtkObject base; +} ESorter; + +typedef struct { + GtkObjectClass parent_class; + gint (*model_to_sorted) (ESorter *sorter, + int row); + gint (*sorted_to_model) (ESorter *sorter, + int row); + + void (*get_model_to_sorted_array) (ESorter *sorter, + int **array, + int *count); + void (*get_sorted_to_model_array) (ESorter *sorter, + int **array, + int *count); + + gboolean (*needs_sorting) (ESorter *sorter); +} ESorterClass; + +GtkType e_sorter_get_type (void); +ESorter *e_sorter_new (void); + +gint e_sorter_model_to_sorted (ESorter *sorter, + int row); +gint e_sorter_sorted_to_model (ESorter *sorter, + int row); + +void e_sorter_get_model_to_sorted_array (ESorter *sorter, + int **array, + int *count); +void e_sorter_get_sorted_to_model_array (ESorter *sorter, + int **array, + int *count); + +gboolean e_sorter_needs_sorting (ESorter *sorter); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* _E_SORTER_H_ */ -- cgit