summaryrefslogtreecommitdiff
path: root/src/trg-peers-tree-view.c
blob: bd109a5eb41c945d908b126760f142b0b36ea272 (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
66
67
68
69
/*
 * 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.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#if HAVE_GEOIP
#include <GeoIP.h>
#endif

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

#include "trg-tree-view.h"
#include "trg-peers-model.h"
#include "trg-peers-tree-view.h"

G_DEFINE_TYPE(TrgPeersTreeView, trg_peers_tree_view, TRG_TYPE_TREE_VIEW)

static void trg_peers_tree_view_class_init(TrgPeersTreeViewClass * klass)
{
}

static void trg_peers_tree_view_init(TrgPeersTreeView * self)
{
    trg_tree_view_add_pixbuf_text_column(TRG_TREE_VIEW
					 (self),
					 PEERSCOL_ICON,
					 PEERSCOL_IP, "IP", 180);
#if HAVE_GEOIP
    trg_tree_view_add_column(TRG_TREE_VIEW(self), "Country",
			     PEERSCOL_COUNTRY);
#endif
    trg_tree_view_add_column_fixed_width(TRG_TREE_VIEW(self), "Host",
					 PEERSCOL_HOST, 300);
    trg_tree_view_add_column(TRG_TREE_VIEW(self), "Flags", PEERSCOL_FLAGS);
    trg_tree_view_add_prog_column(TRG_TREE_VIEW(self), "Progress",
				  PEERSCOL_PROGRESS, -1);
    trg_tree_view_add_speed_column(TRG_TREE_VIEW(self), "Down Speed",
				   PEERSCOL_DOWNSPEED, -1);
    trg_tree_view_add_speed_column(TRG_TREE_VIEW(self), "Up Speed",
				   PEERSCOL_UPSPEED, -1);
}

TrgPeersTreeView *trg_peers_tree_view_new(TrgPeersModel * model)
{
    GObject *obj = g_object_new(TRG_TYPE_PEERS_TREE_VIEW, NULL);

    gtk_tree_view_set_model(GTK_TREE_VIEW(obj), GTK_TREE_MODEL(model));

    return TRG_PEERS_TREE_VIEW(obj);
}