aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/e-table/e-table-col.c
blob: 8a2bfe90cf55722fcd59fbcc4c2c93d7e7902e95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * E-table-col.c: ETableCol implementation
 *
 * Author:
 *   Miguel de Icaza (miguel@gnu.org)
 *
 * (C) 1999 International GNOME Support
 */
#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,
         ETableColRenderFn render, void *render_data,
         GCompareFunc compare, gboolean resizable)
{
    ETableCol *etc;
    
    g_return_if_fail (id != NULL);
    g_return_if_fail (width >= 0);
    g_return_if_fail (min_width >= 0);
    g_return_if_fail (width >= min_width);
    g_return_if_fail (render != NULL);
    g_return_if_fail (compare != NULL);

    etc = g_new (ETableCol, 1);

    etc->id = g_strdup (id);
    etc->width = width;
    etc->min_width = min_width;
    etc->render = render;
    etc->render_data = render_data;
    etc->compare = compare;

    etc->selected = 0;
    etc->resizeable = 0;

    return etc;
}