formatting is changed according to last astyle settings
[qtrapids] / src / client / 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 namespace qtrapids
26 {
27
28 class TorrentHandle;
29 class SeedViewItem;
30
31 /**
32    @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
33 */
34 class SeedView : public QTreeWidget
35 {
36         Q_OBJECT
37 public:
38         SeedView(QWidget* parent);
39
40         ~SeedView();
41
42 private slots:
43         void on_itemPressed(QTreeWidgetItem *item, int column);
44
45 private:
46
47         // Name
48         // Size
49         // Status
50         // UP speed
51         // Seeds/Leechers
52         // Connected peers
53         // total uploaded
54         // ratio
55 };
56
57 /**
58    @class DownloadViewItem
59    @brief Represents one item row of DownloadView
60 */
61 class SeedViewItem : public QTreeWidgetItem
62 {
63
64 public:
65
66         SeedViewItem(QTreeWidget* parent, int type) :
67                         QTreeWidgetItem(parent, type = QTreeWidgetItem::UserType) {};
68
69         SeedViewItem(const QStringList& strings, int type = QTreeWidgetItem::UserType ) :
70                         QTreeWidgetItem (strings, type = Type) {};
71
72
73         /// @return An item comprising of string list, suitable for QTableView
74         /// header.
75         static SeedViewItem *getHeaderItem() {
76                 SeedViewItem *item
77                 = new SeedViewItem(QStringList()
78                                    << "Name"
79                                    << "Size" << "Status"
80                                    << "Progress" << "UL speed" << "Seeds/Leechers"
81                                    << "Conn. peers"
82                                    << "Ratio");
83
84                 return item;
85         }
86
87         /// @todo TorrentHandle as one hidden column
88 };
89
90 } // namespace qtrapids
91
92 #endif