123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976 |
- // Copyright (c) 2011-2016 The Starwels developers
- // Distributed under the MIT software license, see the accompanying
- // file COPYING or http://www.opensource.org/licenses/mit-license.php.
-
- #include "guiutil.h"
-
- #include "starwelsaddressvalidator.h"
- #include "starwelsunits.h"
- #include "qvalidatedlineedit.h"
- #include "walletmodel.h"
-
- #include "fs.h"
- #include "primitives/transaction.h"
- #include "init.h"
- #include "policy/policy.h"
- #include "protocol.h"
- #include "script/script.h"
- #include "script/standard.h"
- #include "util.h"
-
- #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
- #include "shellapi.h"
- #include "shlobj.h"
- #include "shlwapi.h"
- #endif
-
- #include <boost/scoped_array.hpp>
-
- #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>
- #include <QMouseEvent>
-
- #if QT_VERSION < 0x050000
- #include <QUrl>
- #else
- #include <QUrlQuery>
- #endif
-
- #if QT_VERSION >= 0x50200
- #include <QFontDatabase>
- #endif
-
- static fs::detail::utf8_codecvt_facet utf8;
-
- #if defined(Q_OS_MAC)
- extern double NSAppKitVersionNumber;
- #if !defined(NSAppKitVersionNumber10_8)
- #define NSAppKitVersionNumber10_8 1187
- #endif
- #if !defined(NSAppKitVersionNumber10_9)
- #define NSAppKitVersionNumber10_9 1265
- #endif
- #endif
-
- namespace GUIUtil {
-
- QString dateTimeStr(const QDateTime &date)
- {
- return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm");
- }
-
- QString dateTimeStr(qint64 nTime)
- {
- return dateTimeStr(QDateTime::fromTime_t((qint32)nTime));
- }
-
- QFont fixedPitchFont()
- {
- #if QT_VERSION >= 0x50200
- return QFontDatabase::systemFont(QFontDatabase::FixedFont);
- #else
- QFont font("Monospace");
- #if QT_VERSION >= 0x040800
- font.setStyleHint(QFont::Monospace);
- #else
- font.setStyleHint(QFont::TypeWriter);
- #endif
- return font;
- #endif
- }
-
- // Just some dummy data to generate an convincing random-looking (but consistent) address
- static const uint8_t dummydata[] = {0xeb,0x15,0x23,0x1d,0xfc,0xeb,0x60,0x92,0x58,0x86,0xb6,0x7d,0x06,0x52,0x99,0x92,0x59,0x15,0xae,0xb1,0x72,0xc0,0x66,0x47};
-
- // Generate a dummy address with invalid CRC, starting with the network prefix.
- static std::string DummyAddress(const CChainParams ¶ms)
- {
- std::vector<unsigned char> sourcedata = params.Base58Prefix(CChainParams::PUBKEY_ADDRESS);
- sourcedata.insert(sourcedata.end(), dummydata, dummydata + sizeof(dummydata));
- for(int i=0; i<256; ++i) { // Try every trailing byte
- std::string s = EncodeBase58(sourcedata.data(), sourcedata.data() + sourcedata.size());
- if (!CStarwelsAddress(s).IsValid())
- return s;
- sourcedata[sourcedata.size()-1] += 1;
- }
- return "";
- }
-
- void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent)
- {
- parent->setFocusProxy(widget);
-
- widget->setFont(fixedPitchFont());
- #if QT_VERSION >= 0x040700
- // We don't want translators to use own addresses in translations
- // and this is the only place, where this address is supplied.
- widget->setPlaceholderText(QObject::tr("Enter a Starwels address (e.g. %1)").arg(
- QString::fromStdString(DummyAddress(Params()))));
- #endif
- widget->setValidator(new StarwelsAddressEntryValidator(parent));
- widget->setCheckValidator(new StarwelsAddressCheckValidator(parent));
- }
-
- void setupAmountWidget(QLineEdit *widget, QWidget *parent)
- {
- QDoubleValidator *amountValidator = new QDoubleValidator(parent);
- amountValidator->setDecimals(8);
- amountValidator->setBottom(0.0);
- widget->setValidator(amountValidator);
- widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
- }
-
- bool parseStarwelsURI(const QUrl &uri, SendCoinsRecipient *out)
- {
- // return if URI is not valid or is no starwels: URI
- if(!uri.isValid() || uri.scheme() != QString("starwels"))
- return false;
-
- SendCoinsRecipient rv;
- rv.address = uri.path();
- // Trim any following forward slash which may have been added by the OS
- if (rv.address.endsWith("/")) {
- rv.address.truncate(rv.address.length() - 1);
- }
- rv.amount = 0;
-
- #if QT_VERSION < 0x050000
- QList<QPair<QString, QString> > items = uri.queryItems();
- #else
- QUrlQuery uriQuery(uri);
- QList<QPair<QString, QString> > items = uriQuery.queryItems();
- #endif
- for (QList<QPair<QString, QString> >::iterator i = items.begin(); i != items.end(); i++)
- {
- bool fShouldReturnFalse = false;
- if (i->first.startsWith("req-"))
- {
- i->first.remove(0, 4);
- fShouldReturnFalse = true;
- }
-
- if (i->first == "label")
- {
- rv.label = i->second;
- fShouldReturnFalse = false;
- }
- if (i->first == "message")
- {
- rv.message = i->second;
- fShouldReturnFalse = false;
- }
- else if (i->first == "amount")
- {
- if(!i->second.isEmpty())
- {
- if(!StarwelsUnits::parse(StarwelsUnits::MAI, i->second, &rv.amount))
- {
- return false;
- }
- }
- fShouldReturnFalse = false;
- }
-
- if (fShouldReturnFalse)
- return false;
- }
- if(out)
- {
- *out = rv;
- }
- return true;
- }
-
- bool parseStarwelsURI(QString uri, SendCoinsRecipient *out)
- {
- // Convert starwels:// to starwels:
- //
- // Cannot handle this later, because starwels:// will cause Qt to see the part after // as host,
- // which will lower-case it (and thus invalidate the address).
- if(uri.startsWith("starwels://", Qt::CaseInsensitive))
- {
- uri.replace(0, 10, "starwels:");
- }
- QUrl uriInstance(uri);
- return parseStarwelsURI(uriInstance, out);
- }
-
- QString formatStarwelsURI(const SendCoinsRecipient &info)
- {
- QString ret = QString("starwels:%1").arg(info.address);
- int paramCount = 0;
-
- if (info.amount)
- {
- ret += QString("?amount=%1").arg(StarwelsUnits::format(StarwelsUnits::MAI, info.amount, false, StarwelsUnits::separatorNever));
- 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;
- }
-
- bool isDust(const QString& address, const CAmount& amount)
- {
- CTxDestination dest = CStarwelsAddress(address.toStdString()).Get();
- CScript script = GetScriptForDestination(dest);
- CTxOut txOut(amount, script);
- return IsDust(txOut, ::dustRelayFee);
- }
-
- QString HtmlEscape(const QString& str, bool fMultiLine)
- {
- #if QT_VERSION < 0x050000
- QString escaped = Qt::escape(str);
- #else
- QString escaped = str.toHtmlEscaped();
- #endif
- if(fMultiLine)
- {
- escaped = escaped.replace("\n", "<br>\n");
- }
- return escaped;
- }
-
- QString HtmlEscape(const std::string& str, bool fMultiLine)
- {
- return HtmlEscape(QString::fromStdString(str), fMultiLine);
- }
-
- void copyEntryData(QAbstractItemView *view, int column, int role)
- {
- if(!view || !view->selectionModel())
- return;
- QModelIndexList selection = view->selectionModel()->selectedRows(column);
-
- if(!selection.isEmpty())
- {
- // Copy first item
- setClipboard(selection.at(0).data(role).toString());
- }
- }
-
- QList<QModelIndex> getEntryData(QAbstractItemView *view, int column)
- {
- if(!view || !view->selectionModel())
- return QList<QModelIndex>();
- return view->selectionModel()->selectedRows(column);
- }
-
- QString 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
- {
- #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::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;
- }
-
- 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;
- }
-
- Qt::ConnectionType blockingGUIThreadConnection()
- {
- if(QThread::currentThread() != qApp->thread())
- {
- return Qt::BlockingQueuedConnection;
- }
- else
- {
- return Qt::DirectConnection;
- }
- }
-
- bool checkPoint(const QPoint &p, const QWidget *w)
- {
- QWidget *atW = QApplication::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));
- }
-
- void openDebugLogfile()
- {
- fs::path pathDebug = GetDataDir() / "debug.log";
-
- /* Open debug.log with the associated application */
- if (fs::exists(pathDebug))
- QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug)));
- }
-
- bool openStarwelsConf()
- {
- boost::filesystem::path pathConfig = GetConfigFile(STARWELS_CONF_FILENAME);
-
- /* Create the file */
- boost::filesystem::ofstream configFile(pathConfig, std::ios_base::app);
-
- if (!configFile.good())
- return false;
-
- configFile.close();
-
- /* Open starwels.conf with the associated application */
- return QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig)));
- }
-
- void SubstituteFonts(const QString& language)
- {
- #if defined(Q_OS_MAC)
- // Background:
- // OSX's default font changed in 10.9 and Qt is unable to find it with its
- // usual fallback methods when building against the 10.7 sdk or lower.
- // The 10.8 SDK added a function to let it find the correct fallback font.
- // If this fallback is not properly loaded, some characters may fail to
- // render correctly.
- //
- // The same thing happened with 10.10. .Helvetica Neue DeskInterface is now default.
- //
- // Solution: If building with the 10.7 SDK or lower and the user's platform
- // is 10.9 or higher at runtime, substitute the correct font. This needs to
- // happen before the QApplication is created.
- #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8
- if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_8)
- {
- if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_9)
- /* On a 10.9 - 10.9.x system */
- QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
- else
- {
- /* 10.10 or later system */
- if (language == "zh_CN" || language == "zh_TW" || language == "zh_HK") // traditional or simplified Chinese
- QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Heiti SC");
- else if (language == "ja") // Japanese
- QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Songti SC");
- else
- QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Lucida Grande");
- }
- }
- #endif
- #endif
- }
-
- ToolTipToRichTextFilter::ToolTipToRichTextFilter(int _size_threshold, QObject *parent) :
- QObject(parent),
- size_threshold(_size_threshold)
- {
-
- }
-
- bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt)
- {
- if(evt->type() == QEvent::ToolTipChange)
- {
- QWidget *widget = static_cast<QWidget*>(obj);
- QString tooltip = widget->toolTip();
- if(tooltip.size() > size_threshold && !tooltip.startsWith("<qt") && !Qt::mightBeRichText(tooltip))
- {
- // Envelop with <qt></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) + "</qt>";
- widget->setToolTip(tooltip);
- return true;
- }
- }
- return QObject::eventFilter(obj, evt);
- }
-
- 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()));
- }
-
- // We need to disconnect these while handling the resize events, otherwise we can enter infinite loops.
- 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()));
- }
-
- // Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed.
- // Refactored here for readability.
- void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode)
- {
- #if QT_VERSION < 0x050000
- tableView->horizontalHeader()->setResizeMode(logicalIndex, resizeMode);
- #else
- tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode);
- #endif
- }
-
- void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width)
- {
- 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;
- }
-
- // Make sure we don't make the columns wider than the table's viewport width.
- void TableViewLastColumnResizingFixer::adjustTableColumnsWidth()
- {
- disconnectViewHeadersSignals();
- resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex));
- connectViewHeadersSignals();
-
- int nTableWidth = tableView->horizontalHeader()->width();
- int nColsWidth = getColumnsWidth();
- if (nColsWidth > nTableWidth)
- {
- resizeColumn(secondToLastColumnIndex,getAvailableWidthForColumn(secondToLastColumnIndex));
- }
- }
-
- // Make column use all the space available, useful during window resizing.
- void TableViewLastColumnResizingFixer::stretchColumnWidth(int column)
- {
- disconnectViewHeadersSignals();
- resizeColumn(column, getAvailableWidthForColumn(column));
- connectViewHeadersSignals();
- }
-
- // When a section is resized this is a slot-proxy for ajustAmountColumnWidth().
- void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize)
- {
- adjustTableColumnsWidth();
- int remainingWidth = getAvailableWidthForColumn(logicalIndex);
- if (newSize > remainingWidth)
- {
- resizeColumn(logicalIndex, remainingWidth);
- }
- }
-
- // When the table's geometry is ready, we manually perform the stretch of the "Message" column,
- // as the "Stretch" resize mode does not allow for interactive resizing.
- 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, QObject *parent) :
- QObject(parent),
- tableView(table),
- lastColumnMinimumWidth(lastColMinimumWidth),
- allColumnsMinimumWidth(allColsMinimumWidth)
- {
- columnCount = tableView->horizontalHeader()->count();
- lastColumnIndex = columnCount - 1;
- secondToLastColumnIndex = columnCount - 2;
- tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth);
- setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::Interactive);
- setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Interactive);
- }
-
- #ifdef WIN32
- fs::path static StartupShortcutPath()
- {
- std::string chain = ChainNameFromCommandLine();
- if (chain == CBaseChainParams::MAIN)
- return GetSpecialFolderPath(CSIDL_STARTUP) / "Starwels.lnk";
- if (chain == CBaseChainParams::AI) // Remove this special case when CBaseChainParams::AI = "ai4"
- return GetSpecialFolderPath(CSIDL_STARTUP) / "Starwels (ai).lnk";
- return GetSpecialFolderPath(CSIDL_STARTUP) / strprintf("Starwels (%s).lnk", chain);
- }
-
- bool GetStartOnSystemStartup()
- {
- // check for Starwels*.lnk
- return fs::exists(StartupShortcutPath());
- }
-
- bool SetStartOnSystemStartup(bool fAutoStart)
- {
- // If the shortcut exists already, remove it for updating
- fs::remove(StartupShortcutPath());
-
- if (fAutoStart)
- {
- CoInitialize(nullptr);
-
- // Get a pointer to the IShellLink interface.
- IShellLink* psl = nullptr;
- HRESULT hres = CoCreateInstance(CLSID_ShellLink, nullptr,
- CLSCTX_INPROC_SERVER, IID_IShellLink,
- reinterpret_cast<void**>(&psl));
-
- if (SUCCEEDED(hres))
- {
- // Get the current executable path
- TCHAR pszExePath[MAX_PATH];
- GetModuleFileName(nullptr, pszExePath, sizeof(pszExePath));
-
- // Start client minimized
- QString strArgs = "-min";
- // Set -ai /-regtest options
- strArgs += QString::fromStdString(strprintf(" -ai=%d -regtest=%d", gArgs.GetBoolArg("-ai", false), gArgs.GetBoolArg("-regtest", false)));
-
- #ifdef UNICODE
- boost::scoped_array<TCHAR> args(new TCHAR[strArgs.length() + 1]);
- // Convert the QString to TCHAR*
- strArgs.toWCharArray(args.get());
- // Add missing '\0'-termination to string
- args[strArgs.length()] = '\0';
- #endif
-
- // Set the path to the shortcut target
- psl->SetPath(pszExePath);
- PathRemoveFileSpec(pszExePath);
- psl->SetWorkingDirectory(pszExePath);
- psl->SetShowCmd(SW_SHOWMINNOACTIVE);
- #ifndef UNICODE
- psl->SetArguments(strArgs.toStdString().c_str());
- #else
- psl->SetArguments(args.get());
- #endif
-
- // Query IShellLink for the IPersistFile interface for
- // saving the shortcut in persistent storage.
- IPersistFile* ppf = nullptr;
- 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(Q_OS_LINUX)
-
- // Follow the Desktop Application Autostart Spec:
- // http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
-
- fs::path static GetAutostartDir()
- {
- 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();
- }
-
- fs::path static GetAutostartFilePath()
- {
- std::string chain = ChainNameFromCommandLine();
- if (chain == CBaseChainParams::MAIN)
- return GetAutostartDir() / "starwels.desktop";
- return GetAutostartDir() / strprintf("starwels-%s.lnk", chain);
- }
-
- bool GetStartOnSystemStartup()
- {
- fs::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)
- fs::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;
-
- fs::create_directories(GetAutostartDir());
-
- fs::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out|std::ios_base::trunc);
- if (!optionFile.good())
- return false;
- std::string chain = ChainNameFromCommandLine();
- // Write a starwels.desktop file to the autostart directory:
- optionFile << "[Desktop Entry]\n";
- optionFile << "Type=Application\n";
- if (chain == CBaseChainParams::MAIN)
- optionFile << "Name=Starwels\n";
- else
- optionFile << strprintf("Name=Starwels (%s)\n", chain);
- optionFile << "Exec=" << pszExePath << strprintf(" -min -ai=%d -regtest=%d\n", gArgs.GetBoolArg("-ai", false), gArgs.GetBoolArg("-regtest", false));
- optionFile << "Terminal=false\n";
- optionFile << "Hidden=false\n";
- optionFile.close();
- }
- return true;
- }
-
-
- #elif defined(Q_OS_MAC)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
- // 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 starwels app
- CFArrayRef listSnapshot = LSSharedFileListCopySnapshot(list, nullptr);
- for(int i = 0; i < CFArrayGetCount(listSnapshot); i++) {
- LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(listSnapshot, i);
- UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes;
- CFURLRef currentItemURL = nullptr;
-
- #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED >= 10100
- if(&LSSharedFileListItemCopyResolvedURL)
- currentItemURL = LSSharedFileListItemCopyResolvedURL(item, resolutionFlags, nullptr);
- #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 10100
- else
- LSSharedFileListItemResolve(item, resolutionFlags, ¤tItemURL, nullptr);
- #endif
- #else
- LSSharedFileListItemResolve(item, resolutionFlags, ¤tItemURL, nullptr);
- #endif
-
- if(currentItemURL && CFEqual(currentItemURL, findUrl)) {
- // found
- CFRelease(currentItemURL);
- return item;
- }
- if(currentItemURL) {
- CFRelease(currentItemURL);
- }
- }
- return nullptr;
- }
-
- bool GetStartOnSystemStartup()
- {
- CFURLRef starwelsAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
- LSSharedFileListRef loginItems = LSSharedFileListCreate(nullptr, kLSSharedFileListSessionLoginItems, nullptr);
- LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, starwelsAppUrl);
- return !!foundItem; // return boolified object
- }
-
- bool SetStartOnSystemStartup(bool fAutoStart)
- {
- CFURLRef starwelsAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle());
- LSSharedFileListRef loginItems = LSSharedFileListCreate(nullptr, kLSSharedFileListSessionLoginItems, nullptr);
- LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, starwelsAppUrl);
-
- if(fAutoStart && !foundItem) {
- // add starwels app to startup item list
- LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, nullptr, nullptr, starwelsAppUrl, nullptr, nullptr);
- }
- else if(!fAutoStart && foundItem) {
- // remove item
- LSSharedFileListItemRemove(loginItems, foundItem);
- }
- return true;
- }
- #pragma GCC diagnostic pop
- #else
-
- bool GetStartOnSystemStartup() { return false; }
- bool SetStartOnSystemStartup(bool fAutoStart) { return false; }
-
- #endif
-
- void setClipboard(const QString& str)
- {
- QApplication::clipboard()->setText(str, QClipboard::Clipboard);
- QApplication::clipboard()->setText(str, QClipboard::Selection);
- }
-
- fs::path qstringToBoostPath(const QString &path)
- {
- return fs::path(path.toStdString(), utf8);
- }
-
- QString boostPathToQString(const fs::path &path)
- {
- return QString::fromStdString(path.string(utf8));
- }
-
- QString formatDurationStr(int secs)
- {
- QStringList strList;
- int days = secs / 86400;
- int hours = (secs % 86400) / 3600;
- int mins = (secs % 3600) / 60;
- int seconds = secs % 60;
-
- if (days)
- strList.append(QString(QObject::tr("%1 d")).arg(days));
- if (hours)
- strList.append(QString(QObject::tr("%1 h")).arg(hours));
- if (mins)
- strList.append(QString(QObject::tr("%1 m")).arg(mins));
- if (seconds || (!days && !hours && !mins))
- strList.append(QString(QObject::tr("%1 s")).arg(seconds));
-
- return strList.join(" ");
- }
-
- QString formatServicesStr(quint64 mask)
- {
- QStringList strList;
-
- // Just scan the last 8 bits for now.
- for (int i = 0; i < 8; i++) {
- uint64_t check = 1 << i;
- if (mask & check)
- {
- switch (check)
- {
- case NODE_NETWORK:
- strList.append("NETWORK");
- break;
- case NODE_GETUTXO:
- strList.append("GETUTXO");
- break;
- case NODE_BLOOM:
- strList.append("BLOOM");
- break;
- case NODE_WITNESS:
- strList.append("WITNESS");
- break;
- case NODE_XTHIN:
- strList.append("XTHIN");
- break;
- default:
- strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check));
- }
- }
- }
-
- if (strList.size())
- return strList.join(" & ");
- else
- return QObject::tr("None");
- }
-
- QString formatPingTime(double dPingTime)
- {
- return (dPingTime == std::numeric_limits<int64_t>::max()/1e6 || dPingTime == 0) ? QObject::tr("N/A") : QString(QObject::tr("%1 ms")).arg(QString::number((int)(dPingTime * 1000), 10));
- }
-
- QString formatTimeOffset(int64_t nTimeOffset)
- {
- return QString(QObject::tr("%1 s")).arg(QString::number((int)nTimeOffset, 10));
- }
-
- QString formatNiceTimeOffset(qint64 secs)
- {
- // Represent time from last generated block in human readable text
- QString timeBehindText;
- const int HOUR_IN_SECONDS = 60*60;
- const int DAY_IN_SECONDS = 24*60*60;
- const int WEEK_IN_SECONDS = 7*24*60*60;
- const int YEAR_IN_SECONDS = 31556952; // Average length of year in Gregorian calendar
- if(secs < 60)
- {
- timeBehindText = QObject::tr("%n second(s)","",secs);
- }
- else if(secs < 2*HOUR_IN_SECONDS)
- {
- timeBehindText = QObject::tr("%n minute(s)","",secs/60);
- }
- else if(secs < 2*DAY_IN_SECONDS)
- {
- timeBehindText = QObject::tr("%n hour(s)","",secs/HOUR_IN_SECONDS);
- }
- else if(secs < 2*WEEK_IN_SECONDS)
- {
- timeBehindText = QObject::tr("%n day(s)","",secs/DAY_IN_SECONDS);
- }
- else if(secs < YEAR_IN_SECONDS)
- {
- timeBehindText = QObject::tr("%n week(s)","",secs/WEEK_IN_SECONDS);
- }
- else
- {
- qint64 years = secs / YEAR_IN_SECONDS;
- qint64 remainder = secs % YEAR_IN_SECONDS;
- timeBehindText = QObject::tr("%1 and %2").arg(QObject::tr("%n year(s)", "", years)).arg(QObject::tr("%n week(s)","", remainder/WEEK_IN_SECONDS));
- }
- return timeBehindText;
- }
-
- void ClickableLabel::mouseReleaseEvent(QMouseEvent *event)
- {
- Q_EMIT clicked(event->pos());
- }
-
- void ClickableProgressBar::mouseReleaseEvent(QMouseEvent *event)
- {
- Q_EMIT clicked(event->pos());
- }
-
- } // namespace GUIUtil
|