* fix a lot of compiler warnings
[kdenetwork.git] / kget / transfer-plugins / bittorrent / iwfiletreemodel.h
blobdf69c22863358c15d831dbcea81b68d69344c2df
1 /** IMPORTANT: please keep this file in sync with ktorrent! ****************/
3 /***************************************************************************
4 * Copyright (C) 2007 by Joris Guisson and Ivan Vasic *
5 * joris.guisson@gmail.com *
6 * ivasic@gmail.com *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
22 ***************************************************************************/
23 #ifndef KTIWFILETREEMODEL_H
24 #define KTIWFILETREEMODEL_H
26 #include <torrentfiletreemodel.h>
28 namespace kt
31 /**
33 * @author Joris Guisson
35 * Expands the standard TorrentFileTreeModel to show more information.
37 class IWFileTreeModel : public TorrentFileTreeModel
39 Q_OBJECT
40 public:
41 IWFileTreeModel(bt::TorrentInterface* tc,QObject* parent);
42 virtual ~IWFileTreeModel();
44 virtual int columnCount(const QModelIndex & parent) const;
45 virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const;
46 virtual QVariant data(const QModelIndex & index, int role) const;
47 virtual bool setData(const QModelIndex & index, const QVariant & value, int role);
48 virtual void update();
50 private slots:
51 void onPercentageUpdated(float p);
52 void onPreviewAvailable(bool av);
54 private:
55 void update(const QModelIndex & index,bt::TorrentFileInterface* file,int col);
57 private:
58 bool preview;
59 bool mmfile;
60 double percentage;
65 #endif