2006-09-30 20:02:39 +04:00
|
|
|
/*
|
2015-06-02 12:09:15 +03:00
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
2017-10-26 10:10:30 +03:00
|
|
|
* Copyright (C) 2006 Christophe Dumez <chris@qbittorrent.org>
|
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.
|
|
|
|
*
|
2009-04-05 21:00:55 +04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
2006-09-30 20:02:39 +04:00
|
|
|
*/
|
|
|
|
|
2020-12-10 20:56:37 +03:00
|
|
|
#pragma once
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2021-03-10 10:52:30 +03:00
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
|
|
|
|
#include "gui/progressbarpainter.h"
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2017-10-26 10:10:30 +03:00
|
|
|
class QAbstractItemModel;
|
2015-06-02 12:09:15 +03:00
|
|
|
class QModelIndex;
|
|
|
|
class QStyleOptionViewItem;
|
2019-06-04 11:11:42 +03:00
|
|
|
|
2015-06-02 12:09:15 +03:00
|
|
|
class PropertiesWidget;
|
2010-09-25 20:51:19 +04:00
|
|
|
|
2006-09-30 20:02:39 +04:00
|
|
|
// Defines for properties list columns
|
2015-06-02 12:09:15 +03:00
|
|
|
enum PropColumn
|
|
|
|
{
|
|
|
|
NAME,
|
|
|
|
PCSIZE,
|
|
|
|
PROGRESS,
|
2016-01-09 21:10:57 +03:00
|
|
|
PRIORITY,
|
2016-03-22 21:41:43 +03:00
|
|
|
REMAINING,
|
|
|
|
AVAILABILITY
|
2015-06-02 12:09:15 +03:00
|
|
|
};
|
2009-11-24 18:38:47 +03:00
|
|
|
|
2021-03-10 10:52:30 +03:00
|
|
|
class PropListDelegate final : public QStyledItemDelegate
|
2015-06-02 12:09:15 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2021-06-29 09:45:23 +03:00
|
|
|
Q_DISABLE_COPY_MOVE(PropListDelegate)
|
2007-07-04 14:06:22 +04:00
|
|
|
|
2009-11-09 21:01:54 +03:00
|
|
|
public:
|
2018-12-16 10:51:36 +03:00
|
|
|
explicit PropListDelegate(PropertiesWidget *properties);
|
2006-09-30 20:02:39 +04:00
|
|
|
|
2017-03-08 08:22:50 +03:00
|
|
|
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
|
2021-03-10 10:52:30 +03:00
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
2010-01-24 18:26:29 +03:00
|
|
|
|
|
|
|
public slots:
|
2017-03-08 08:22:50 +03:00
|
|
|
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
|
2021-03-10 10:52:30 +03:00
|
|
|
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
2010-01-24 18:26:29 +03:00
|
|
|
|
2015-06-02 12:09:15 +03:00
|
|
|
signals:
|
|
|
|
void filteredFilesChanged() const;
|
2007-09-16 13:19:22 +04:00
|
|
|
|
2015-06-02 12:09:15 +03:00
|
|
|
private:
|
|
|
|
PropertiesWidget *m_properties;
|
2021-03-10 10:52:30 +03:00
|
|
|
ProgressBarPainter m_progressBarPainter;
|
2006-09-30 20:02:39 +04:00
|
|
|
};
|