aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-model.c
blob: eb6f59741b9a45c1010bee6c88d9bbe56584006e (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

#include <config.h>
#include "e-contact-list-model.h"

#define PARENT_TYPE e_table_model_get_type()
ETableModelClass *parent_class;

#define COLS 1

/* This function returns the number of columns in our ETableModel. */
static int
contact_list_col_count (ETableModel *etc)
{
    return COLS;
}

/* This function returns the number of rows in our ETableModel. */
static int
contact_list_row_count (ETableModel *etc)
{
    EContactListModel *model = E_CONTACT_LIST_MODEL (etc);
    return model->data_count;
}

/* This function returns the value at a particular point in our ETableModel. */
static void *
contact_list_value_at (ETableModel *etc, int col, int row)
{
    EContactListModel *model = E_CONTACT_LIST_MODEL (etc);

    return (void *) e_destination_get_address (model->data[row]);
}

/* This function sets the value at a particular point in our ETableModel. */
static void
contact_list_set_value_at (ETableModel *etc, int col, int row, const void *val)
{
    /* nothing */
}

/* This function returns whether a particular cell is editable. */
static gboolean
contact_list_is_cell_editable (ETableModel *etc, int col, int row)
{
    return FALSE;
}

/* This function duplicates the value passed to it. */
static void *
contact_list_duplicate_value (ETableModel *etc, int col, const void *value)
{
    return g_strdup(value);
}

/* This function frees the value passed to it. */
static void
contact_list_free_value (ETableModel *etc, int col, void *value)
{
    g_free(value);
}

static void *
contact_list_initialize_value (ETableModel *etc, int col)
{
    return g_strdup("");
}

static gboolean
contact_list_value_is_empty (ETableModel *etc, int col, const void *value)
{
    return !(value && *(char *)value);
}

static char *
contact_list_value_to_string (ETableModel *etc, int col, const void *value)
{
    return g_strdup(value);
}

static void
contact_list_model_destroy (GtkObject *o)
{
    EContactListModel *model = E_CONTACT_LIST_MODEL (o);
    int i;

    for (i = 0; i < model->data_count; i ++) {
        gtk_object_unref (GTK_OBJECT (model->data[i]));
    }
    g_free (model->data);

    model->data_count = 0;
    model->data_alloc = 0;
}

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

    parent_class = gtk_type_class (PARENT_TYPE);

    object_class->destroy = contact_list_model_destroy;

    model_class->column_count = contact_list_col_count;
    model_class->row_count = contact_list_row_count;
    model_class->value_at = contact_list_value_at;
    model_class->set_value_at = contact_list_set_value_at;
    model_class->is_cell_editable = contact_list_is_cell_editable;
    model_class->duplicate_value = contact_list_duplicate_value;
    model_class->free_value = contact_list_free_value;
    model_class->initialize_value = contact_list_initialize_value;
    model_class->value_is_empty = contact_list_value_is_empty;
    model_class->value_to_string = contact_list_value_to_string;
}

static void
e_contact_list_model_init (GtkObject *object)
{
    EContactListModel *model = E_CONTACT_LIST_MODEL(object);

    model->data_alloc = 10;
    model->data_count = 0;
    model->data = g_new (EDestination*, model->data_alloc);
}

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

    if (!type){
        GtkTypeInfo info = {
            "EContactListModel",
            sizeof (EContactListModel),
            sizeof (EContactListModelClass),
            (GtkClassInitFunc) e_contact_list_model_class_init,
            (GtkObjectInitFunc) e_contact_list_model_init,
            NULL, /* reserved 1 */
            NULL, /* reserved 2 */
            (GtkClassInitFunc) NULL
        };

        type = gtk_type_unique (PARENT_TYPE, &info);
    }

    return type;
}

void
e_contact_list_model_construct (EContactListModel *model)
{
}

ETableModel *
e_contact_list_model_new ()
{
    EContactListModel *model;

    model = gtk_type_new (e_contact_list_model_get_type ());

    e_contact_list_model_construct (model);

    return E_TABLE_MODEL(model);
}

void
e_contact_list_model_add_destination (EContactListModel *model, EDestination *dest)
{
    if (model->data_count + 1 >= model->data_alloc) {
        model->data_alloc *= 2;
        model->data = g_renew (EDestination*, model->data, model->data_alloc);
    }

    model->data[model->data_count ++] = dest;
    gtk_object_ref (GTK_OBJECT (dest));
    gtk_object_sink (GTK_OBJECT (dest));

    e_table_model_changed (E_TABLE_MODEL (model));
}

void
e_contact_list_model_add_email (EContactListModel *model,
                const char *email)
{
    EDestination *new_dest;

    new_dest = e_destination_new ();
    e_destination_set_email (new_dest, email);

    e_contact_list_model_add_destination (model, new_dest);
}

void
e_contact_list_model_add_card (EContactListModel *model,
                   ECardSimple *simple)
{
    EDestination *new_dest;

    new_dest = e_destination_new ();
    e_destination_set_card (new_dest, simple->card, 0); /* Hard-wired for default e-mail */

    e_contact_list_model_add_destination (model, new_dest);
}

void
e_contact_list_model_remove_row (EContactListModel *model, int row)
{
    gtk_object_unref (GTK_OBJECT (model->data[row]));
    memmove (model->data + row, model->data + row + 1, sizeof (EDestination*) * (model->data_count - row - 1));
    model->data_count --;

    e_table_model_changed (E_TABLE_MODEL (model));
}

void
e_contact_list_model_remove_all (EContactListModel *model)
{
    int i;

    for (i = 0; i < model->data_count; i ++) {
        gtk_object_unref (GTK_OBJECT (model->data[i]));
        model->data[i] = NULL;
    }

    model->data_count = 0;

    e_table_model_changed (E_TABLE_MODEL (model));
}


const EDestination *
e_contact_list_model_get_destination (EContactListModel *model, int row)
{
    return model->data[row];
}