Added Q_FUNC_INFO macros to some functions.
[qtrapids] / src / client / SeedView.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Ixonos Plc   *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; version 2 of the License.               *
7  *                                                                         *
8  *   This program is distributed in the hope that it will be useful,       *
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11  *   GNU General Public License for more details.                          *
12  *                                                                         *
13  *   You should have received a copy of the GNU General Public License     *
14  *   along with this program; if not, write to the                         *
15  *   Free Software Foundation, Inc.,                                       *
16  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17  ***************************************************************************/
18 #ifndef SEEDVIEW_H
19 #define SEEDVIEW_H
20
21 #include <QTreeWidget>
22
23 namespace qtrapids
24 {
25
26 class TorrentHandle;
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 private slots:
41         void on_itemPressed(QTreeWidgetItem *item, int column);
42
43 private:
44
45         // Name
46         // Size
47         // Status
48         // UP speed
49         // Seeds/Leechers
50         // Connected peers
51         // total uploaded
52         // ratio
53 };
54
55 /**
56    @class DownloadViewItem
57    @brief Represents one item row of DownloadView
58 */
59 class SeedViewItem : public QTreeWidgetItem
60 {
61
62 public:
63
64         SeedViewItem(QTreeWidget* parent, int type) :
65                         QTreeWidgetItem(parent, type = QTreeWidgetItem::UserType) {};
66
67         SeedViewItem(const QStringList& strings, 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 SeedViewItem *getHeaderItem() {
74                 SeedViewItem *item
75                 = new SeedViewItem(QStringList()
76                                    << "Name"
77                                    << "Size" << "Status"
78                                    << "Progress" << "UL speed" << "Seeds/Leechers"
79                                    << "Conn. peers"
80                                    << "Ratio");
81
82                 return item;
83         }
84
85         /// @todo TorrentHandle as one hidden column
86 };
87
88 } // namespace qtrapids
89
90 #endif