aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-selection-model.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-03-25 16:17:15 +0800
committerChris Lahey <clahey@src.gnome.org>2001-03-25 16:17:15 +0800
commit1190e292f4e32be10c45ffd92e36eb62e8592a53 (patch)
tree51b03058290b93f1a416764c36b6159cc778723f /widgets/table/e-table-selection-model.h
parent2ed07fe856571d969c17c944e1fdb16740252b95 (diff)
downloadgsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.tar
gsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.tar.gz
gsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.tar.bz2
gsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.tar.lz
gsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.tar.xz
gsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.tar.zst
gsoc2013-evolution-1190e292f4e32be10c45ffd92e36eb62e8592a53.zip
Added e-selection-model-array.lo.
2001-03-25 Christopher James Lahey <clahey@ximian.com> * gal/Makefile.am (libgal_la_LIBADD): Added e-selection-model-array.lo. * gal/widgets/Makefile.am: Added e-selection-model-array.c and e-selection-model-array.h. * gal/widgets/e-selection-model-array.c, gal/widgets/e-selection-model-array.h: New class that implements the details of ESelectionModel. ESelectionModel has been refactored to just be a this virtual class. ESelectionModelArray is the original implementation of ESelectionModel. This is what most people will want to use or derive from. * gal/widgets/e-selection-model-simple.c, gal/widgets/e-selection-model-simple.h: Made the parent class of this be ESelectionModelArray instead of ESelectionModel. Changed some function names to match this change. * gal/widgets/e-selection-model.c, gal/widgets/e-selection-model.h: Refactored most of the implementation of this class into ESelectionModelArray. Now just a thin virtual class. From gal/e-table/ChangeLog: 2001-03-25 Christopher James Lahey <clahey@ximian.com> * e-table-selection-model.c, e-table-selection-model.h: Made the parent object of this be ESelectionModelArray instead of ESelectionModel due to their refactoring. Changed the commented out code for saving the selection a bit. svn path=/trunk/; revision=8924
Diffstat (limited to 'widgets/table/e-table-selection-model.h')
-rw-r--r--widgets/table/e-table-selection-model.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/widgets/table/e-table-selection-model.h b/widgets/table/e-table-selection-model.h
index 02b1949257..94eaf2bb94 100644
--- a/widgets/table/e-table-selection-model.h
+++ b/widgets/table/e-table-selection-model.h
@@ -3,7 +3,7 @@
#define _E_TABLE_SELECTION_MODEL_H_
#include <gtk/gtkobject.h>
-#include <gal/widgets/e-selection-model.h>
+#include <gal/widgets/e-selection-model-array.h>
#include <gal/e-table/e-table-model.h>
#include <gal/e-table/e-table-defines.h>
#include <gal/e-table/e-table-sorter.h>
@@ -19,7 +19,7 @@ extern "C" {
#define E_IS_TABLE_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_SELECTION_MODEL_TYPE))
typedef struct {
- ESelectionModel base;
+ ESelectionModelArray base;
ETableModel *model;
@@ -30,6 +30,8 @@ typedef struct {
guint model_rows_inserted_id;
guint model_rows_deleted_id;
+ guint model_changed_idle_id;
+
guint frozen : 1;
guint selection_model_changed : 1;
guint group_info_changed : 1;
@@ -39,7 +41,7 @@ typedef struct {
} ETableSelectionModel;
typedef struct {
- ESelectionModelClass parent_class;
+ ESelectionModelArrayClass parent_class;
} ETableSelectionModelClass;
GtkType e_table_selection_model_get_type (void);