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