2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-27 18:38:30 +02:00
|
|
|
#include "guiutil.h"
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2011-06-02 15:57:23 +02:00
|
|
|
#include "bitcoinaddressvalidator.h"
|
2011-08-07 16:04:48 +02:00
|
|
|
#include "bitcoinunits.h"
|
2013-11-20 15:56:51 +01:00
|
|
|
#include "qvalidatedlineedit.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "walletmodel.h"
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "core.h"
|
2012-05-20 15:49:17 +02:00
|
|
|
#include "init.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "util.h"
|
2012-05-09 22:07:00 +02:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#ifdef _WIN32_WINNT
|
|
|
|
#undef _WIN32_WINNT
|
|
|
|
#endif
|
|
|
|
#define _WIN32_WINNT 0x0501
|
|
|
|
#ifdef _WIN32_IE
|
|
|
|
#undef _WIN32_IE
|
|
|
|
#endif
|
|
|
|
#define _WIN32_IE 0x0501
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
#ifndef NOMINMAX
|
|
|
|
#define NOMINMAX
|
|
|
|
#endif
|
2012-06-09 17:14:41 +02:00
|
|
|
#include "shellapi.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "shlobj.h"
|
|
|
|
#include "shlwapi.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/filesystem/fstream.hpp>
|
2014-03-22 10:22:42 +01:00
|
|
|
#if BOOST_FILESYSTEM_VERSION >= 3
|
|
|
|
#include <boost/filesystem/detail/utf8_codecvt_facet.hpp>
|
|
|
|
#endif
|
2013-12-03 09:25:24 +01:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QAbstractItemView>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
#include <QDoubleValidator>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QTextDocument> // for Qt::mightBeRichText
|
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
#if QT_VERSION < 0x050000
|
|
|
|
#include <QUrl>
|
|
|
|
#else
|
|
|
|
#include <QUrlQuery>
|
2012-05-09 22:07:00 +02:00
|
|
|
#endif
|
|
|
|
|
2014-03-22 10:22:42 +01:00
|
|
|
#if BOOST_FILESYSTEM_VERSION >= 3
|
|
|
|
static boost::filesystem::detail::utf8_codecvt_facet utf8;
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2013-11-20 15:56:51 +01:00
|
|
|
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent)
|
2011-06-02 15:57:23 +02:00
|
|
|
{
|
2013-11-20 15:56:51 +01:00
|
|
|
parent->setFocusProxy(widget);
|
|
|
|
|
2011-06-02 15:57:23 +02:00
|
|
|
widget->setFont(bitcoinAddressFont());
|
2013-11-20 15:56:51 +01:00
|
|
|
#if QT_VERSION >= 0x040700
|
|
|
|
widget->setPlaceholderText(QObject::tr("Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)"));
|
|
|
|
#endif
|
|
|
|
widget->setValidator(new BitcoinAddressEntryValidator(parent));
|
|
|
|
widget->setCheckValidator(new BitcoinAddressCheckValidator(parent));
|
2011-06-02 15:57:23 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2014-01-28 10:48:41 +01:00
|
|
|
// return if URI is not valid or is no bitcoin: URI
|
2013-01-20 18:46:53 +01:00
|
|
|
if(!uri.isValid() || 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;
|
2013-05-31 14:02:24 +02:00
|
|
|
|
|
|
|
#if QT_VERSION < 0x050000
|
2012-03-25 23:25:10 +02:00
|
|
|
QList<QPair<QString, QString> > items = uri.queryItems();
|
2013-05-31 14:02:24 +02:00
|
|
|
#else
|
|
|
|
QUrlQuery uriQuery(uri);
|
|
|
|
QList<QPair<QString, QString> > items = uriQuery.queryItems();
|
|
|
|
#endif
|
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;
|
|
|
|
}
|
2013-10-18 13:44:27 +02:00
|
|
|
if (i->first == "message")
|
|
|
|
{
|
|
|
|
rv.message = i->second;
|
|
|
|
fShouldReturnFalse = false;
|
|
|
|
}
|
2012-02-07 19:46:53 +01:00
|
|
|
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,
|
2012-07-26 02:48:39 +02:00
|
|
|
// which will lower-case it (and thus invalidate the address).
|
2013-11-12 16:40:09 +01:00
|
|
|
if(uri.startsWith("bitcoin://", Qt::CaseInsensitive))
|
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
|
|
|
}
|
|
|
|
|
2013-10-18 14:03:17 +02:00
|
|
|
QString formatBitcoinURI(const SendCoinsRecipient &info)
|
|
|
|
{
|
|
|
|
QString ret = QString("bitcoin:%1").arg(info.address);
|
|
|
|
int paramCount = 0;
|
|
|
|
|
|
|
|
if (info.amount)
|
|
|
|
{
|
|
|
|
ret += QString("?amount=%1").arg(BitcoinUnits::format(BitcoinUnits::BTC, info.amount));
|
|
|
|
paramCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!info.label.isEmpty())
|
|
|
|
{
|
|
|
|
QString lbl(QUrl::toPercentEncoding(info.label));
|
|
|
|
ret += QString("%1label=%2").arg(paramCount == 0 ? "?" : "&").arg(lbl);
|
|
|
|
paramCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!info.message.isEmpty())
|
|
|
|
{
|
|
|
|
QString msg(QUrl::toPercentEncoding(info.message));;
|
|
|
|
ret += QString("%1message=%2").arg(paramCount == 0 ? "?" : "&").arg(msg);
|
|
|
|
paramCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-08-08 05:09:07 +02:00
|
|
|
bool isDust(const QString& address, qint64 amount)
|
|
|
|
{
|
|
|
|
CTxDestination dest = CBitcoinAddress(address.toStdString()).Get();
|
|
|
|
CScript script; script.SetDestination(dest);
|
|
|
|
CTxOut txOut(amount, script);
|
|
|
|
return txOut.IsDust(CTransaction::nMinRelayTxFee);
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
QString HtmlEscape(const QString& str, bool fMultiLine)
|
2011-11-11 10:13:25 +01:00
|
|
|
{
|
2013-05-31 14:02:24 +02:00
|
|
|
#if QT_VERSION < 0x050000
|
2011-11-11 10:13:25 +01:00
|
|
|
QString escaped = Qt::escape(str);
|
2013-05-31 14:02:24 +02:00
|
|
|
#else
|
|
|
|
QString escaped = str.toHtmlEscaped();
|
|
|
|
#endif
|
2011-11-11 10:13:25 +01:00
|
|
|
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())
|
|
|
|
{
|
2013-11-16 17:52:37 +01:00
|
|
|
// Copy first item
|
|
|
|
setClipboard(selection.at(0).data(role).toString());
|
2011-12-04 14:14:10 +01:00
|
|
|
}
|
|
|
|
}
|
2012-02-15 14:47:08 +01:00
|
|
|
|
2013-10-26 19:05:37 +02:00
|
|
|
QString getSaveFileName(QWidget *parent, const QString &caption, const QString &dir,
|
|
|
|
const QString &filter,
|
|
|
|
QString *selectedSuffixOut)
|
2012-02-15 14:47:08 +01:00
|
|
|
{
|
|
|
|
QString selectedFilter;
|
|
|
|
QString myDir;
|
|
|
|
if(dir.isEmpty()) // Default to user documents location
|
|
|
|
{
|
2013-05-31 14:02:24 +02:00
|
|
|
#if QT_VERSION < 0x050000
|
2012-02-15 14:47:08 +01:00
|
|
|
myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation);
|
2013-05-31 14:02:24 +02:00
|
|
|
#else
|
|
|
|
myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
|
|
|
#endif
|
2012-02-15 14:47:08 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
myDir = dir;
|
|
|
|
}
|
2013-10-26 19:05:37 +02:00
|
|
|
/* Directly convert path to native OS path separators */
|
|
|
|
QString result = QDir::toNativeSeparators(QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter));
|
2012-02-15 14:47:08 +01:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2013-11-06 15:08:56 +01:00
|
|
|
QString getOpenFileName(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
|
|
|
|
{
|
|
|
|
#if QT_VERSION < 0x050000
|
|
|
|
myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation);
|
|
|
|
#else
|
|
|
|
myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
myDir = dir;
|
|
|
|
}
|
|
|
|
/* Directly convert path to native OS path separators */
|
|
|
|
QString result = QDir::toNativeSeparators(QFileDialog::getOpenFileName(parent, caption, myDir, filter, &selectedFilter));
|
|
|
|
|
|
|
|
if(selectedSuffixOut)
|
|
|
|
{
|
|
|
|
/* 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);
|
|
|
|
}
|
|
|
|
*selectedSuffixOut = selectedSuffix;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
Qt::ConnectionType blockingGUIThreadConnection()
|
2012-03-24 17:07:29 +01:00
|
|
|
{
|
2013-04-02 11:16:54 +02:00
|
|
|
if(QThread::currentThread() != qApp->thread())
|
2012-03-24 17:07:29 +01:00
|
|
|
{
|
|
|
|
return Qt::BlockingQueuedConnection;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Qt::DirectConnection;
|
|
|
|
}
|
|
|
|
}
|
2012-02-17 15:34:53 +01:00
|
|
|
|
|
|
|
bool checkPoint(const QPoint &p, const QWidget *w)
|
|
|
|
{
|
2013-04-02 17:30:14 +02:00
|
|
|
QWidget *atW = QApplication::widgetAt(w->mapToGlobal(p));
|
2012-03-28 14:55:29 +02:00
|
|
|
if (!atW) return false;
|
|
|
|
return atW->topLevelWidget() == w;
|
2012-02-17 15:34:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isObscured(QWidget *w)
|
|
|
|
{
|
2012-03-28 14:55:29 +02:00
|
|
|
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-02-17 15:34:53 +01:00
|
|
|
}
|
|
|
|
|
2012-05-09 22:07:00 +02:00
|
|
|
void openDebugLogfile()
|
|
|
|
{
|
|
|
|
boost::filesystem::path pathDebug = GetDataDir() / "debug.log";
|
|
|
|
|
2012-06-12 16:35:19 +02:00
|
|
|
/* Open debug.log with the associated application */
|
2012-05-09 22:07:00 +02:00
|
|
|
if (boost::filesystem::exists(pathDebug))
|
2014-03-22 10:22:42 +01:00
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug)));
|
2012-05-09 22:07:00 +02:00
|
|
|
}
|
|
|
|
|
2012-05-11 11:32:04 +02:00
|
|
|
ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) :
|
|
|
|
QObject(parent), size_threshold(size_threshold)
|
2012-04-13 17:10:50 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt)
|
|
|
|
{
|
|
|
|
if(evt->type() == QEvent::ToolTipChange)
|
|
|
|
{
|
|
|
|
QWidget *widget = static_cast<QWidget*>(obj);
|
|
|
|
QString tooltip = widget->toolTip();
|
2014-01-23 12:31:54 +01:00
|
|
|
if(tooltip.size() > size_threshold && !tooltip.startsWith("<qt") && !Qt::mightBeRichText(tooltip))
|
2012-04-13 17:10:50 +02:00
|
|
|
{
|
2014-01-23 12:31:54 +01:00
|
|
|
// Envelop with <qt></qt> to make sure Qt detects this as rich text
|
2012-04-13 17:10:50 +02:00
|
|
|
// Escape the current message as HTML and replace \n by <br>
|
2014-01-23 12:31:54 +01:00
|
|
|
tooltip = "<qt>" + HtmlEscape(tooltip, true) + "</qt>";
|
2012-04-13 17:10:50 +02:00
|
|
|
widget->setToolTip(tooltip);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QObject::eventFilter(obj, evt);
|
|
|
|
}
|
|
|
|
|
2014-03-21 06:45:47 +01:00
|
|
|
void TableViewLastColumnResizingFixer::connectViewHeadersSignals()
|
|
|
|
{
|
|
|
|
connect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int)));
|
|
|
|
connect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged()));
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// We need to disconnect these while handling the resize events, otherwise we can enter infinite loops.
|
2014-03-21 06:45:47 +01:00
|
|
|
void TableViewLastColumnResizingFixer::disconnectViewHeadersSignals()
|
|
|
|
{
|
|
|
|
disconnect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int)));
|
|
|
|
disconnect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged()));
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed.
|
|
|
|
// Refactored here for readability.
|
2014-03-21 06:45:47 +01:00
|
|
|
void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode)
|
|
|
|
{
|
|
|
|
#if QT_VERSION < 0x050000
|
|
|
|
tableView->horizontalHeader()->setResizeMode(logicalIndex, resizeMode);
|
|
|
|
#else
|
|
|
|
tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width)
|
|
|
|
{
|
2014-03-21 06:45:47 +01:00
|
|
|
tableView->setColumnWidth(nColumnIndex, width);
|
|
|
|
tableView->horizontalHeader()->resizeSection(nColumnIndex, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
int TableViewLastColumnResizingFixer::getColumnsWidth()
|
|
|
|
{
|
|
|
|
int nColumnsWidthSum = 0;
|
|
|
|
for (int i = 0; i < columnCount; i++)
|
|
|
|
{
|
|
|
|
nColumnsWidthSum += tableView->horizontalHeader()->sectionSize(i);
|
|
|
|
}
|
|
|
|
return nColumnsWidthSum;
|
|
|
|
}
|
|
|
|
|
|
|
|
int TableViewLastColumnResizingFixer::getAvailableWidthForColumn(int column)
|
|
|
|
{
|
|
|
|
int nResult = lastColumnMinimumWidth;
|
|
|
|
int nTableWidth = tableView->horizontalHeader()->width();
|
|
|
|
|
|
|
|
if (nTableWidth > 0)
|
|
|
|
{
|
|
|
|
int nOtherColsWidth = getColumnsWidth() - tableView->horizontalHeader()->sectionSize(column);
|
|
|
|
nResult = std::max(nResult, nTableWidth - nOtherColsWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nResult;
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// Make sure we don't make the columns wider than the tables viewport width.
|
2014-03-21 06:45:47 +01:00
|
|
|
void TableViewLastColumnResizingFixer::adjustTableColumnsWidth()
|
|
|
|
{
|
|
|
|
disconnectViewHeadersSignals();
|
|
|
|
resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex));
|
|
|
|
connectViewHeadersSignals();
|
|
|
|
|
|
|
|
int nTableWidth = tableView->horizontalHeader()->width();
|
|
|
|
int nColsWidth = getColumnsWidth();
|
|
|
|
if (nColsWidth > nTableWidth)
|
|
|
|
{
|
|
|
|
resizeColumn(secondToLastColumnIndex,getAvailableWidthForColumn(secondToLastColumnIndex));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// Make column use all the space available, useful during window resizing.
|
|
|
|
void TableViewLastColumnResizingFixer::stretchColumnWidth(int column)
|
|
|
|
{
|
2014-03-21 06:45:47 +01:00
|
|
|
disconnectViewHeadersSignals();
|
|
|
|
resizeColumn(column, getAvailableWidthForColumn(column));
|
|
|
|
connectViewHeadersSignals();
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// When a section is resized this is a slot-proxy for ajustAmountColumnWidth().
|
2014-03-21 06:45:47 +01:00
|
|
|
void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize)
|
|
|
|
{
|
|
|
|
adjustTableColumnsWidth();
|
|
|
|
int remainingWidth = getAvailableWidthForColumn(logicalIndex);
|
|
|
|
if (newSize > remainingWidth)
|
|
|
|
{
|
|
|
|
resizeColumn(logicalIndex, remainingWidth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// When the tabless geometry is ready, we manually perform the stretch of the "Message" column,
|
|
|
|
// as the "Stretch" resize mode does not allow for interactive resizing.
|
2014-03-21 06:45:47 +01:00
|
|
|
void TableViewLastColumnResizingFixer::on_geometriesChanged()
|
|
|
|
{
|
|
|
|
if ((getColumnsWidth() - this->tableView->horizontalHeader()->width()) != 0)
|
|
|
|
{
|
|
|
|
disconnectViewHeadersSignals();
|
|
|
|
resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex));
|
|
|
|
connectViewHeadersSignals();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes all internal variables and prepares the
|
|
|
|
* the resize modes of the last 2 columns of the table and
|
|
|
|
*/
|
|
|
|
TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth) :
|
2014-03-21 09:12:01 +01:00
|
|
|
tableView(table),
|
|
|
|
lastColumnMinimumWidth(lastColMinimumWidth),
|
|
|
|
allColumnsMinimumWidth(allColsMinimumWidth)
|
2014-03-21 06:45:47 +01:00
|
|
|
{
|
|
|
|
columnCount = tableView->horizontalHeader()->count();
|
|
|
|
lastColumnIndex = columnCount - 1;
|
|
|
|
secondToLastColumnIndex = columnCount - 2;
|
|
|
|
tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth);
|
|
|
|
setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::Interactive);
|
|
|
|
setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Interactive);
|
|
|
|
}
|
|
|
|
|
2012-05-01 18:44:11 +02:00
|
|
|
#ifdef WIN32
|
|
|
|
boost::filesystem::path static StartupShortcutPath()
|
|
|
|
{
|
|
|
|
return GetSpecialFolderPath(CSIDL_STARTUP) / "Bitcoin.lnk";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetStartOnSystemStartup()
|
|
|
|
{
|
|
|
|
// check for Bitcoin.lnk
|
|
|
|
return boost::filesystem::exists(StartupShortcutPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetStartOnSystemStartup(bool fAutoStart)
|
|
|
|
{
|
|
|
|
// If the shortcut exists already, remove it for updating
|
|
|
|
boost::filesystem::remove(StartupShortcutPath());
|
|
|
|
|
|
|
|
if (fAutoStart)
|
|
|
|
{
|
|
|
|
CoInitialize(NULL);
|
|
|
|
|
|
|
|
// Get a pointer to the IShellLink interface.
|
|
|
|
IShellLink* psl = NULL;
|
|
|
|
HRESULT hres = CoCreateInstance(CLSID_ShellLink, NULL,
|
|
|
|
CLSCTX_INPROC_SERVER, IID_IShellLink,
|
|
|
|
reinterpret_cast<void**>(&psl));
|
|
|
|
|
|
|
|
if (SUCCEEDED(hres))
|
|
|
|
{
|
|
|
|
// Get the current executable path
|
|
|
|
TCHAR pszExePath[MAX_PATH];
|
|
|
|
GetModuleFileName(NULL, pszExePath, sizeof(pszExePath));
|
|
|
|
|
|
|
|
TCHAR pszArgs[5] = TEXT("-min");
|
|
|
|
|
|
|
|
// Set the path to the shortcut target
|
|
|
|
psl->SetPath(pszExePath);
|
|
|
|
PathRemoveFileSpec(pszExePath);
|
|
|
|
psl->SetWorkingDirectory(pszExePath);
|
|
|
|
psl->SetShowCmd(SW_SHOWMINNOACTIVE);
|
|
|
|
psl->SetArguments(pszArgs);
|
|
|
|
|
|
|
|
// Query IShellLink for the IPersistFile interface for
|
|
|
|
// saving the shortcut in persistent storage.
|
|
|
|
IPersistFile* ppf = NULL;
|
|
|
|
hres = psl->QueryInterface(IID_IPersistFile,
|
|
|
|
reinterpret_cast<void**>(&ppf));
|
|
|
|
if (SUCCEEDED(hres))
|
|
|
|
{
|
|
|
|
WCHAR pwsz[MAX_PATH];
|
|
|
|
// Ensure that the string is ANSI.
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, StartupShortcutPath().string().c_str(), -1, pwsz, MAX_PATH);
|
|
|
|
// Save the link by calling IPersistFile::Save.
|
|
|
|
hres = ppf->Save(pwsz, TRUE);
|
|
|
|
ppf->Release();
|
|
|
|
psl->Release();
|
|
|
|
CoUninitialize();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
psl->Release();
|
|
|
|
}
|
|
|
|
CoUninitialize();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(LINUX)
|
|
|
|
|
|
|
|
// Follow the Desktop Application Autostart Spec:
|
|
|
|
// http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
|
|
|
|
|
|
|
|
boost::filesystem::path static GetAutostartDir()
|
|
|
|
{
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
char* pszConfigHome = getenv("XDG_CONFIG_HOME");
|
|
|
|
if (pszConfigHome) return fs::path(pszConfigHome) / "autostart";
|
|
|
|
char* pszHome = getenv("HOME");
|
|
|
|
if (pszHome) return fs::path(pszHome) / ".config" / "autostart";
|
|
|
|
return fs::path();
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::filesystem::path static GetAutostartFilePath()
|
|
|
|
{
|
|
|
|
return GetAutostartDir() / "bitcoin.desktop";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetStartOnSystemStartup()
|
|
|
|
{
|
|
|
|
boost::filesystem::ifstream optionFile(GetAutostartFilePath());
|
|
|
|
if (!optionFile.good())
|
|
|
|
return false;
|
|
|
|
// Scan through file for "Hidden=true":
|
|
|
|
std::string line;
|
|
|
|
while (!optionFile.eof())
|
|
|
|
{
|
|
|
|
getline(optionFile, line);
|
|
|
|
if (line.find("Hidden") != std::string::npos &&
|
|
|
|
line.find("true") != std::string::npos)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
optionFile.close();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetStartOnSystemStartup(bool fAutoStart)
|
|
|
|
{
|
|
|
|
if (!fAutoStart)
|
|
|
|
boost::filesystem::remove(GetAutostartFilePath());
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char pszExePath[MAX_PATH+1];
|
|
|
|
memset(pszExePath, 0, sizeof(pszExePath));
|
|
|
|
if (readlink("/proc/self/exe", pszExePath, sizeof(pszExePath)-1) == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
boost::filesystem::create_directories(GetAutostartDir());
|
|
|
|
|
|
|
|
boost::filesystem::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out|std::ios_base::trunc);
|
|
|
|
if (!optionFile.good())
|
|
|
|
return false;
|
|
|
|
// Write a bitcoin.desktop file to the autostart directory:
|
|
|
|
optionFile << "[Desktop Entry]\n";
|
|
|
|
optionFile << "Type=Application\n";
|
|
|
|
optionFile << "Name=Bitcoin\n";
|
|
|
|
optionFile << "Exec=" << pszExePath << " -min\n";
|
|
|
|
optionFile << "Terminal=false\n";
|
|
|
|
optionFile << "Hidden=false\n";
|
|
|
|
optionFile.close();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-03 15:18:28 +02:00
|
|
|
|
|
|
|
#elif defined(Q_OS_MAC)
|
|
|
|
// based on: https://github.com/Mozketo/LaunchAtLoginController/blob/master/LaunchAtLoginController.m
|
|
|
|
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
#include <CoreServices/CoreServices.h>
|
|
|
|
|
|
|
|
LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl);
|
|
|
|
LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl)
|
|
|
|
{
|
|
|
|
// loop through the list of startup items and try to find the bitcoin app
|
|
|
|
CFArrayRef listSnapshot = LSSharedFileListCopySnapshot(list, NULL);
|
|
|
|
for(int i = 0; i < CFArrayGetCount(listSnapshot); i++) {
|
|
|
|
LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(listSnapshot, i);
|
|
|
|
UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes;
|
|
|
|
CFURLRef currentItemURL = NULL;
|
|
|
|
LSSharedFileListItemResolve(item, resolutionFlags, ¤tItemURL, NULL);
|
|
|
|
if(currentItemURL && CFEqual(currentItemURL, findUrl)) {
|
|
|
|
// found
|
|
|
|
CFRelease(currentItemURL);
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
if(currentItemURL) {
|
|
|
|
CFRelease(currentItemURL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetStartOnSystemStartup()
|
|
|
|
{
|
|
|
|
CFURLRef bitcoinAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
|
|
|
LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL);
|
|
|
|
LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl);
|
|
|
|
return !!foundItem; // return boolified object
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetStartOnSystemStartup(bool fAutoStart)
|
|
|
|
{
|
|
|
|
CFURLRef bitcoinAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
|
|
|
|
LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL);
|
|
|
|
LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl);
|
|
|
|
|
|
|
|
if(fAutoStart && !foundItem) {
|
|
|
|
// add bitcoin app to startup item list
|
|
|
|
LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, NULL, NULL, bitcoinAppUrl, NULL, NULL);
|
|
|
|
}
|
|
|
|
else if(!fAutoStart && foundItem) {
|
|
|
|
// remove item
|
|
|
|
LSSharedFileListItemRemove(loginItems, foundItem);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#else
|
2012-05-01 18:44:11 +02:00
|
|
|
|
|
|
|
bool GetStartOnSystemStartup() { return false; }
|
|
|
|
bool SetStartOnSystemStartup(bool fAutoStart) { return false; }
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-07-13 13:14:23 +02:00
|
|
|
void saveWindowGeometry(const QString& strSetting, QWidget *parent)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.setValue(strSetting + "Pos", parent->pos());
|
|
|
|
settings.setValue(strSetting + "Size", parent->size());
|
|
|
|
}
|
|
|
|
|
|
|
|
void restoreWindowGeometry(const QString& strSetting, const QSize& defaultSize, QWidget *parent)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
QPoint pos = settings.value(strSetting + "Pos").toPoint();
|
|
|
|
QSize size = settings.value(strSetting + "Size", defaultSize).toSize();
|
|
|
|
|
|
|
|
if (!pos.x() && !pos.y()) {
|
|
|
|
QRect screen = QApplication::desktop()->screenGeometry();
|
|
|
|
pos.setX((screen.width() - size.width()) / 2);
|
|
|
|
pos.setY((screen.height() - size.height()) / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->resize(size);
|
|
|
|
parent->move(pos);
|
|
|
|
}
|
|
|
|
|
2013-08-12 17:03:03 +02:00
|
|
|
void setClipboard(const QString& str)
|
|
|
|
{
|
|
|
|
QApplication::clipboard()->setText(str, QClipboard::Clipboard);
|
|
|
|
QApplication::clipboard()->setText(str, QClipboard::Selection);
|
|
|
|
}
|
|
|
|
|
2014-03-22 10:22:42 +01:00
|
|
|
#if BOOST_FILESYSTEM_VERSION >= 3
|
|
|
|
boost::filesystem::path qstringToBoostPath(const QString &path)
|
|
|
|
{
|
|
|
|
return boost::filesystem::path(path.toStdString(), utf8);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString boostPathToQString(const boost::filesystem::path &path)
|
|
|
|
{
|
|
|
|
return QString::fromStdString(path.string(utf8));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#warning Conversion between boost path and QString can use invalid character encoding with boost_filesystem v2 and older
|
|
|
|
boost::filesystem::path qstringToBoostPath(const QString &path)
|
|
|
|
{
|
|
|
|
return boost::filesystem::path(path.toStdString());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString boostPathToQString(const boost::filesystem::path &path)
|
|
|
|
{
|
|
|
|
return QString::fromStdString(path.string());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-02-17 15:34:53 +01:00
|
|
|
} // namespace GUIUtil
|