2000-02-24 Christopher James Lahey <clahey@helixcode.com> * test-table.c: Added duplicate_value and add_value. Use the new compare functions. Made it so we only create one model to better test model view stuff. Changed the test to not have as many extra, useless, columns. * test-cols.c, test-check.c: Added duplicate_value and add_value. Use the new compare functions. * e-table.c, e-table.h: Use all the new features of e-table-groups (sorting and grouping). Handle on the fly reorganization of groups in an idle loop. Compare functions now are to return -1 if the first item is greater, 0 if they are equal, or 1 if the second item is greater. * e-table-subset.c, e-table-subset.h: Made e-table-subset disconnect properly from its signals when it dies. * e-table-subset-variable.c, e-table-subset-variable.h: Virtualized the add and remove commands so that e_table_sorted_variable could override the add command to do sorting. * e-table-sorted.c: Fixed this to inherit properly from ETableSubset. * e-table-simple.h, e-table-simple.c: Added handling of duplicate_value and free_value; * e-table-model.c, e-table-model.h: Added duplicate_value and free_value for memory allocation of table elements outside the table. * e-table-item.c: Fixed a crashing bug. * e-table-group.c: Added sorting. Fixed destruction to delete the right things. * e-table-group-leaf.c, e-table-group-leaf.h: Pass column and sort order information into the e_table_sorted_variable. Properly destroy things when deleted. * e-table-group-container.c, e-table-group-container.h: Properly handle the list of subgroups. Handle proper sorting and grouping of subgroups. * e-table-sorted-variable.c, e-table-sorted-variable.h: Files to do a sorted model that stays sorted as you add and remove rows. * Makefile.am: Added e-table-sorted-variable.c and e-table-sorted-variable.h. svn path=/trunk/; revision=1930
221 lines
5.5 KiB
C
221 lines
5.5 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* E-table-subset.c: Implements a table that contains a subset of another table.
|
|
*
|
|
* Author:
|
|
* Miguel de Icaza (miguel@gnu.org)
|
|
*
|
|
* (C) 1999 Helix Code, Inc.
|
|
*/
|
|
#include <config.h>
|
|
#include <stdlib.h>
|
|
#include <gtk/gtksignal.h>
|
|
#include "e-util/e-util.h"
|
|
#include "e-table-subset.h"
|
|
|
|
#define PARENT_TYPE E_TABLE_MODEL_TYPE
|
|
|
|
static ETableModelClass *etss_parent_class;
|
|
|
|
static void
|
|
etss_destroy (GtkObject *object)
|
|
{
|
|
ETableSubset *etss = E_TABLE_SUBSET (object);
|
|
|
|
if (etss->source)
|
|
gtk_object_unref (GTK_OBJECT (etss->source));
|
|
|
|
gtk_signal_disconnect (GTK_OBJECT (etss->source),
|
|
etss->table_model_changed_id);
|
|
gtk_signal_disconnect (GTK_OBJECT (etss->source),
|
|
etss->table_model_row_changed_id);
|
|
gtk_signal_disconnect (GTK_OBJECT (etss->source),
|
|
etss->table_model_cell_changed_id);
|
|
|
|
etss->table_model_changed_id = 0;
|
|
etss->table_model_row_changed_id = 0;
|
|
etss->table_model_cell_changed_id = 0;
|
|
|
|
if (etss->map_table)
|
|
free (etss->map_table);
|
|
|
|
GTK_OBJECT_CLASS (etss_parent_class)->destroy (object);
|
|
}
|
|
|
|
static int
|
|
etss_column_count (ETableModel *etm)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
return e_table_model_column_count (etss->source);
|
|
}
|
|
|
|
static int
|
|
etss_row_count (ETableModel *etm)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
return etss->n_map;
|
|
}
|
|
|
|
static void *
|
|
etss_value_at (ETableModel *etm, int col, int row)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
return e_table_model_value_at (etss->source, col, etss->map_table [row]);
|
|
}
|
|
|
|
static void
|
|
etss_set_value_at (ETableModel *etm, int col, int row, const void *val)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
return e_table_model_set_value_at (etss->source, col, etss->map_table [row], val);
|
|
}
|
|
|
|
static gboolean
|
|
etss_is_cell_editable (ETableModel *etm, int col, int row)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
return e_table_model_is_cell_editable (etss->source, col, etss->map_table [row]);
|
|
}
|
|
|
|
static void *
|
|
etss_duplicate_value (ETableModel *etm, int col, const void *value)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
return e_table_model_duplicate_value (etss->source, col, value);
|
|
}
|
|
|
|
static void
|
|
etss_free_value (ETableModel *etm, int col, void *value)
|
|
{
|
|
ETableSubset *etss = (ETableSubset *)etm;
|
|
|
|
e_table_model_free_value (etss->source, col, value);
|
|
}
|
|
|
|
static void
|
|
etss_thaw (ETableModel *etm)
|
|
{
|
|
e_table_model_changed (etm);
|
|
}
|
|
|
|
static void
|
|
etss_class_init (GtkObjectClass *klass)
|
|
{
|
|
ETableModelClass *table_class = (ETableModelClass *) klass;
|
|
|
|
etss_parent_class = gtk_type_class (PARENT_TYPE);
|
|
|
|
klass->destroy = etss_destroy;
|
|
|
|
table_class->column_count = etss_column_count;
|
|
table_class->row_count = etss_row_count;
|
|
table_class->value_at = etss_value_at;
|
|
table_class->set_value_at = etss_set_value_at;
|
|
table_class->is_cell_editable = etss_is_cell_editable;
|
|
table_class->duplicate_value = etss_duplicate_value;
|
|
table_class->free_value = etss_free_value;
|
|
table_class->thaw = etss_thaw;
|
|
}
|
|
|
|
E_MAKE_TYPE(e_table_subset, "ETableSubset", ETableSubset, etss_class_init, NULL, PARENT_TYPE);
|
|
|
|
static void
|
|
etss_proxy_model_changed (ETableModel *etm, ETableSubset *etss)
|
|
{
|
|
if ( !E_TABLE_MODEL(etss)->frozen )
|
|
e_table_model_changed (E_TABLE_MODEL (etss));
|
|
}
|
|
|
|
static void
|
|
etss_proxy_model_row_changed (ETableModel *etm, int row, ETableSubset *etss)
|
|
{
|
|
if ( !E_TABLE_MODEL(etss)->frozen ) {
|
|
const int n = etss->n_map;
|
|
const int * const map_table = etss->map_table;
|
|
int i;
|
|
|
|
for (i = 0; i < n; i++){
|
|
if (map_table [i] == row){
|
|
e_table_model_row_changed (E_TABLE_MODEL (etss), i);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
etss_proxy_model_cell_changed (ETableModel *etm, int col, int row, ETableSubset *etss)
|
|
{
|
|
if ( !E_TABLE_MODEL(etss)->frozen ) {
|
|
const int n = etss->n_map;
|
|
const int * const map_table = etss->map_table;
|
|
int i;
|
|
|
|
for (i = 0; i < n; i++){
|
|
if (map_table [i] == row){
|
|
e_table_model_cell_changed (E_TABLE_MODEL (etss), col, i);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ETableModel *
|
|
e_table_subset_construct (ETableSubset *etss, ETableModel *source, int nvals)
|
|
{
|
|
unsigned int *buffer;
|
|
int i;
|
|
|
|
buffer = (unsigned int *) g_malloc (sizeof (unsigned int) * nvals);
|
|
if (buffer == NULL)
|
|
return NULL;
|
|
etss->map_table = buffer;
|
|
etss->n_map = nvals;
|
|
etss->source = source;
|
|
gtk_object_ref (GTK_OBJECT (source));
|
|
|
|
/* Init */
|
|
for (i = 0; i < nvals; i++)
|
|
etss->map_table [i] = i;
|
|
|
|
etss->table_model_changed_id = gtk_signal_connect (GTK_OBJECT (source), "model_changed",
|
|
GTK_SIGNAL_FUNC (etss_proxy_model_changed), etss);
|
|
etss->table_model_row_changed_id = gtk_signal_connect (GTK_OBJECT (source), "model_row_changed",
|
|
GTK_SIGNAL_FUNC (etss_proxy_model_row_changed), etss);
|
|
etss->table_model_cell_changed_id = gtk_signal_connect (GTK_OBJECT (source), "model_cell_changed",
|
|
GTK_SIGNAL_FUNC (etss_proxy_model_cell_changed), etss);
|
|
|
|
return E_TABLE_MODEL (etss);
|
|
}
|
|
|
|
ETableModel *
|
|
e_table_subset_new (ETableModel *source, const int nvals)
|
|
{
|
|
ETableSubset *etss = gtk_type_new (E_TABLE_SUBSET_TYPE);
|
|
|
|
if (e_table_subset_construct (etss, source, nvals) == NULL){
|
|
gtk_object_destroy (GTK_OBJECT (etss));
|
|
return NULL;
|
|
}
|
|
|
|
return (ETableModel *) etss;
|
|
}
|
|
|
|
ETableModel *
|
|
e_table_subset_get_toplevel (ETableSubset *table)
|
|
{
|
|
g_return_val_if_fail (table != NULL, NULL);
|
|
g_return_val_if_fail (E_IS_TABLE_SUBSET (table), NULL);
|
|
|
|
if (E_IS_TABLE_SUBSET (table->source))
|
|
return e_table_subset_get_toplevel (E_TABLE_SUBSET (table->source));
|
|
else
|
|
return table->source;
|
|
}
|