aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/e-table-simple.c
blob: b23cda1220a9512eeeba5c03c046b69a82761067 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * e-table-model.c: a simple table model implementation that uses function
 * pointers to simplify the creation of new, exotic and colorful tables in
 * no time.
 *
 * Author:
 *   Miguel de Icaza (miguel@gnu.org)
 *
 * (C) 1999 Helix Code, Inc.
 */

#include <config.h>
#include "e-table-simple.h"

#define PARENT_TYPE e_table_model_get_type()

static int
simple_column_count (ETableModel *etm)
{
    ETableSimple *simple = (ETableSimple *)etm;

    return simple->col_count (etm, simple->data);
}

static const char *
simple_column_name (ETableModel *etm, int col)
{
    ETableSimple *simple = (ETableSimple *)etm;

    return simple->col_name (etm, col, simple->data);
}

static int
simple_row_count (ETableModel *etm)
{
    ETableSimple *simple = (ETableSimple *)etm;

    return simple->row_count (etm, simple->data);
}

static void *
simple_value_at (ETableModel *etm, int col, int row)
{
    ETableSimple *simple = (ETableSimple *)etm;

    return simple->value_at (etm, col, row, simple->data);
}

static void
simple_set_value_at (ETableModel *etm, int col, int row, void *val)
{
    ETableSimple *simple = (ETableSimple *)etm;

    simple->set_value_at (etm, col, row, val, simple->data);
}

static gboolean
simple_is_cell_editable (ETableModel *etm, int col, int row)
{
    ETableSimple *simple = (ETableSimple *)etm;

    return simple->is_cell_editable (etm, col, row, simple->data);
}

static int
simple_row_height (ETableModel *etm, int row)
{
    ETableSimple *simple = (ETableSimple *)etm;

    return simple->row_height (etm, row, simple->data);
}

static void
e_table_simple_class_init (GtkObjectClass *object_class)
{
    ETableModelClass *model_class = (ETableModelClass *) object_class;

    model_class->column_count = simple_column_count;
    model_class->column_name = simple_column_name;
    model_class->row_count = simple_row_count;
    model_class->value_at = simple_value_at;
    model_class->set_value_at = simple_set_value_at;
    model_class->is_cell_editable = simple_is_cell_editable;
    model_class->row_height = simple_row_height;
}

GtkType
e_table_simple_get_type (void)
{
    static GtkType type = 0;

    if (!type){
        GtkTypeInfo info = {
            "ETableSimple",
            sizeof (ETableSimple),
            sizeof (ETableSimpleClass),
            (GtkClassInitFunc) e_table_simple_class_init,
            (GtkObjectInitFunc) NULL,
            NULL, /* reserved 1 */
            NULL, /* reserved 2 */
            (GtkClassInitFunc) NULL
        };

        type = gtk_type_unique (PARENT_TYPE, &info);
    }

    return type;
}

ETableModel *
e_table_simple_new (ETableSimpleColumnCountFn col_count,
            ETableSimpleColumnNameFn col_name,
            ETableSimpleRowCountFn row_count,
            ETableSimpleValueAtFn value_at,
            ETableSimpleSetValueAtFn set_value_at,
            ETableSimpleIsCellEditableFn is_cell_editable,
            ETableSimpleRowHeightFn row_height,
            void *data)
{
    ETableSimple *et;

    et = gtk_type_new (e_table_simple_get_type ());

    et->col_count = col_count;
    et->col_name = col_name;
    et->row_count = row_count;
    et->value_at = value_at;
    et->set_value_at = set_value_at;
    et->is_cell_editable = is_cell_editable;
    et->row_height = row_height;
    
    return (ETableModel *) et;
}
lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/x11-clocks/xfce4-datetime-plugin?h=gnome-3.28&id=83ea0187a39c125ed519b4abe323bcc0735d0786'>- Add SHA256pav2005-11-261-0/+1 * Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-11-151-1/+1 * Bump PORTREVISION to chase the glib20 shared library update.marcus2005-11-051-1/+1 * Remove stale mastersite.linimon2005-10-091-2/+1 * Remove obsolete mastersite.linimon2005-09-141-1/+0 * reset maintainer to ports@FreeBSD.org since original maintainer doesn'toliver2005-09-071-1/+1 * Bump PORTREVISION to chase the glib20 shared lib version change.marcus2005-03-121-1/+1 * update xfce4-datetime-plugin to 0.3.1oliver2005-01-283-6/+5 * - bring xfce4 to 4.2oliver2005-01-271-2/+2 * Bump PORTREVISIONS for all ports that depend on atk or pango to ease in themarcus2004-11-081-1/+1 * - Fix distinfopav2004-07-301-2/+2 * Change maintainer's mail.krion2004-07-211-3/+3 * Add more MASTER_SITE.ale2004-05-091-1/+4 * Chase the glib20 update, and bump all affected ports' PORTREVISIONs.marcus2004-04-051-1/+1 * SIZEify (maintainer timeout)trevor2004-03-311-0/+1 * Whoa there, boy, that's a mighty big commit y'all have there...ade2004-03-141-1/+1 * Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-0/+1 * Update to 0.3.0 release:ale2004-01-182-3/+3