1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Align integer data to right in torrent content view

This commit is contained in:
jagannatharjun 2020-10-28 10:39:05 +05:30
parent d0986297ca
commit fdbc3a692f

View File

@ -351,6 +351,12 @@ QVariant TorrentContentModel::data(const QModelIndex &index, int role) const
return Qt::PartiallyChecked; return Qt::PartiallyChecked;
return Qt::Checked; return Qt::Checked;
} }
case Qt::TextAlignmentRole:
if ((index.column() == TorrentContentModelItem::COL_SIZE)
|| (index.column() == TorrentContentModelItem::COL_REMAINING))
return QVariant {Qt::AlignRight | Qt::AlignVCenter};
return {};
case Qt::DisplayRole: case Qt::DisplayRole:
return item->displayData(index.column()); return item->displayData(index.column());
@ -375,10 +381,22 @@ Qt::ItemFlags TorrentContentModel::flags(const QModelIndex &index) const
QVariant TorrentContentModel::headerData(int section, Qt::Orientation orientation, int role) const QVariant TorrentContentModel::headerData(int section, Qt::Orientation orientation, int role) const
{ {
if ((orientation == Qt::Horizontal) && (role == Qt::DisplayRole)) if (orientation != Qt::Horizontal)
return {};
switch (role) {
case Qt::DisplayRole:
return m_rootItem->displayData(section); return m_rootItem->displayData(section);
return {}; case Qt::TextAlignmentRole:
if ((section == TorrentContentModelItem::COL_SIZE)
|| (section == TorrentContentModelItem::COL_REMAINING))
return QVariant {Qt::AlignRight | Qt::AlignVCenter};
return {};
default:
return {};
}
} }
QModelIndex TorrentContentModel::index(int row, int column, const QModelIndex &parent) const QModelIndex TorrentContentModel::index(int row, int column, const QModelIndex &parent) const