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
56 lines
1.7 KiB
C
56 lines
1.7 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _E_TABLE_SELECTION_MODEL_H_
|
|
#define _E_TABLE_SELECTION_MODEL_H_
|
|
|
|
#include <gtk/gtkobject.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>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#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))
|
|
#define E_TABLE_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_SELECTION_MODEL_TYPE, ETableSelectionModelClass))
|
|
#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 {
|
|
ESelectionModelArray base;
|
|
|
|
ETableModel *model;
|
|
|
|
guint model_pre_change_id;
|
|
guint model_changed_id;
|
|
guint model_row_changed_id;
|
|
guint model_cell_changed_id;
|
|
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;
|
|
|
|
GHashTable *hash;
|
|
gchar *cursor_id;
|
|
} ETableSelectionModel;
|
|
|
|
typedef struct {
|
|
ESelectionModelArrayClass parent_class;
|
|
} ETableSelectionModelClass;
|
|
|
|
GtkType e_table_selection_model_get_type (void);
|
|
ETableSelectionModel *e_table_selection_model_new (void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* _E_TABLE_SELECTION_MODEL_H_ */
|