- Torrent can be now opened and download starts
[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 const* handle);
46                 void updateItem(QTorrentHandle const* handle);
47                 
48         private:
49                 // Maps torrent to downloadview item.
50                 // Key: SHA1 info hash of torrent. Data: View item corresponding to torrent.
51                 std::map<Sha1Hash, DownloadViewItem*> items_;
52                 
53 };
54
55
56 /**
57         @class DownloadViewItem
58         @brief Represents one item row of DownloadView
59 */
60 class DownloadViewItem : public QTreeWidgetItem {
61         
62         public: 
63                 DownloadViewItem(QTreeWidget* parent, int type) : 
64                         QTreeWidgetItem(parent, type = QTreeWidgetItem::UserType) {};
65                 
66                 DownloadViewItem(const QStringList& strings, 
67                                                                                 int type = QTreeWidgetItem::UserType) : 
68                         QTreeWidgetItem (strings, type = Type) {};
69                 
70                 
71                 /// @return An item comprising of string list, suitable for QTableView
72                 /// header.
73                 static DownloadViewItem *getHeaderItem()
74                 {
75                         DownloadViewItem *item  
76                                 = new DownloadViewItem(QStringList() 
77                                         << "Name" 
78                                         << "Size" << "Status" 
79                                         << "Progress" << "DL speed" 
80                                         << "UL speed" << "Seeds/Leechers"
81                                         << "Ratio" << "ETA");
82                         
83                         return item;
84                 }
85
86                 /// @todo QTorrentHandle as one hidden column
87 };
88
89 #endif