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>
|
2012-02-15 14:47:08 +01:00
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QDesktopServices>
|
2012-03-24 17:07:29 +01:00
|
|
|
#include <QThread>
|
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
|
|
|
|
2012-02-17 15:26:20 +01:00
|
|
|
bool GUIUtil::parseBitcoinURL(const QUrl &url, SendCoinsRecipient *out)
|
2011-08-07 16:04:48 +02:00
|
|
|
{
|
2012-02-17 15:26:20 +01:00
|
|
|
if(url.scheme() != QString("bitcoin"))
|
2011-08-07 16:04:48 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
SendCoinsRecipient rv;
|
2012-02-17 15:26:20 +01:00
|
|
|
rv.address = url.path();
|
2012-02-07 19:46:53 +01:00
|
|
|
rv.amount = 0;
|
2012-02-17 15:26:20 +01:00
|
|
|
QList<QPair<QString, QString> > items = url.queryItems();
|
2012-02-07 19:46:53 +01:00
|
|
|
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
|
|
|
|
2012-02-17 15:26:20 +01:00
|
|
|
bool GUIUtil::parseBitcoinURL(QString url, SendCoinsRecipient *out)
|
|
|
|
{
|
|
|
|
// Convert bitcoin:// to bitcoin:
|
|
|
|
//
|
|
|
|
// Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host,
|
|
|
|
// which will lowercase it (and thus invalidate the address).
|
|
|
|
if(url.startsWith("bitcoin://"))
|
|
|
|
{
|
|
|
|
url.replace(0, 10, "bitcoin:");
|
|
|
|
}
|
|
|
|
QUrl urlInstance(url);
|
|
|
|
return parseBitcoinURL(urlInstance, out);
|
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 14:47:08 +01:00
|
|
|
|
|
|
|
QString GUIUtil::getSaveFileName(QWidget *parent, const QString &caption,
|
|
|
|
const QString &dir,
|
|
|
|
const QString &filter,
|
|
|
|
QString *selectedSuffixOut)
|
|
|
|
{
|
|
|
|
QString selectedFilter;
|
|
|
|
QString myDir;
|
|
|
|
if(dir.isEmpty()) // Default to user documents location
|
|
|
|
{
|
|
|
|
myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
myDir = dir;
|
|
|
|
}
|
|
|
|
QString result = QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter);
|
|
|
|
|
|
|
|
/* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */
|
|
|
|
QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]");
|
|
|
|
QString selectedSuffix;
|
|
|
|
if(filter_re.exactMatch(selectedFilter))
|
|
|
|
{
|
|
|
|
selectedSuffix = filter_re.cap(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add suffix if needed */
|
|
|
|
QFileInfo info(result);
|
|
|
|
if(!result.isEmpty())
|
|
|
|
{
|
|
|
|
if(info.suffix().isEmpty() && !selectedSuffix.isEmpty())
|
|
|
|
{
|
|
|
|
/* No suffix specified, add selected suffix */
|
|
|
|
if(!result.endsWith("."))
|
|
|
|
result.append(".");
|
|
|
|
result.append(selectedSuffix);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return selected suffix if asked to */
|
|
|
|
if(selectedSuffixOut)
|
|
|
|
{
|
|
|
|
*selectedSuffixOut = selectedSuffix;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-03-24 17:07:29 +01:00
|
|
|
Qt::ConnectionType GUIUtil::blockingGUIThreadConnection()
|
|
|
|
{
|
|
|
|
if(QThread::currentThread() != QCoreApplication::instance()->thread())
|
|
|
|
{
|
|
|
|
return Qt::BlockingQueuedConnection;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Qt::DirectConnection;
|
|
|
|
}
|
|
|
|
}
|