blob: 3d940fce04c1a0377daa1403e94dddce99b3c648 (
plain) (
tree)
|
|
/*
* E-table-col.c: ETableCol implementation
*
* Author:
* Miguel de Icaza (miguel@gnu.org)
*
* (C) 1999 Helix Code, Inc
*/
#include <config.h>
#include <gtk/gtkobject.h>
#include <gtk/gtksignal.h>
#include "e-table-col.h"
ETableCol *
e_table_col_new (const char *id, int width, int min_width,
ECell *ecell, GCompareFunc compare, gboolean resizable)
{
ETableCol *etc;
g_return_val_if_fail (id != NULL, NULL);
g_return_val_if_fail (width >= 0, NULL);
g_return_val_if_fail (min_width >= 0, NULL);
g_return_val_if_fail (width >= min_width, NULL);
g_return_val_if_fail (compare != NULL, NULL);
etc = g_new (ETableCol, 1);
etc->id = g_strdup (id);
etc->width = width;
etc->min_width = min_width;
etc->ecell = ecell;
etc->compare = compare;
etc->selected = 0;
etc->resizeable = resizable;
return etc;
}
|