summaryrefslogtreecommitdiff
path: root/src/trg-peers-tree-view.c
blob: 719de634dd0a4c7a0f775a2478d9e78b3f450c02 (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
70
71
72
73
/*
 * transmission-remote-gtk - Transmission RPC client for GTK
 * Copyright (C) 2011  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.
 */

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

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

#include <glib-object.h>
#include <glib/gi18n.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 G_GNUC_UNUSED)
{
}

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"), 160);
    trg_tree_view_add_column_fixed_width(TRG_TREE_VIEW(self), _("Host"),
                                         PEERSCOL_HOST, 250);
#ifdef HAVE_GEOIP
    trg_tree_view_add_column(TRG_TREE_VIEW(self), _("Country"),
                             PEERSCOL_COUNTRY);
#endif
    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);
    trg_tree_view_add_prog_column(TRG_TREE_VIEW(self), _("Progress"),
                                  PEERSCOL_PROGRESS, -1);
    trg_tree_view_add_column(TRG_TREE_VIEW(self), _("Flags"), PEERSCOL_FLAGS);
    trg_tree_view_add_column(TRG_TREE_VIEW(self), _("Client"),
                             PEERSCOL_CLIENT);
}

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);
}