transmission/qt/TrackerModel.h

58 lines
1.0 KiB
C
Raw Normal View History

/*
* This file Copyright (C) 2010-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef QTR_TRACKER_MODEL_H
#define QTR_TRACKER_MODEL_H
#include <QAbstractListModel>
#include <QSet>
#include <QVector>
#include "Torrent.h"
2015-06-12 22:12:12 +00:00
class TorrentModel;
struct TrackerInfo
{
2015-06-12 22:12:12 +00:00
TrackerStat st;
int torrentId;
};
2015-06-12 22:12:12 +00:00
Q_DECLARE_METATYPE(TrackerInfo)
class TrackerModel: public QAbstractListModel
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
2015-06-12 22:12:12 +00:00
public:
enum Role
{
TrackerRole = Qt::UserRole
};
2013-09-14 22:45:04 +00:00
public:
2015-06-12 22:12:12 +00:00
TrackerModel () {}
virtual ~TrackerModel () {}
2013-09-14 22:45:04 +00:00
void refresh (const TorrentModel&, const QSet<int>& ids);
int find (int torrentId, const QString& url) const;
2015-06-12 22:12:12 +00:00
// QAbstractItemModel
virtual int rowCount (const QModelIndex& parent = QModelIndex ()) const;
2013-09-14 22:45:04 +00:00
virtual QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const;
2015-06-12 22:12:12 +00:00
private:
typedef QVector<TrackerInfo> rows_t;
private:
rows_t myRows;
};
#endif // QTR_TRACKER_MODEL_H