- License texts modified to GPLv2
[qtrapids] / src / gui / SeedView.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Ixonos Plc   *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; version 2 of the License.               *
7  *                                                                         *
8  *   This program is distributed in the hope that it will be useful,       *
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11  *   GNU General Public License for more details.                          *
12  *                                                                         *
13  *   You should have received a copy of the GNU General Public License     *
14  *   along with this program; if not, write to the                         *
15  *   Free Software Foundation, Inc.,                                       *
16  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17  ***************************************************************************/
18 #ifndef SEEDVIEW_H
19 #define SEEDVIEW_H
20
21 #include <QTreeWidget>
22
23 #include "QBittorrentSession.h"
24
25 class SeedViewItem;
26
27 /**
28         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
29 */
30 class SeedView : public QTreeWidget
31 {
32         Q_OBJECT
33 public:
34         SeedView(QWidget* parent);
35
36         ~SeedView();
37
38         void newItem(qtrapids::QTorrentHandle const* handle);
39         void updateItem(qtrapids::QTorrentHandle const* handle);
40
41 private slots:
42         void on_itemPressed(QTreeWidgetItem *item, int column);
43
44 private:
45         // Maps torrent to SeedView item.
46         // Key: SHA1 info hash of torrent. Data: View item corresponding to torrent.
47         std::map<Sha1Hash, SeedViewItem*> items_;
48
49         // Name
50         // Size
51         // Status
52         // UP speed
53         // Seeds/Leechers
54         // Connected peers
55         // total uploaded
56         // ratio
57 };
58
59 /**
60         @class DownloadViewItem
61         @brief Represents one item row of DownloadView
62  */
63 class SeedViewItem : public QTreeWidgetItem
64 {
65
66 public:
67
68         SeedViewItem(QTreeWidget* parent, int type) :
69                         QTreeWidgetItem(parent, type = QTreeWidgetItem::UserType) {};
70
71         SeedViewItem(const QStringList& strings, int type = QTreeWidgetItem::UserType ) :
72                         QTreeWidgetItem (strings, type = Type) {};
73
74
75         /// @return An item comprising of string list, suitable for QTableView
76         /// header.
77         static SeedViewItem *getHeaderItem() {
78                 SeedViewItem *item
79                 = new SeedViewItem(QStringList()
80                                    << "Name"
81                                    << "Size" << "Status"
82                                    << "Progress" << "UL speed" << "Seeds/Leechers"
83                                    << "Conn. peers"
84                                    << "Ratio");
85
86                 return item;
87         }
88
89         /// @todo QTorrentHandle as one hidden column
90 };
91
92 #endif