mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-16 21:11:50 +03:00
PeerList: allow to hide zero values for the "uploaded" and "downloaded" columns
This commit is contained in:
parent
1652425cee
commit
a90100a0b7
1 changed files with 8 additions and 2 deletions
|
@ -35,6 +35,7 @@
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include "base/utils/misc.h"
|
#include "base/utils/misc.h"
|
||||||
#include "base/utils/string.h"
|
#include "base/utils/string.h"
|
||||||
|
#include "base/preferences.h"
|
||||||
|
|
||||||
class PeerListDelegate: public QItemDelegate {
|
class PeerListDelegate: public QItemDelegate {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
@ -50,6 +51,7 @@ public:
|
||||||
|
|
||||||
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const {
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const {
|
||||||
painter->save();
|
painter->save();
|
||||||
|
const bool hideValues = Preferences::instance()->getHideZeroValues();
|
||||||
QStyleOptionViewItem opt = QItemDelegate::setOptions(index, option);
|
QStyleOptionViewItem opt = QItemDelegate::setOptions(index, option);
|
||||||
switch(index.column()) {
|
switch(index.column()) {
|
||||||
case PORT:
|
case PORT:
|
||||||
|
@ -58,10 +60,14 @@ public:
|
||||||
QItemDelegate::drawDisplay(painter, opt, option.rect, index.data().toString());
|
QItemDelegate::drawDisplay(painter, opt, option.rect, index.data().toString());
|
||||||
break;
|
break;
|
||||||
case TOT_DOWN:
|
case TOT_DOWN:
|
||||||
case TOT_UP:
|
case TOT_UP: {
|
||||||
|
qlonglong size = index.data().toLongLong();
|
||||||
|
if (hideValues && (size <= 0))
|
||||||
|
break;
|
||||||
QItemDelegate::drawBackground(painter, opt, index);
|
QItemDelegate::drawBackground(painter, opt, index);
|
||||||
opt.displayAlignment = Qt::AlignRight | Qt::AlignVCenter;
|
opt.displayAlignment = Qt::AlignRight | Qt::AlignVCenter;
|
||||||
QItemDelegate::drawDisplay(painter, opt, option.rect, Utils::Misc::friendlyUnit(index.data().toLongLong()));
|
QItemDelegate::drawDisplay(painter, opt, option.rect, Utils::Misc::friendlyUnit(size));
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case DOWN_SPEED:
|
case DOWN_SPEED:
|
||||||
case UP_SPEED:{
|
case UP_SPEED:{
|
||||||
|
|
Loading…
Reference in a new issue