mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 15:04:44 +01:00
qt: Align numbers in the "Peer Id" column to the right
This commit is contained in:
parent
6b49d88a5d
commit
69b8b5d72c
2 changed files with 20 additions and 1 deletions
|
@ -132,6 +132,7 @@ QVariant PeerTableModel::data(const QModelIndex &index, int role) const
|
|||
} else if (role == Qt::TextAlignmentRole) {
|
||||
switch (column) {
|
||||
case NetNodeId:
|
||||
return QVariant(Qt::AlignRight | Qt::AlignVCenter);
|
||||
case Address:
|
||||
return {};
|
||||
case ConnectionType:
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
#include <QDateTime>
|
||||
#include <QFont>
|
||||
#include <QKeyEvent>
|
||||
#include <QLatin1String>
|
||||
#include <QLocale>
|
||||
#include <QMenu>
|
||||
#include <QMessageBox>
|
||||
#include <QScreen>
|
||||
|
@ -44,9 +46,10 @@
|
|||
#include <QSettings>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QStyledItemDelegate>
|
||||
#include <QTime>
|
||||
#include <QTimer>
|
||||
|
||||
#include <QVariant>
|
||||
|
||||
const int CONSOLE_HISTORY = 50;
|
||||
const int INITIAL_TRAFFIC_GRAPH_MINS = 30;
|
||||
|
@ -128,6 +131,20 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
class PeerIdViewDelegate : public QStyledItemDelegate
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit PeerIdViewDelegate(QObject* parent = nullptr)
|
||||
: QStyledItemDelegate(parent) {}
|
||||
|
||||
QString displayText(const QVariant& value, const QLocale& locale) const override
|
||||
{
|
||||
// Additional spaces should visually separate right-aligned content
|
||||
// from the next column to the right.
|
||||
return value.toString() + QLatin1String(" ");
|
||||
}
|
||||
};
|
||||
|
||||
#include <qt/rpcconsole.moc>
|
||||
|
||||
|
@ -634,6 +651,7 @@ void RPCConsole::setClientModel(ClientModel *model, int bestblock_height, int64_
|
|||
ui->peerWidget->setColumnWidth(PeerTableModel::Subversion, SUBVERSION_COLUMN_WIDTH);
|
||||
ui->peerWidget->setColumnWidth(PeerTableModel::Ping, PING_COLUMN_WIDTH);
|
||||
ui->peerWidget->horizontalHeader()->setStretchLastSection(true);
|
||||
ui->peerWidget->setItemDelegateForColumn(PeerTableModel::NetNodeId, new PeerIdViewDelegate(this));
|
||||
|
||||
// create peer table context menu
|
||||
peersTableContextMenu = new QMenu(this);
|
||||
|
|
Loading…
Add table
Reference in a new issue