f3d43c580e0002dba7a8ee4d8d1d74a59412da3b
[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 <QTreeWidget>
24
25 /**
26         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
27 */
28 class DownloadView : public QTreeWidget
29 {
30 Q_OBJECT
31                 
32         public:
33     DownloadView(QWidget* parent);
34
35     ~DownloadView();
36
37         private:
38
39 };
40
41
42 /**
43         @class DownloadViewItem
44         @brief Represents one item row of DownloadView
45 */
46 class DownloadViewItem : public QTreeWidgetItem {
47         
48         public: 
49                 DownloadViewItem(QTreeWidget* parent, int type) : 
50                         QTreeWidgetItem(parent, type = QTreeWidgetItem::UserType) {};
51                 
52                 DownloadViewItem(const QStringList& strings, 
53                                                                                 int type = QTreeWidgetItem::UserType) : 
54                         QTreeWidgetItem (strings, type = Type) {};
55                 
56                 
57                 /// @return An item comprising of string list, suitable for QTableView
58                 /// header.
59                 static DownloadViewItem *getHeaderItem()
60                 {
61                         DownloadViewItem *item  
62                                 = new DownloadViewItem(QStringList() 
63                                         << "Name" 
64                                         << "Size" << "Status" 
65                                         << "Progress" << "DL speed" 
66                                         << "UL speed" << "Seeds/Leechers"
67                                         << "Ratio" << "ETA");
68                         
69                         return item;
70                 }
71
72                 /// @todo QTorrentHandle as one hidden column
73 };
74
75 #endif