- Torrent addign and removal functional
[qtrapids] / src / gui / DownloadView.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 DOWNLOADVIEW_H
21 #define DOWNLOADVIEW_H
22
23 #include <map>
24
25 #include <QTreeWidget>
26
27 #include "QBittorrentSession.h"
28
29 class DownloadViewItem;
30
31 /**
32         @class DownloadView
33         @brief A view showing all downloaded torrents
34         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
35 */
36 class DownloadView : public QTreeWidget
37 {
38 Q_OBJECT
39                 
40         public:
41     DownloadView(QWidget* parent);
42
43     ~DownloadView();
44
45                 void newItem(QTorrentHandle handle);
46                 void updateItem(QTorrentHandle handle);
47                 QTorrentHandle removeSelected();
48                 void removeItem(QTorrentHandle handle);
49                 
50         private slots:
51                 void on_itemClicked(QTreeWidgetItem * item, int column);
52         private:
53                 // Maps torrent to downloadview item.
54                 // Key: SHA1 info hash of torrent. Data: View item corresponding to torrent.
55                 std::map<QTorrentHandle, DownloadViewItem*> items_;
56                 
57 };
58
59
60 /**
61         @class DownloadViewItem
62         @brief Represents one item row of DownloadView
63 */
64 class DownloadViewItem : public QTreeWidgetItem {
65         
66         public: 
67                 DownloadViewItem(QTreeWidget* parent, int type) : 
68                         QTreeWidgetItem(parent, type = QTreeWidgetItem::UserType) {};
69                 
70                 DownloadViewItem(const QStringList& strings, 
71                                                                                 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 DownloadViewItem *getHeaderItem()
78                 {
79                         DownloadViewItem *item  
80                                 = new DownloadViewItem(QStringList() 
81                                         << "Name" 
82                                         << "Size" << "Status" 
83                                         << "Progress" << "DL speed" 
84                                         << "UL speed" << "Seeds/Leechers"
85                                         << "Ratio" << "ETA");
86                         
87                         return item;
88                 }
89
90                 /// @todo QTorrentHandle as one hidden column
91 };
92
93 #endif