aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-selection-model.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-07-26 05:30:25 +0800
committerChris Lahey <clahey@src.gnome.org>2000-07-26 05:30:25 +0800
commitd6c66f72e7174af586496b8dfdbcc252f753864a (patch)
tree116440f8100c516de3d617b5d44bf73569bfee39 /widgets/table/e-table-selection-model.h
parentfc661fb23aee42e87370886a17ed9373388d7493 (diff)
downloadgsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.tar
gsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.tar.gz
gsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.tar.bz2
gsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.tar.lz
gsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.tar.xz
gsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.tar.zst
gsoc2013-evolution-d6c66f72e7174af586496b8dfdbcc252f753864a.zip
Added e-table-selection-model.c and e-table-selection-model.h.
2000-07-25 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-table-selection-model.c and e-table-selection-model.h. * e-table-selection-model.c: Added the get_selection_list and is_row_selected functions. Removed some unused code. * e-table-selection-model.h: Removed some unused code. svn path=/trunk/; revision=4331
Diffstat (limited to 'widgets/table/e-table-selection-model.h')
-rw-r--r--widgets/table/e-table-selection-model.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/widgets/table/e-table-selection-model.h b/widgets/table/e-table-selection-model.h
index 7fb6158ad2..a36f4ca03c 100644
--- a/widgets/table/e-table-selection-model.h
+++ b/widgets/table/e-table-selection-model.h
@@ -3,6 +3,7 @@
#define _E_TABLE_SELECTION_MODEL_H_
#include <gtk/gtkobject.h>
+#include "widgets/e-table/e-table-model.h"
#define E_TABLE_SELECTION_MODEL_TYPE (e_table_selection_model_get_type ())
#define E_TABLE_SELECTION_MODEL(o) (GTK_CHECK_CAST ((o), E_TABLE_SELECTION_MODEL_TYPE, ETableSelectionModel))
@@ -10,13 +11,6 @@
#define E_IS_TABLE_SELECTION_MODEL(o) (GTK_CHECK_TYPE ((o), E_TABLE_SELECTION_MODEL_TYPE))
#define E_IS_TABLE_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_SELECTION_MODEL_TYPE))
-typedef struct _ETableSortColumn ETableSortColumn;
-
-struct _ETableSortColumn {
- guint column : 31;
- guint ascending : 1;
-};
-
typedef struct {
GtkObject base;
@@ -42,8 +36,10 @@ typedef struct {
/*
* Signals
*/
+#if 0
void (*selection_model_changed) (ETableSelectionModel *selection);
void (*group_model_changed) (ETableSelectionModel *selection);
+#endif
} ETableSelectionModelClass;
GtkType e_table_selection_model_get_type (void);