2018-11-14 20:54:37 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
* retroshare-gui/src/gui/FileTransfer/DLListDelegate.h *
|
|
|
|
* *
|
|
|
|
* Copyright 2007 by Crypton <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2007-11-15 03:18:48 +00:00
|
|
|
|
|
|
|
#ifndef DLLISTDELEGATE_H
|
|
|
|
#define DLLISTDELEGATE_H
|
|
|
|
|
|
|
|
#include <QAbstractItemDelegate>
|
2008-02-07 16:36:30 +00:00
|
|
|
#include "xprogressbar.h"
|
|
|
|
|
2007-11-15 03:18:48 +00:00
|
|
|
|
|
|
|
// Defines for download list list columns
|
2018-02-05 21:37:06 +01:00
|
|
|
#define COLUMN_NAME 0
|
|
|
|
#define COLUMN_SIZE 1
|
|
|
|
#define COLUMN_COMPLETED 2
|
|
|
|
#define COLUMN_DLSPEED 3
|
|
|
|
#define COLUMN_PROGRESS 4
|
|
|
|
#define COLUMN_SOURCES 5
|
|
|
|
#define COLUMN_STATUS 6
|
|
|
|
#define COLUMN_PRIORITY 7
|
|
|
|
#define COLUMN_REMAINING 8
|
2013-07-01 21:03:20 +00:00
|
|
|
#define COLUMN_DOWNLOADTIME 9
|
2018-02-05 21:37:06 +01:00
|
|
|
#define COLUMN_ID 10
|
|
|
|
#define COLUMN_LASTDL 11
|
|
|
|
#define COLUMN_PATH 12
|
|
|
|
#define COLUMN_COUNT 13
|
|
|
|
|
|
|
|
#define PRIORITY_NULL 0.0
|
|
|
|
#define PRIORITY_FASTER 0.1
|
|
|
|
#define PRIORITY_AVERAGE 0.2
|
|
|
|
#define PRIORITY_SLOWER 0.3
|
2007-11-15 03:18:48 +00:00
|
|
|
|
|
|
|
#define MAX_CHAR_TMP 128
|
|
|
|
|
|
|
|
class QModelIndex;
|
|
|
|
class QPainter;
|
|
|
|
|
|
|
|
|
|
|
|
class DLListDelegate: public QAbstractItemDelegate {
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
DLListDelegate(QObject *parent=0);
|
2018-09-06 11:46:04 +02:00
|
|
|
virtual ~DLListDelegate(){}
|
2007-11-15 03:18:48 +00:00
|
|
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const;
|
2013-09-01 13:56:05 +00:00
|
|
|
QSize sizeHint(const QStyleOptionViewItem &, const QModelIndex &) const;
|
2007-11-15 03:18:48 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|