2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2015-06-10 21:27:11 +00:00
|
|
|
* This file Copyright (C) 2009-2015 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2014-12-21 23:49:39 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-02-03 19:36:54 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QFontMetrics>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QModelIndex>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QPixmapCache>
|
2013-02-14 23:32:37 +00:00
|
|
|
#include <QStyleOptionProgressBar>
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2010-07-25 22:14:13 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
#include <libtransmission/utils.h>
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "Torrent.h"
|
|
|
|
#include "TorrentDelegateMin.h"
|
|
|
|
#include "TorrentModel.h"
|
|
|
|
#include "Utils.h"
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
GUI_PAD = 6,
|
|
|
|
BAR_WIDTH = 50,
|
|
|
|
BAR_HEIGHT = 16,
|
|
|
|
LINE_SPACING = 4
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
**** +---------+-----------------------------------------------+
|
2010-07-24 02:43:06 +00:00
|
|
|
**** | Icon | Title shortStatusString [Progressbar] |
|
2009-04-09 18:55:47 +00:00
|
|
|
**** +-------- +-----------------------------------------------+
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2015-01-17 16:59:42 +00:00
|
|
|
namespace
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
class ItemLayout
|
|
|
|
{
|
|
|
|
public:
|
2020-05-27 21:53:12 +00:00
|
|
|
QFont name_font;
|
|
|
|
QFont status_font;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
QRect icon_rect;
|
|
|
|
QRect emblem_rect;
|
|
|
|
QRect name_rect;
|
|
|
|
QRect status_rect;
|
|
|
|
QRect bar_rect;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
ItemLayout(
|
|
|
|
QString name_text,
|
|
|
|
QString status_text,
|
|
|
|
QIcon const& emblem_icon,
|
|
|
|
QFont const& base_font,
|
|
|
|
Qt::LayoutDirection direction,
|
|
|
|
QPoint const& top_left,
|
|
|
|
int width);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
[[nodiscard]] QSize size() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return (icon_rect | name_rect | status_rect | bar_rect).size();
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
[[nodiscard]] QString nameText() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return elidedText(name_font, name_text_, name_rect.width());
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
[[nodiscard]] QString statusText() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return status_text_;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-11-02 01:13:32 +00:00
|
|
|
QString name_text_;
|
|
|
|
QString status_text_;
|
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
[[nodiscard]] QString elidedText(QFont const& font, QString const& text, int width) const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
return QFontMetrics(font).elidedText(text, Qt::ElideRight, width);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
ItemLayout::ItemLayout(
|
|
|
|
QString name_text,
|
|
|
|
QString status_text,
|
|
|
|
QIcon const& emblem_icon,
|
|
|
|
QFont const& base_font,
|
|
|
|
Qt::LayoutDirection direction,
|
|
|
|
QPoint const& top_left,
|
|
|
|
int width)
|
|
|
|
: name_font(base_font)
|
|
|
|
, status_font(base_font)
|
|
|
|
, name_text_(std::move(name_text))
|
|
|
|
, status_text_(std::move(status_text))
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-11-02 01:13:32 +00:00
|
|
|
auto const* style = QApplication::style();
|
|
|
|
int const icon_size = style->pixelMetric(QStyle::PM_SmallIconSize);
|
2020-05-27 21:53:12 +00:00
|
|
|
|
2020-11-02 01:13:32 +00:00
|
|
|
auto const name_fm = QFontMetrics(name_font);
|
|
|
|
auto const name_size = QSize(name_fm.size(0, name_text_));
|
2020-05-27 21:53:12 +00:00
|
|
|
|
|
|
|
status_font.setPointSize(static_cast<int>(status_font.pointSize() * 0.85));
|
|
|
|
QFontMetrics const status_fm(status_font);
|
|
|
|
QSize const status_size(status_fm.size(0, status_text_));
|
|
|
|
|
|
|
|
QStyleOptionProgressBar bar_style;
|
|
|
|
bar_style.rect = QRect(0, 0, BAR_WIDTH, BAR_HEIGHT);
|
|
|
|
bar_style.maximum = 100;
|
|
|
|
bar_style.progress = 100;
|
|
|
|
bar_style.textVisible = true;
|
2021-08-15 09:41:48 +00:00
|
|
|
QSize const bar_size(
|
|
|
|
bar_style.rect.width() * 2 - style->subElementRect(QStyle::SE_ProgressBarGroove, &bar_style).width(),
|
2020-05-27 21:53:12 +00:00
|
|
|
bar_style.rect.height());
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
QRect base_rect(
|
|
|
|
top_left,
|
2020-05-27 21:53:12 +00:00
|
|
|
QSize(width, std::max({ icon_size, name_size.height(), status_size.height(), bar_size.height() })));
|
|
|
|
|
2020-11-02 01:13:32 +00:00
|
|
|
icon_rect = QStyle::alignedRect(direction, Qt::AlignLeft | Qt::AlignVCenter, QSize(icon_size, icon_size), base_rect);
|
2021-08-15 09:41:48 +00:00
|
|
|
emblem_rect = QStyle::alignedRect(
|
|
|
|
direction,
|
|
|
|
Qt::AlignRight | Qt::AlignBottom,
|
|
|
|
emblem_icon.actualSize(icon_rect.size() / 2, QIcon::Normal, QIcon::On),
|
|
|
|
icon_rect);
|
2020-11-02 01:13:32 +00:00
|
|
|
bar_rect = QStyle::alignedRect(direction, Qt::AlignRight | Qt::AlignVCenter, bar_size, base_rect);
|
2020-05-27 21:53:12 +00:00
|
|
|
Utils::narrowRect(base_rect, icon_rect.width() + GUI_PAD, bar_rect.width() + GUI_PAD, direction);
|
2021-08-15 09:41:48 +00:00
|
|
|
status_rect = QStyle::alignedRect(
|
|
|
|
direction,
|
|
|
|
Qt::AlignRight | Qt::AlignVCenter,
|
|
|
|
QSize(status_size.width(), base_rect.height()),
|
2020-05-27 21:53:12 +00:00
|
|
|
base_rect);
|
|
|
|
Utils::narrowRect(base_rect, 0, status_rect.width() + GUI_PAD, direction);
|
|
|
|
name_rect = base_rect;
|
2015-01-17 16:59:42 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
QSize TorrentDelegateMin::sizeHint(QStyleOptionViewItem const& option, Torrent const& tor) const
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-11-02 01:13:32 +00:00
|
|
|
auto const is_magnet = bool(!tor.hasMetadata());
|
|
|
|
auto const m = QSize(margin(*QApplication::style()));
|
2021-08-15 09:41:48 +00:00
|
|
|
auto const layout = ItemLayout(
|
|
|
|
is_magnet ? progressString(tor) : tor.name(),
|
|
|
|
shortStatusString(tor),
|
|
|
|
QIcon(),
|
|
|
|
option.font,
|
|
|
|
option.direction,
|
|
|
|
QPoint(0, 0),
|
|
|
|
option.rect.width() - m.width() * 2);
|
2017-04-19 12:04:45 +00:00
|
|
|
return layout.size() + m * 2;
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
void TorrentDelegateMin::drawTorrent(QPainter* painter, QStyleOptionViewItem const& option, Torrent const& tor) const
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-11-02 01:13:32 +00:00
|
|
|
auto const* style = QApplication::style();
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
bool const is_paused(tor.isPaused());
|
|
|
|
bool const is_magnet(!tor.hasMetadata());
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
bool const is_item_selected((option.state & QStyle::State_Selected) != 0);
|
|
|
|
bool const is_item_enabled((option.state & QStyle::State_Enabled) != 0);
|
|
|
|
bool const is_item_active((option.state & QStyle::State_Active) != 0);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
painter->save();
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_item_selected)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
QPalette::ColorGroup cg = is_item_enabled ? QPalette::Normal : QPalette::Disabled;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (cg == QPalette::Normal && !is_item_active)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
cg = QPalette::Inactive;
|
|
|
|
}
|
|
|
|
|
|
|
|
painter->fillRect(option.rect, option.palette.brush(cg, QPalette::Highlight));
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon::Mode im;
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_paused || !is_item_enabled)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
im = QIcon::Disabled;
|
|
|
|
}
|
2020-05-27 21:53:12 +00:00
|
|
|
else if (is_item_selected)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
im = QIcon::Selected;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
im = QIcon::Normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon::State qs;
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_paused)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
qs = QIcon::Off;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qs = QIcon::On;
|
|
|
|
}
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
QPalette::ColorGroup cg = QPalette::Normal;
|
2015-01-17 01:23:51 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_paused || !is_item_enabled)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
cg = QPalette::Disabled;
|
|
|
|
}
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (cg == QPalette::Normal && !is_item_active)
|
2013-09-14 22:45:04 +00:00
|
|
|
{
|
|
|
|
cg = QPalette::Inactive;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPalette::ColorRole cr;
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_item_selected)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
cr = QPalette::HighlightedText;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cr = QPalette::Text;
|
|
|
|
}
|
|
|
|
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
QStyle::State progress_bar_state(option.state | QStyle::State_Horizontal);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (is_paused)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
progress_bar_state = QStyle::State_None;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
progress_bar_state |= QStyle::State_Small;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
QIcon::Mode const emblem_im = is_item_selected ? QIcon::Selected : QIcon::Normal;
|
|
|
|
QIcon const emblem_icon = tor.hasError() ? getWarningEmblem() : QIcon();
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
// layout
|
2017-04-20 16:02:19 +00:00
|
|
|
QSize const m(margin(*style));
|
2020-05-27 21:53:12 +00:00
|
|
|
QRect const content_rect(option.rect.adjusted(m.width(), m.height(), -m.width(), -m.height()));
|
2021-08-15 09:41:48 +00:00
|
|
|
ItemLayout const layout(
|
|
|
|
is_magnet ? progressString(tor) : tor.name(),
|
|
|
|
shortStatusString(tor),
|
|
|
|
emblem_icon,
|
|
|
|
option.font,
|
|
|
|
option.direction,
|
|
|
|
content_rect.topLeft(),
|
|
|
|
content_rect.width());
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
// render
|
2020-05-27 21:53:12 +00:00
|
|
|
if (tor.hasError() && !is_item_selected)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
painter->setPen(QColor("red"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
painter->setPen(option.palette.color(cg, cr));
|
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
tor.getMimeTypeIcon().paint(painter, layout.icon_rect, Qt::AlignCenter, im, qs);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (!emblem_icon.isNull())
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
emblem_icon.paint(painter, layout.emblem_rect, Qt::AlignCenter, emblem_im, qs);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
painter->setFont(layout.name_font);
|
|
|
|
painter->drawText(layout.name_rect, Qt::AlignLeft | Qt::AlignVCenter, layout.nameText());
|
|
|
|
painter->setFont(layout.status_font);
|
|
|
|
painter->drawText(layout.status_rect, Qt::AlignLeft | Qt::AlignVCenter, layout.statusText());
|
2020-06-15 14:30:29 +00:00
|
|
|
progress_bar_style_.rect = layout.bar_rect;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (tor.isDownloading())
|
|
|
|
{
|
2020-11-02 01:13:32 +00:00
|
|
|
progress_bar_style_.palette.setBrush(QPalette::Highlight, BlueBrush);
|
|
|
|
progress_bar_style_.palette.setColor(QPalette::Base, BlueBack);
|
|
|
|
progress_bar_style_.palette.setColor(QPalette::Window, BlueBack);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
else if (tor.isSeeding())
|
|
|
|
{
|
2020-11-02 01:13:32 +00:00
|
|
|
progress_bar_style_.palette.setBrush(QPalette::Highlight, GreenBrush);
|
|
|
|
progress_bar_style_.palette.setColor(QPalette::Base, GreenBack);
|
|
|
|
progress_bar_style_.palette.setColor(QPalette::Window, GreenBack);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-11-02 01:13:32 +00:00
|
|
|
progress_bar_style_.palette.setBrush(QPalette::Highlight, SilverBrush);
|
|
|
|
progress_bar_style_.palette.setColor(QPalette::Base, SilverBack);
|
|
|
|
progress_bar_style_.palette.setColor(QPalette::Window, SilverBack);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 14:30:29 +00:00
|
|
|
progress_bar_style_.state = progress_bar_state;
|
|
|
|
progress_bar_style_.text = QStringLiteral("%1%").arg(static_cast<int>(tr_truncd(100.0 * tor.percentDone(), 0)));
|
|
|
|
progress_bar_style_.textVisible = true;
|
|
|
|
progress_bar_style_.textAlignment = Qt::AlignCenter;
|
2017-04-19 12:04:45 +00:00
|
|
|
setProgressBarPercentDone(option, tor);
|
2020-06-15 14:30:29 +00:00
|
|
|
style->drawControl(QStyle::CE_ProgressBar, &progress_bar_style_, painter);
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
painter->restore();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|