2006-09-30 20:02:39 +04:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-14 18:31:59 +04:00
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
2006-09-30 20:02:39 +04:00
|
|
|
*
|
2007-07-14 18:31:59 +04:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-09-30 20:02:39 +04:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-14 18:31:59 +04:00
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* Contact : chris@qbittorrent.org
|
2006-09-30 20:02:39 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DLLISTDELEGATE_H
|
|
|
|
#define DLLISTDELEGATE_H
|
|
|
|
|
2007-07-31 13:41:47 +04:00
|
|
|
#include <QItemDelegate>
|
2006-09-30 20:02:39 +04:00
|
|
|
#include <QModelIndex>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QStyleOptionProgressBarV2>
|
2007-08-01 11:19:44 +04:00
|
|
|
#include <QStyleOptionViewItemV2>
|
2006-09-30 20:02:39 +04:00
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QApplication>
|
|
|
|
#include "misc.h"
|
|
|
|
|
|
|
|
// Defines for download list list columns
|
|
|
|
#define NAME 0
|
|
|
|
#define SIZE 1
|
|
|
|
#define PROGRESS 2
|
|
|
|
#define DLSPEED 3
|
|
|
|
#define UPSPEED 4
|
2006-12-27 06:19:38 +03:00
|
|
|
#define SEEDSLEECH 5
|
2007-07-18 11:44:52 +04:00
|
|
|
#define RATIO 6
|
2006-12-27 06:19:38 +03:00
|
|
|
#define ETA 7
|
2008-07-14 23:20:18 +04:00
|
|
|
#define PRIORITY 8
|
|
|
|
#define HASH 9
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2007-07-31 13:41:47 +04:00
|
|
|
class DLListDelegate: public QItemDelegate {
|
2006-09-30 20:02:39 +04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2007-07-31 13:41:47 +04:00
|
|
|
DLListDelegate(QObject *parent) : QItemDelegate(parent){}
|
2006-09-30 20:02:39 +04:00
|
|
|
|
|
|
|
~DLListDelegate(){}
|
|
|
|
|
|
|
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
2007-08-01 11:19:44 +04:00
|
|
|
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
2006-09-30 20:02:39 +04:00
|
|
|
switch(index.column()){
|
|
|
|
case SIZE:
|
2007-07-31 14:39:03 +04:00
|
|
|
QItemDelegate::drawBackground(painter, opt, index);
|
|
|
|
QItemDelegate::drawDisplay(painter, opt, option.rect, misc::friendlyUnit(index.data().toLongLong()));
|
2006-09-30 20:02:39 +04:00
|
|
|
break;
|
|
|
|
case ETA:
|
2007-07-31 14:39:03 +04:00
|
|
|
QItemDelegate::drawBackground(painter, opt, index);
|
|
|
|
QItemDelegate::drawDisplay(painter, opt, option.rect, misc::userFriendlyDuration(index.data().toLongLong()));
|
2006-09-30 20:02:39 +04:00
|
|
|
break;
|
|
|
|
case UPSPEED:
|
|
|
|
case DLSPEED:{
|
2007-07-31 14:39:03 +04:00
|
|
|
QItemDelegate::drawBackground(painter, opt, index);
|
2007-08-28 22:05:20 +04:00
|
|
|
double speed = index.data().toDouble();
|
|
|
|
QItemDelegate::drawDisplay(painter, opt, opt.rect, QString(QByteArray::number(speed/1024., 'f', 1))+QString::fromUtf8(" ")+tr("KiB/s"));
|
2006-09-30 20:02:39 +04:00
|
|
|
break;
|
|
|
|
}
|
2007-07-18 11:44:52 +04:00
|
|
|
case RATIO:{
|
2007-07-31 14:39:03 +04:00
|
|
|
QItemDelegate::drawBackground(painter, opt, index);
|
2007-08-28 22:05:20 +04:00
|
|
|
double ratio = index.data().toDouble();
|
2009-01-23 22:26:22 +03:00
|
|
|
if(ratio > 100.)
|
|
|
|
QItemDelegate::drawDisplay(painter, opt, opt.rect, QString::fromUtf8("∞"));
|
|
|
|
else
|
|
|
|
QItemDelegate::drawDisplay(painter, opt, opt.rect, QString(QByteArray::number(ratio, 'f', 1)));
|
2007-07-18 11:44:52 +04:00
|
|
|
break;
|
|
|
|
}
|
2006-09-30 20:02:39 +04:00
|
|
|
case PROGRESS:{
|
|
|
|
QStyleOptionProgressBarV2 newopt;
|
2007-08-28 22:05:20 +04:00
|
|
|
double progress = index.data().toDouble()*100.;
|
2006-09-30 20:02:39 +04:00
|
|
|
newopt.rect = opt.rect;
|
2007-08-28 22:05:20 +04:00
|
|
|
newopt.text = QString(QByteArray::number(progress, 'f', 1))+QString::fromUtf8("%");
|
2006-09-30 20:02:39 +04:00
|
|
|
newopt.progress = (int)progress;
|
|
|
|
newopt.maximum = 100;
|
|
|
|
newopt.minimum = 0;
|
|
|
|
newopt.state |= QStyle::State_Enabled;
|
2007-10-13 12:32:31 +04:00
|
|
|
newopt.textVisible = true;
|
2006-09-30 20:02:39 +04:00
|
|
|
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt,
|
|
|
|
painter);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2007-07-31 13:41:47 +04:00
|
|
|
QItemDelegate::paint(painter, option, index);
|
2006-09-30 20:02:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-31 14:39:03 +04:00
|
|
|
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
|
|
|
// No editor here
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-30 20:02:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|