summaryrefslogtreecommitdiff
path: root/src/trg-model.c
blob: 585c796711a4da92f84b535d507848c214de6e3a (plain)
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
/*
 * transmission-remote-gtk - Transmission RPC client for GTK
 * Copyright (C) 2010  Alan Fitton

 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <glib.h>
#include <gtk/gtk.h>

struct trg_model_remove_removed_foreachfunc_args {
    gint64 currentSerial;
    gint serial_column;
    GList *toRemove;
};

gboolean
trg_model_remove_removed_foreachfunc(GtkTreeModel * model,
				     GtkTreePath * path,
				     GtkTreeIter * iter, gpointer data)
{
    struct trg_model_remove_removed_foreachfunc_args *args =
	(struct trg_model_remove_removed_foreachfunc_args *) data;
    gint64 rowSerial;
    gtk_tree_model_get(model, iter, args->serial_column, &rowSerial, -1);
    if (rowSerial != args->currentSerial)
	args->toRemove =
	    g_list_append(args->toRemove, gtk_tree_iter_copy(iter));

    return FALSE;
}

void
trg_model_remove_removed(GtkListStore * model, gint serial_column,
			 gint64 currentSerial)
{
    struct trg_model_remove_removed_foreachfunc_args args;
    GList *li;

    args.toRemove = NULL;
    args.currentSerial = currentSerial;
    args.serial_column = serial_column;
    gtk_tree_model_foreach(GTK_TREE_MODEL(model),
			   trg_model_remove_removed_foreachfunc, &args);
    if (args.toRemove != NULL) {
	for (li = g_list_last(args.toRemove); li != NULL;
	     li = g_list_previous(li)) {
	    gtk_list_store_remove(model, (GtkTreeIter *) li->data);
	    gtk_tree_iter_free((GtkTreeIter *) li->data);
	}
	g_list_free(args.toRemove);
    }
}