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
145 lines
3.6 KiB
C
145 lines
3.6 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 <string.h>
|
|
#include "e-util/e-util.h"
|
|
#include "e-table-subset-variable.h"
|
|
|
|
#define ETSSV_CLASS(e) ((ETableSubsetVariableClass *)((GtkObject *)e)->klass)
|
|
|
|
#define PARENT_TYPE E_TABLE_SUBSET_TYPE
|
|
|
|
#define INCREMENT_AMOUNT 10
|
|
|
|
static ETableSubsetClass *etssv_parent_class;
|
|
|
|
static void
|
|
etssv_add (ETableSubsetVariable *etssv,
|
|
gint row)
|
|
{
|
|
ETableModel *etm = E_TABLE_MODEL(etssv);
|
|
ETableSubset *etss = E_TABLE_SUBSET(etssv);
|
|
|
|
if ( etss->n_map + 1 > etssv->n_vals_allocated ) {
|
|
etss->map_table = g_realloc(etss->map_table, (etssv->n_vals_allocated + INCREMENT_AMOUNT) * sizeof(int));
|
|
etssv->n_vals_allocated += INCREMENT_AMOUNT;
|
|
}
|
|
etss->map_table[etss->n_map++] = row;
|
|
if ( !etm->frozen )
|
|
e_table_model_changed(etm);
|
|
}
|
|
|
|
static gboolean
|
|
etssv_remove (ETableSubsetVariable *etssv,
|
|
gint row)
|
|
{
|
|
ETableModel *etm = E_TABLE_MODEL(etssv);
|
|
ETableSubset *etss = E_TABLE_SUBSET(etssv);
|
|
int i;
|
|
|
|
for ( i = 0; i < etss->n_map; i++ ) {
|
|
if (etss->map_table[i] == row) {
|
|
memmove(etss->map_table + i, etss->map_table + i + 1, (etss->n_map - i - 1) * sizeof(int));
|
|
etss->n_map --;
|
|
if ( !etm->frozen )
|
|
e_table_model_changed(etm);
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
etssv_class_init (GtkObjectClass *object_class)
|
|
{
|
|
ETableSubsetVariableClass *klass = E_TABLE_SUBSET_VARIABLE_CLASS(object_class);
|
|
etssv_parent_class = gtk_type_class (PARENT_TYPE);
|
|
|
|
klass->add = etssv_add;
|
|
klass->remove = etssv_remove;
|
|
}
|
|
|
|
E_MAKE_TYPE(e_table_subset_variable, "ETableSubsetVariable", ETableSubsetVariable, etssv_class_init, NULL, PARENT_TYPE);
|
|
|
|
ETableModel *
|
|
e_table_subset_variable_construct (ETableSubsetVariable *etssv,
|
|
ETableModel *source)
|
|
{
|
|
if ( e_table_subset_construct(E_TABLE_SUBSET(etssv), source, 1) == NULL )
|
|
return NULL;
|
|
E_TABLE_SUBSET(etssv)->n_map = 0;
|
|
|
|
return E_TABLE_MODEL (etssv);
|
|
}
|
|
|
|
ETableModel *
|
|
e_table_subset_variable_new (ETableModel *source)
|
|
{
|
|
ETableSubsetVariable *etssv = gtk_type_new (E_TABLE_SUBSET_VARIABLE_TYPE);
|
|
|
|
if (e_table_subset_variable_construct (etssv, source) == NULL){
|
|
gtk_object_destroy (GTK_OBJECT (etssv));
|
|
return NULL;
|
|
}
|
|
|
|
return (ETableModel *) etssv;
|
|
}
|
|
|
|
void
|
|
e_table_subset_variable_add (ETableSubsetVariable *etssv,
|
|
gint row)
|
|
{
|
|
g_return_if_fail (etssv != NULL);
|
|
g_return_if_fail (E_IS_TABLE_SUBSET_VARIABLE(etssv));
|
|
|
|
if (ETSSV_CLASS(etssv)->add)
|
|
ETSSV_CLASS (etssv)->add (etssv, row);
|
|
}
|
|
|
|
gboolean
|
|
e_table_subset_variable_remove (ETableSubsetVariable *etssv,
|
|
gint row)
|
|
{
|
|
g_return_val_if_fail (etssv != NULL, FALSE);
|
|
g_return_val_if_fail (E_IS_TABLE_SUBSET_VARIABLE(etssv), FALSE);
|
|
|
|
if (ETSSV_CLASS(etssv)->remove)
|
|
return ETSSV_CLASS (etssv)->remove (etssv, row);
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
void
|
|
e_table_subset_variable_increment (ETableSubsetVariable *etssv,
|
|
gint position,
|
|
gint amount)
|
|
{
|
|
int i;
|
|
ETableSubset *etss = E_TABLE_SUBSET(etssv);
|
|
for ( i = 0; i < etss->n_map; i++ ) {
|
|
if ( etss->map_table[i] > position )
|
|
etss->map_table[i] += amount;
|
|
}
|
|
}
|
|
|
|
void
|
|
e_table_subset_variable_set_allocation (ETableSubsetVariable *etssv,
|
|
gint total)
|
|
{
|
|
ETableSubset *etss = E_TABLE_SUBSET(etssv);
|
|
if ( total <= 0 )
|
|
total = 1;
|
|
if ( total > etss->n_map ) {
|
|
etss->map_table = g_realloc(etss->map_table, total * sizeof(int));
|
|
}
|
|
}
|