2000-10-04 Not Zed <NotZed@HelixCode.com> * e-table-sorted-variable.c (etsv_add): Changed to take into account the sort group, if the table has one.x (etsv_insert_idle): Clear the insert count if we hit an idle loop. (etsv_sort_idle): Reset the insert count if we perform a sort. (etsv_add): If we are adding a lot (>ETSV_INSERT_MAX) items, without hitting an idle loop, assume we're better off performing a sort instead. Use another idle handler to reset the count. 2000-10-03 Not Zed <NotZed@HelixCode.com> * e-table-sorted-variable.c (etsv_sort_by_group): Sort based on the sort_group stuff. * e-tree-model.c (e_tree_init): Setup the group sort info string. (etree_destroy): And free it. (build_sort_group): Build a string for this node. 2000-09-29 Not Zed <NotZed@HelixCode.com> * e-cell-tree.c (e_cell_tree_get_node): Changed to take the source model, not the tree model. The source model may be a subset, and it needs to remap the rows for us. (ect_draw): (ect_event): (ect_max_width): (ect_print): Changed callers. * e-table-sorted-variable.c (etsv_sort_subset): (etsv_sort_build_subset): (etsv_sort_free_subset): Functions to perfom grouping of sorts for sorts that have row_sort_group returning useful info. (etsv_sort): Use the complex sort routines if we need to. * e-table-model.c (e_table_model_row_sort_group): Return a sort-id for a given row. (e_table_model_has_sort_group): Return if the sort-id provides any useful information. svn path=/trunk/; revision=5705
96 lines
4.3 KiB
C
96 lines
4.3 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _E_TABLE_MODEL_H_
|
|
#define _E_TABLE_MODEL_H_
|
|
|
|
#include <gtk/gtkobject.h>
|
|
|
|
#define E_TABLE_MODEL_TYPE (e_table_model_get_type ())
|
|
#define E_TABLE_MODEL(o) (GTK_CHECK_CAST ((o), E_TABLE_MODEL_TYPE, ETableModel))
|
|
#define E_TABLE_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_MODEL_TYPE, ETableModelClass))
|
|
#define E_IS_TABLE_MODEL(o) (GTK_CHECK_TYPE ((o), E_TABLE_MODEL_TYPE))
|
|
#define E_IS_TABLE_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_MODEL_TYPE))
|
|
|
|
typedef struct {
|
|
GtkObject base;
|
|
} ETableModel;
|
|
|
|
typedef struct {
|
|
GtkObjectClass parent_class;
|
|
|
|
/*
|
|
* Virtual methods
|
|
*/
|
|
int (*column_count) (ETableModel *etm);
|
|
int (*row_count) (ETableModel *etm);
|
|
void *(*value_at) (ETableModel *etm, int col, int row);
|
|
void (*set_value_at) (ETableModel *etm, int col, int row, const void *value);
|
|
gboolean (*is_cell_editable) (ETableModel *etm, int col, int row);
|
|
void (*append_row) (ETableModel *etm, ETableModel *source, int row);
|
|
|
|
/* the sort group id for this row */
|
|
const char *(*row_sort_group) (ETableModel *etm, int row);
|
|
gboolean (*has_sort_group) (ETableModel *etm);
|
|
|
|
/* Allocate a copy of the given value. */
|
|
void *(*duplicate_value) (ETableModel *etm, int col, const void *value);
|
|
/* Free an allocated value. */
|
|
void (*free_value) (ETableModel *etm, int col, void *value);
|
|
/* Return an allocated empty value. */
|
|
void *(*initialize_value) (ETableModel *etm, int col);
|
|
/* Return TRUE if value is equivalent to an empty cell. */
|
|
gboolean (*value_is_empty) (ETableModel *etm, int col, const void *value);
|
|
/* Return an allocated string. */
|
|
char *(*value_to_string) (ETableModel *etm, int col, const void *value);
|
|
|
|
/*
|
|
* Signals
|
|
*/
|
|
|
|
/*
|
|
* These all come after the change has been made.
|
|
* Major structural changes: model_changed
|
|
* Changes only in a row: row_changed
|
|
* Only changes in a cell: cell_changed
|
|
* A row inserted: row_inserted
|
|
* A row deleted: row_deleted
|
|
*/
|
|
void (*model_pre_change) (ETableModel *etm);
|
|
|
|
void (*model_changed) (ETableModel *etm);
|
|
void (*model_row_changed) (ETableModel *etm, int row);
|
|
void (*model_cell_changed) (ETableModel *etm, int col, int row);
|
|
void (*model_row_inserted) (ETableModel *etm, int row);
|
|
void (*model_row_deleted) (ETableModel *etm, int row);
|
|
} ETableModelClass;
|
|
|
|
GtkType e_table_model_get_type (void);
|
|
|
|
int e_table_model_column_count (ETableModel *e_table_model);
|
|
const char *e_table_model_column_name (ETableModel *e_table_model, int col);
|
|
int e_table_model_row_count (ETableModel *e_table_model);
|
|
void *e_table_model_value_at (ETableModel *e_table_model, int col, int row);
|
|
void e_table_model_set_value_at (ETableModel *e_table_model, int col, int row, const void *value);
|
|
gboolean e_table_model_is_cell_editable (ETableModel *e_table_model, int col, int row);
|
|
void e_table_model_append_row (ETableModel *e_table_model, ETableModel *source, int row);
|
|
|
|
const char *e_table_model_row_sort_group (ETableModel *e_table_model, int row);
|
|
gboolean e_table_model_has_sort_group (ETableModel *e_table_model);
|
|
|
|
void *e_table_model_duplicate_value (ETableModel *e_table_model, int col, const void *value);
|
|
void e_table_model_free_value (ETableModel *e_table_model, int col, void *value);
|
|
void *e_table_model_initialize_value (ETableModel *e_table_model, int col);
|
|
gboolean e_table_model_value_is_empty (ETableModel *e_table_model, int col, const void *value);
|
|
char *e_table_model_value_to_string (ETableModel *e_table_model, int col, const void *value);
|
|
|
|
/*
|
|
* Routines for emitting signals on the e_table
|
|
*/
|
|
void e_table_model_pre_change (ETableModel *e_table_model);
|
|
void e_table_model_changed (ETableModel *e_table_model);
|
|
void e_table_model_row_changed (ETableModel *e_table_model, int row);
|
|
void e_table_model_cell_changed (ETableModel *e_table_model, int col, int row);
|
|
void e_table_model_row_inserted (ETableModel *e_table_model, int row);
|
|
void e_table_model_row_deleted (ETableModel *e_table_model, int row);
|
|
|
|
#endif /* _E_TABLE_MODEL_H_ */
|