2011-05-27 18:38:30 +02:00
|
|
|
#include "guiutil.h"
|
2011-06-02 15:57:23 +02:00
|
|
|
#include "bitcoinaddressvalidator.h"
|
2011-08-07 16:04:48 +02:00
|
|
|
#include "walletmodel.h"
|
|
|
|
#include "bitcoinunits.h"
|
2011-07-03 20:53:56 +02:00
|
|
|
|
|
|
|
#include "headers.h"
|
2011-05-27 18:38:30 +02:00
|
|
|
|
2011-06-02 15:57:23 +02:00
|
|
|
#include <QString>
|
2011-05-27 18:38:30 +02:00
|
|
|
#include <QDateTime>
|
2011-06-02 15:57:23 +02:00
|
|
|
#include <QDoubleValidator>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QLineEdit>
|
2011-08-07 16:04:48 +02:00
|
|
|
#include <QUrl>
|
2011-11-11 10:13:25 +01:00
|
|
|
#include <QTextDocument> // For Qt::escape
|
2011-12-04 14:14:10 +01:00
|
|
|
#include <QAbstractItemView>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
2011-05-27 18:38:30 +02:00
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
QString GUIUtil::dateTimeStr(qint64 nTime)
|
2011-05-27 18:38:30 +02:00
|
|
|
{
|
2011-08-08 17:38:17 +02:00
|
|
|
return dateTimeStr(QDateTime::fromTime_t((qint32)nTime));
|
2011-08-03 20:52:18 +02:00
|
|
|
}
|
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
QString GUIUtil::dateTimeStr(const QDateTime &date)
|
2011-08-03 20:52:18 +02:00
|
|
|
{
|
2011-05-27 19:48:42 +02:00
|
|
|
return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm");
|
2011-05-27 18:38:30 +02:00
|
|
|
}
|
2011-06-01 20:08:21 +02:00
|
|
|
|
2011-06-02 15:57:23 +02:00
|
|
|
QFont GUIUtil::bitcoinAddressFont()
|
2011-06-01 20:08:21 +02:00
|
|
|
{
|
|
|
|
QFont font("Monospace");
|
|
|
|
font.setStyleHint(QFont::TypeWriter);
|
|
|
|
return font;
|
|
|
|
}
|
2011-06-02 15:57:23 +02:00
|
|
|
|
|
|
|
void GUIUtil::setupAddressWidget(QLineEdit *widget, QWidget *parent)
|
|
|
|
{
|
|
|
|
widget->setMaxLength(BitcoinAddressValidator::MaxAddressLength);
|
|
|
|
widget->setValidator(new BitcoinAddressValidator(parent));
|
|
|
|
widget->setFont(bitcoinAddressFont());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GUIUtil::setupAmountWidget(QLineEdit *widget, QWidget *parent)
|
|
|
|
{
|
|
|
|
QDoubleValidator *amountValidator = new QDoubleValidator(parent);
|
|
|
|
amountValidator->setDecimals(8);
|
|
|
|
amountValidator->setBottom(0.0);
|
|
|
|
widget->setValidator(amountValidator);
|
2011-06-11 12:46:09 +02:00
|
|
|
widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
2011-06-02 15:57:23 +02:00
|
|
|
}
|
2011-08-07 16:04:48 +02:00
|
|
|
|
|
|
|
bool GUIUtil::parseBitcoinURL(const QUrl *url, SendCoinsRecipient *out)
|
|
|
|
{
|
|
|
|
if(url->scheme() != QString("bitcoin"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
SendCoinsRecipient rv;
|
|
|
|
rv.address = url->path();
|
2012-02-07 19:46:53 +01:00
|
|
|
rv.amount = 0;
|
|
|
|
QList<QPair<QString, QString> > items = url->queryItems();
|
|
|
|
for (QList<QPair<QString, QString> >::iterator i = items.begin(); i != items.end(); i++)
|
2011-08-07 16:16:49 +02:00
|
|
|
{
|
2012-02-07 19:46:53 +01:00
|
|
|
bool fShouldReturnFalse = false;
|
|
|
|
if (i->first.startsWith("req-"))
|
2011-08-07 16:16:49 +02:00
|
|
|
{
|
2012-02-07 19:46:53 +01:00
|
|
|
i->first.remove(0, 4);
|
|
|
|
fShouldReturnFalse = true;
|
2011-08-07 16:16:49 +02:00
|
|
|
}
|
2012-02-07 19:46:53 +01:00
|
|
|
|
|
|
|
if (i->first == "label")
|
|
|
|
{
|
|
|
|
rv.label = i->second;
|
|
|
|
fShouldReturnFalse = false;
|
|
|
|
}
|
|
|
|
else if (i->first == "amount")
|
|
|
|
{
|
|
|
|
if(!i->second.isEmpty())
|
|
|
|
{
|
|
|
|
if(!BitcoinUnits::parse(BitcoinUnits::BTC, i->second, &rv.amount))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fShouldReturnFalse = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fShouldReturnFalse)
|
|
|
|
return false;
|
2011-08-07 16:04:48 +02:00
|
|
|
}
|
|
|
|
if(out)
|
|
|
|
{
|
|
|
|
*out = rv;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2011-11-11 10:13:25 +01:00
|
|
|
|
|
|
|
QString GUIUtil::HtmlEscape(const QString& str, bool fMultiLine)
|
|
|
|
{
|
|
|
|
QString escaped = Qt::escape(str);
|
|
|
|
if(fMultiLine)
|
|
|
|
{
|
|
|
|
escaped = escaped.replace("\n", "<br>\n");
|
|
|
|
}
|
|
|
|
return escaped;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GUIUtil::HtmlEscape(const std::string& str, bool fMultiLine)
|
|
|
|
{
|
|
|
|
return HtmlEscape(QString::fromStdString(str), fMultiLine);
|
|
|
|
}
|
2011-12-04 14:14:10 +01:00
|
|
|
|
|
|
|
void GUIUtil::copyEntryData(QAbstractItemView *view, int column, int role)
|
|
|
|
{
|
|
|
|
if(!view || !view->selectionModel())
|
|
|
|
return;
|
|
|
|
QModelIndexList selection = view->selectionModel()->selectedRows(column);
|
|
|
|
|
|
|
|
if(!selection.isEmpty())
|
|
|
|
{
|
|
|
|
// Copy first item
|
|
|
|
QApplication::clipboard()->setText(selection.at(0).data(role).toString());
|
|
|
|
}
|
|
|
|
}
|