Skip to content

Commit

Permalink
Merge pull request #4667
Browse files Browse the repository at this point in the history
bbad683 [Qt] simplify return code and return values in txtablemodel (Philip Kaufmann)
21f1516 [Qt] add all used colors in txtablemodel to guiconstants (Philip Kaufmann)
  • Loading branch information
laanwj committed Sep 18, 2014
2 parents 0db24bf + bbad683 commit 7fd8813
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
6 changes: 6 additions & 0 deletions src/qt/guiconstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ static const int STATUSBAR_ICONSIZE = 16;
#define COLOR_NEGATIVE QColor(255, 0, 0)
/* Transaction list -- bare address (without label) */
#define COLOR_BAREADDRESS QColor(140, 140, 140)
/* Transaction list -- TX status decoration - open until date */
#define COLOR_TX_STATUS_OPENUNTILDATE QColor(64, 64, 255)
/* Transaction list -- TX status decoration - offline */
#define COLOR_TX_STATUS_OFFLINE QColor(192, 192, 192)
/* Transaction list -- TX status decoration - default color */
#define COLOR_BLACK QColor(0, 0, 0)

/* Tooltips longer than this (in characters) are converted into rich text,
so that they can be word-wrapped.
Expand Down
29 changes: 10 additions & 19 deletions src/qt/transactiontablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,7 @@ class TransactionTablePriv
}
return rec;
}
else
{
return 0;
}
return 0;
}

QString describe(TransactionRecord *rec, int unit)
Expand All @@ -225,7 +222,7 @@ class TransactionTablePriv
return TransactionDesc::toHTML(wallet, mi->second, rec, unit);
}
}
return QString("");
return QString();
}
};

Expand Down Expand Up @@ -330,10 +327,7 @@ QString TransactionTableModel::formatTxDate(const TransactionRecord *wtx) const
{
return GUIUtil::dateTimeStr(wtx->time);
}
else
{
return QString();
}
return QString();
}

/* Look up address in address book, if found return label (address)
Expand All @@ -345,11 +339,11 @@ QString TransactionTableModel::lookupAddress(const std::string &address, bool to
QString description;
if(!label.isEmpty())
{
description += label + QString(" ");
description += label;
}
if(label.isEmpty() || tooltip)
{
description += QString("(") + QString::fromStdString(address) + QString(")");
description += QString(" (") + QString::fromStdString(address) + QString(")");
}
return description;
}
Expand Down Expand Up @@ -389,7 +383,6 @@ QVariant TransactionTableModel::txAddressDecoration(const TransactionRecord *wtx
default:
return QIcon(":/icons/tx_inout");
}
return QVariant();
}

QString TransactionTableModel::formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const
Expand Down Expand Up @@ -456,9 +449,9 @@ QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx)
{
case TransactionStatus::OpenUntilBlock:
case TransactionStatus::OpenUntilDate:
return QColor(64,64,255);
return COLOR_TX_STATUS_OPENUNTILDATE;
case TransactionStatus::Offline:
return QColor(192,192,192);
return COLOR_TX_STATUS_OFFLINE;
case TransactionStatus::Unconfirmed:
return QIcon(":/icons/transaction_0");
case TransactionStatus::Confirming:
Expand All @@ -482,8 +475,9 @@ QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx)
case TransactionStatus::MaturesWarning:
case TransactionStatus::NotAccepted:
return QIcon(":/icons/transaction_0");
default:
return COLOR_BLACK;
}
return QColor(0,0,0);
}

QVariant TransactionTableModel::txWatchonlyDecoration(const TransactionRecord *wtx) const
Expand Down Expand Up @@ -646,10 +640,7 @@ QModelIndex TransactionTableModel::index(int row, int column, const QModelIndex
{
return createIndex(row, column, priv->index(row));
}
else
{
return QModelIndex();
}
return QModelIndex();
}

void TransactionTableModel::updateDisplayUnit()
Expand Down

0 comments on commit 7fd8813

Please sign in to comment.