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
|
|
|
|
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
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
namespace GUIUtil {
|
|
|
|
|
|
|
|
QString dateTimeStr(const QDateTime &date)
|
2011-05-27 18:38:30 +02:00
|
|
|
{
|
2012-02-17 15:34:53 +01:00
|
|
|
return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm");
|
2011-08-03 20:52:18 +02:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
QString dateTimeStr(qint64 nTime)
|
2011-08-03 20:52:18 +02:00
|
|
|
{
|
2012-02-17 15:34:53 +01:00
|
|
|
return dateTimeStr(QDateTime::fromTime_t((qint32)nTime));
|
2011-05-27 18:38:30 +02:00
|
|
|
}
|
2011-06-01 20:08:21 +02:00
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
QFont 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
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
void setupAddressWidget(QLineEdit *widget, QWidget *parent)
|
2011-06-02 15:57:23 +02:00
|
|
|
{
|
|
|
|
widget->setMaxLength(BitcoinAddressValidator::MaxAddressLength);
|
|
|
|
widget->setValidator(new BitcoinAddressValidator(parent));
|
|
|
|
widget->setFont(bitcoinAddressFont());
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
void setupAmountWidget(QLineEdit *widget, QWidget *parent)
|
2011-06-02 15:57:23 +02:00
|
|
|
{
|
|
|
|
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:34:53 +01:00
|
|
|
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
|
2011-08-07 16:04:48 +02:00
|
|
|
{
|
2012-03-25 23:25:10 +02:00
|
|
|
if(uri.scheme() != QString("bitcoin"))
|
2011-08-07 16:04:48 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
SendCoinsRecipient rv;
|
2012-03-25 23:25:10 +02:00
|
|
|
rv.address = uri.path();
|
2012-02-07 19:46:53 +01:00
|
|
|
rv.amount = 0;
|
2012-03-25 23:25:10 +02:00
|
|
|
QList<QPair<QString, QString> > items = uri.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:34:53 +01:00
|
|
|
bool parseBitcoinURI(QString uri, SendCoinsRecipient *out)
|
2012-02-17 15:26:20 +01:00
|
|
|
{
|
|
|
|
// 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).
|
2012-03-25 23:25:10 +02:00
|
|
|
if(uri.startsWith("bitcoin://"))
|
2012-02-17 15:26:20 +01:00
|
|
|
{
|
2012-03-25 23:25:10 +02:00
|
|
|
uri.replace(0, 10, "bitcoin:");
|
2012-02-17 15:26:20 +01:00
|
|
|
}
|
2012-03-25 23:25:10 +02:00
|
|
|
QUrl uriInstance(uri);
|
|
|
|
return parseBitcoinURI(uriInstance, out);
|
2012-02-17 15:26:20 +01:00
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
QString HtmlEscape(const QString& str, bool fMultiLine)
|
2011-11-11 10:13:25 +01:00
|
|
|
{
|
|
|
|
QString escaped = Qt::escape(str);
|
|
|
|
if(fMultiLine)
|
|
|
|
{
|
|
|
|
escaped = escaped.replace("\n", "<br>\n");
|
|
|
|
}
|
|
|
|
return escaped;
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
QString HtmlEscape(const std::string& str, bool fMultiLine)
|
2011-11-11 10:13:25 +01:00
|
|
|
{
|
|
|
|
return HtmlEscape(QString::fromStdString(str), fMultiLine);
|
|
|
|
}
|
2011-12-04 14:14:10 +01:00
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
void copyEntryData(QAbstractItemView *view, int column, int role)
|
2011-12-04 14:14:10 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
QString getSaveFileName(QWidget *parent, const QString &caption,
|
2012-02-15 14:47:08 +01:00
|
|
|
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-02-17 15:34:53 +01:00
|
|
|
Qt::ConnectionType blockingGUIThreadConnection()
|
2012-03-24 17:07:29 +01:00
|
|
|
{
|
|
|
|
if(QThread::currentThread() != QCoreApplication::instance()->thread())
|
|
|
|
{
|
|
|
|
return Qt::BlockingQueuedConnection;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Qt::DirectConnection;
|
|
|
|
}
|
|
|
|
}
|
2012-02-17 15:34:53 +01:00
|
|
|
|
|
|
|
bool checkPoint(const QPoint &p, const QWidget *w)
|
|
|
|
{
|
|
|
|
QWidget *atW = qApp->widgetAt(w->mapToGlobal(p));
|
|
|
|
if(!atW) return false;
|
|
|
|
return atW->topLevelWidget() == w;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isObscured(QWidget *w)
|
|
|
|
{
|
|
|
|
|
|
|
|
return !(checkPoint(QPoint(0, 0), w)
|
|
|
|
&& checkPoint(QPoint(w->width() - 1, 0), w)
|
|
|
|
&& checkPoint(QPoint(0, w->height() - 1), w)
|
|
|
|
&& checkPoint(QPoint(w->width() - 1, w->height() - 1), w)
|
|
|
|
&& checkPoint(QPoint(w->width()/2, w->height()/2), w));
|
|
|
|
}
|
|
|
|
|
2012-04-13 17:10:50 +02:00
|
|
|
ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent):
|
|
|
|
size_threshold(size_threshold), QObject(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt)
|
|
|
|
{
|
|
|
|
if(evt->type() == QEvent::ToolTipChange)
|
|
|
|
{
|
|
|
|
QWidget *widget = static_cast<QWidget*>(obj);
|
|
|
|
QString tooltip = widget->toolTip();
|
|
|
|
if(!Qt::mightBeRichText(tooltip) && tooltip.size() > size_threshold)
|
|
|
|
{
|
|
|
|
// Prefix <qt/> to make sure Qt detects this as rich text
|
|
|
|
// Escape the current message as HTML and replace \n by <br>
|
|
|
|
tooltip = "<qt/>" + HtmlEscape(tooltip, true);
|
|
|
|
widget->setToolTip(tooltip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QObject::eventFilter(obj, evt);
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
} // namespace GUIUtil
|
|
|
|
|