15#include <chainparams.h>
36#include <QAbstractButton>
37#include <QAbstractItemView>
38#include <QApplication>
41#include <QDesktopServices>
43#include <QDoubleValidator>
46#include <QFontDatabase>
47#include <QFontMetrics>
48#include <QGuiApplication>
51#include <QKeySequence>
52#include <QLatin1String>
58#include <QPluginLoader>
59#include <QProgressDialog>
60#include <QRegularExpression>
65#include <QStandardPaths>
67#include <QTextDocument>
79#if defined(Q_OS_MACOS)
86using namespace std::chrono_literals;
92 return QLocale::system().toString(date.date(), QLocale::ShortFormat) + QString(
" ") + date.toString(
"hh:mm");
97 return dateTimeStr(QDateTime::fromSecsSinceEpoch(nTime));
102 if (use_embedded_font) {
103 return {
"Roboto Mono"};
105 return QFontDatabase::systemFont(QFontDatabase::FixedFont);
114 addr =
"bc1p35yvjel7srp783ztf8v6jdra7dhfzk5jaun8xz2qp6ws7z80n4tq2jku9f";
119 addr =
"tb1p35yvjel7srp783ztf8v6jdra7dhfzk5jaun8xz2qp6ws7z80n4tqa6qnlg";
122 addr =
"bcrt1p35yvjel7srp783ztf8v6jdra7dhfzk5jaun8xz2qp6ws7z80n4tqsr2427";
133 parent->setFocusProxy(widget);
138 widget->setPlaceholderText(QObject::tr(
"Enter a Bitcoin address (e.g. %1)").arg(
146 QObject::connect(
new QShortcut(shortcut, button), &QShortcut::activated, [button]() { button->animateClick(); });
152 if(!uri.isValid() || uri.scheme() != QString(
"bitcoin"))
158 if (rv.
address.endsWith(
"/")) {
163 QUrlQuery uriQuery(uri);
164 QList<QPair<QString, QString> > items = uriQuery.queryItems();
165 for (QList<QPair<QString, QString> >::iterator i = items.begin(); i != items.end(); i++)
167 bool fShouldReturnFalse =
false;
168 if (i->first.startsWith(
"req-"))
170 i->first.remove(0, 4);
171 fShouldReturnFalse =
true;
174 if (i->first ==
"label")
176 rv.
label = i->second;
177 fShouldReturnFalse =
false;
179 if (i->first ==
"message")
182 fShouldReturnFalse =
false;
184 else if (i->first ==
"amount")
186 if(!i->second.isEmpty())
192 fShouldReturnFalse =
false;
195 if (fShouldReturnFalse)
207 QUrl uriInstance(uri);
213 bool bech_32 = info.
address.startsWith(QString::fromStdString(
Params().Bech32HRP() +
"1"));
215 QString
ret = QString(
"bitcoin:%1").arg(bech_32 ? info.
address.toUpper() : info.
address);
224 if (!info.
label.isEmpty())
226 QString lbl(QUrl::toPercentEncoding(info.
label));
227 ret += QString(
"%1label=%2").arg(paramCount == 0 ?
"?" :
"&").arg(lbl);
233 QString
msg(QUrl::toPercentEncoding(info.
message));
234 ret += QString(
"%1message=%2").arg(paramCount == 0 ?
"?" :
"&").arg(
msg);
251 QString escaped = str.toHtmlEscaped();
254 escaped = escaped.replace(
"\n",
"<br>\n");
261 return HtmlEscape(QString::fromStdString(str), fMultiLine);
266 if(!view || !view->selectionModel())
268 QModelIndexList selection = view->selectionModel()->selectedRows(column);
270 if(!selection.isEmpty())
277QList<QModelIndex>
getEntryData(
const QAbstractItemView *view,
int column)
279 if(!view || !view->selectionModel())
280 return QList<QModelIndex>();
281 return view->selectionModel()->selectedRows(column);
287 if (selection.isEmpty())
return false;
288 return !selection.at(0).data(role).toString().isEmpty();
293 const int id = QFontDatabase::addApplicationFont(file_name);
304 QRegularExpression filter_re(QStringLiteral(
".* \\(\\*\\.(.*)[ \\)]"), QRegularExpression::InvertedGreedinessOption);
306 QRegularExpressionMatch
m = filter_re.match(filter);
308 suffix =
m.captured(1);
314 const QString &filter,
315 QString *selectedSuffixOut)
317 QString selectedFilter;
321 myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
333 QFileInfo info(result);
334 if(!result.isEmpty())
336 if(info.suffix().isEmpty() && !selectedSuffix.isEmpty())
339 if(!result.endsWith(
"."))
341 result.append(selectedSuffix);
346 if(selectedSuffixOut)
348 *selectedSuffixOut = selectedSuffix;
354 const QString &filter,
355 QString *selectedSuffixOut)
357 QString selectedFilter;
361 myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
370 if(selectedSuffixOut)
380 if(QThread::currentThread() != qApp->thread())
382 return Qt::BlockingQueuedConnection;
386 return Qt::DirectConnection;
392 QWidget *atW = QApplication::widgetAt(w->mapToGlobal(p));
393 if (!atW)
return false;
394 return atW->window() == w;
402 &&
checkPoint(QPoint(w->width() - 1, w->height() - 1), w)
403 &&
checkPoint(QPoint(w->width() / 2, w->height() / 2), w));
409 if (QGuiApplication::platformName() ==
"wayland") {
410 auto flags = w->windowFlags();
411 w->setWindowFlags(
flags|Qt::WindowStaysOnTopHint);
413 w->setWindowFlags(
flags);
420 if (w->isMinimized()) {
433 QObject::connect(
new QShortcut(QKeySequence(QObject::tr(
"Ctrl+W")), w), &QShortcut::activated, w, &QWidget::close);
442 QDesktopServices::openUrl(QUrl::fromLocalFile(
PathToQString(pathDebug)));
450 std::ofstream configFile{pathConfig, std::ios_base::app};
452 if (!configFile.good())
458 bool res = QDesktopServices::openUrl(QUrl::fromLocalFile(
PathToQString(pathConfig)));
462 res = QProcess::startDetached(
"/usr/bin/open", QStringList{
"-t",
PathToQString(pathConfig)});
471 size_threshold(_size_threshold)
478 if(evt->type() == QEvent::ToolTipChange)
480 QWidget *widget =
static_cast<QWidget*
>(obj);
481 QString tooltip = widget->toolTip();
482 if(tooltip.size() >
size_threshold && !tooltip.startsWith(
"<qt") && !Qt::mightBeRichText(tooltip))
486 tooltip =
"<qt>" +
HtmlEscape(tooltip,
true) +
"</qt>";
487 widget->setToolTip(tooltip);
491 return QObject::eventFilter(obj, evt);
501 if (event->type() == QEvent::FocusOut) {
502 auto focus_out =
static_cast<QFocusEvent*
>(event);
503 if (focus_out->reason() != Qt::PopupFocusReason) {
504 auto label = qobject_cast<QLabel*>(watched);
506 auto flags = label->textInteractionFlags();
507 label->setTextInteractionFlags(Qt::NoTextInteraction);
508 label->setTextInteractionFlags(
flags);
513 return QObject::eventFilter(watched, event);
517fs::path static StartupShortcutPath()
521 return GetSpecialFolderPath(CSIDL_STARTUP) /
"Bitcoin.lnk";
523 return GetSpecialFolderPath(CSIDL_STARTUP) /
"Bitcoin (testnet).lnk";
536 fs::remove(StartupShortcutPath());
540 CoInitialize(
nullptr);
543 IShellLinkW* psl =
nullptr;
544 HRESULT hres = CoCreateInstance(CLSID_ShellLink,
nullptr,
545 CLSCTX_INPROC_SERVER, IID_IShellLinkW,
546 reinterpret_cast<void**
>(&psl));
552 GetModuleFileNameW(
nullptr, pszExePath, ARRAYSIZE(pszExePath));
555 QString strArgs =
"-min";
560 psl->SetPath(pszExePath);
561 PathRemoveFileSpecW(pszExePath);
562 psl->SetWorkingDirectory(pszExePath);
563 psl->SetShowCmd(SW_SHOWMINNOACTIVE);
564 psl->SetArguments(strArgs.toStdWString().c_str());
568 IPersistFile* ppf =
nullptr;
569 hres = psl->QueryInterface(IID_IPersistFile,
reinterpret_cast<void**
>(&ppf));
573 hres = ppf->Save(StartupShortcutPath().wstring().c_str(), TRUE);
586#elif defined(Q_OS_LINUX)
593 char* pszConfigHome = getenv(
"XDG_CONFIG_HOME");
594 if (pszConfigHome)
return fs::path(pszConfigHome) /
"autostart";
595 char* pszHome = getenv(
"HOME");
596 if (pszHome)
return fs::path(pszHome) /
".config" /
"autostart";
600fs::path static GetAutostartFilePath()
604 return GetAutostartDir() /
"bitcoin.desktop";
610 std::ifstream optionFile{GetAutostartFilePath()};
611 if (!optionFile.good())
615 while (!optionFile.eof())
617 getline(optionFile, line);
618 if (line.find(
"Hidden") != std::string::npos &&
619 line.find(
"true") != std::string::npos)
630 fs::remove(GetAutostartFilePath());
634 ssize_t r = readlink(
"/proc/self/exe", pszExePath,
sizeof(pszExePath));
638 pszExePath[r] =
'\0';
642 std::ofstream optionFile{GetAutostartFilePath(),
std::ios_base::out | std::ios_base::trunc};
643 if (!optionFile.good())
647 optionFile <<
"[Desktop Entry]\n";
648 optionFile <<
"Type=Application\n";
650 optionFile <<
"Name=Bitcoin\n";
654 optionFile <<
"Terminal=false\n";
655 optionFile <<
"Hidden=false\n";
670 QClipboard* clipboard = QApplication::clipboard();
671 clipboard->setText(str, QClipboard::Clipboard);
672 if (clipboard->supportsSelection()) {
673 clipboard->setText(str, QClipboard::Selection);
684 return QString::fromStdString(path.
utf8string());
692 case NET_IPV4:
return QObject::tr(
"IPv4",
"network name");
694 case NET_IPV6:
return QObject::tr(
"IPv6",
"network name");
696 case NET_ONION:
return QObject::tr(
"Onion",
"network name");
698 case NET_I2P:
return QObject::tr(
"I2P",
"network name");
700 case NET_CJDNS:
return QObject::tr(
"CJDNS",
"network name");
710 if (prepend_direction) {
714 QObject::tr(
"Inbound") :
717 QObject::tr(
"Outbound") +
" ";
738 const auto d{std::chrono::duration_cast<std::chrono::days>(dur)};
739 const auto h{std::chrono::duration_cast<std::chrono::hours>(dur - d)};
740 const auto m{std::chrono::duration_cast<std::chrono::minutes>(dur - d - h)};
741 const auto s{std::chrono::duration_cast<std::chrono::seconds>(dur - d - h -
m)};
742 QStringList str_list;
743 if (
auto d2{d.count()}) str_list.append(QObject::tr(
"%1 d").arg(d2));
744 if (
auto h2{h.count()}) str_list.append(QObject::tr(
"%1 h").arg(h2));
745 if (
auto m2{
m.count()}) str_list.append(QObject::tr(
"%1 m").arg(m2));
746 const auto s2{
s.count()};
747 if (s2 || str_list.empty()) str_list.append(QObject::tr(
"%1 s").arg(s2));
748 return str_list.join(
" ");
753 const auto time_now{GetTime<std::chrono::seconds>()};
754 const auto age{time_now - time_connected};
755 if (age >= 24h)
return QObject::tr(
"%1 d").arg(age / 24h);
756 if (age >= 1h)
return QObject::tr(
"%1 h").arg(age / 1h);
757 if (age >= 1min)
return QObject::tr(
"%1 m").arg(age / 1min);
758 return QObject::tr(
"%1 s").arg(age / 1
s);
766 strList.append(QString::fromStdString(flag));
770 return strList.join(
", ");
772 return QObject::tr(
"None");
777 return (ping_time == std::chrono::microseconds::max() || ping_time == 0us) ?
779 QObject::tr(
"%1 ms").arg(QString::number((
int)(
count_microseconds(ping_time) / 1000), 10));
784 return QObject::tr(
"%1 s").arg(QString::number((
int)time_offset, 10));
790 QString timeBehindText;
791 const int HOUR_IN_SECONDS = 60*60;
792 const int DAY_IN_SECONDS = 24*60*60;
793 const int WEEK_IN_SECONDS = 7*24*60*60;
794 const int YEAR_IN_SECONDS = 31556952;
797 timeBehindText = QObject::tr(
"%n second(s)",
"",secs);
799 else if(secs < 2*HOUR_IN_SECONDS)
801 timeBehindText = QObject::tr(
"%n minute(s)",
"",secs/60);
803 else if(secs < 2*DAY_IN_SECONDS)
805 timeBehindText = QObject::tr(
"%n hour(s)",
"",secs/HOUR_IN_SECONDS);
807 else if(secs < 2*WEEK_IN_SECONDS)
809 timeBehindText = QObject::tr(
"%n day(s)",
"",secs/DAY_IN_SECONDS);
811 else if(secs < YEAR_IN_SECONDS)
813 timeBehindText = QObject::tr(
"%n week(s)",
"",secs/WEEK_IN_SECONDS);
817 qint64 years = secs / YEAR_IN_SECONDS;
818 qint64 remainder = secs % YEAR_IN_SECONDS;
819 timeBehindText = QObject::tr(
"%1 and %2").arg(QObject::tr(
"%n year(s)",
"", years)).arg(QObject::tr(
"%n week(s)",
"", remainder/WEEK_IN_SECONDS));
821 return timeBehindText;
827 return QObject::tr(
"%1 B").arg(bytes);
828 if (bytes < 1'000'000)
829 return QObject::tr(
"%1 kB").arg(bytes / 1'000);
830 if (bytes < 1'000'000'000)
831 return QObject::tr(
"%1 MB").arg(bytes / 1'000'000);
833 return QObject::tr(
"%1 GB").arg(bytes / 1'000'000'000);
837 while(font_size >= minPointSize) {
838 font.setPointSizeF(font_size);
839 QFontMetrics fm(font);
849 : QLabel{parent}, m_platform_style{platform_style}
864 if (e->type() == QEvent::PaletteChange) {
868 QLabel::changeEvent(e);
893 if (event->type() == QEvent::KeyPress) {
894 if (
static_cast<QKeyEvent*
>(event)->key() == Qt::Key_Escape) {
898 return QItemDelegate::eventFilter(
object, event);
905 const int margin =
TextWidth(dialog->fontMetrics(), (
"X"));
906 dialog->resize(dialog->width() + 2 * margin, dialog->height());
912 dialog->setMinimumDuration(0);
915int TextWidth(
const QFontMetrics& fm,
const QString& text)
917 return fm.horizontalAdvance(text);
923 const std::string qt_link{
"static"};
925 const std::string qt_link{
"dynamic"};
927 LogInfo(
"Qt %s (%s), plugin=%s\n", qVersion(), qt_link, QGuiApplication::platformName().toStdString());
928 const auto static_plugins = QPluginLoader::staticPlugins();
929 if (static_plugins.empty()) {
930 LogInfo(
"No static plugins.\n");
933 for (
const QStaticPlugin& p : static_plugins) {
934 QJsonObject meta_data = p.metaData();
935 const std::string plugin_class = meta_data.take(QString(
"className")).toString().toStdString();
936 const int plugin_version = meta_data.take(QString(
"version")).toInt();
937 LogInfo(
" %s, version %d\n", plugin_class, plugin_version);
941 LogInfo(
"Style: %s / %s\n", QApplication::style()->objectName().toStdString(), QApplication::style()->metaObject()->className());
942 LogInfo(
"System: %s, %s\n", QSysInfo::prettyProductName().toStdString(), QSysInfo::buildAbi().toStdString());
943 for (
const QScreen*
s : QGuiApplication::screens()) {
944 LogInfo(
"Screen: %s %dx%d, pixel ratio=%.1f\n",
s->name().toStdString(),
s->size().width(),
s->size().height(),
s->devicePixelRatio());
948void PopupMenu(QMenu* menu,
const QPoint& point, QAction* at_action)
951 if (QApplication::platformName() ==
"minimal")
return;
952 menu->popup(point, at_action);
957#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
958 return date.startOfDay();
960 return QDateTime(date);
966#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
967 return !label->pixmap(Qt::ReturnByValue).isNull();
969 return label->pixmap() !=
nullptr;
979#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
980 return label->pixmap(Qt::ReturnByValue).toImage();
982 return label->pixmap()->toImage();
988 return QString(
source).replace(
990 QLatin1String(
"<a href=\"") + link + QLatin1String(
"\">") + link + QLatin1String(
"</a>"));
994 const std::exception* exception,
995 const QObject* sender,
996 const QObject* receiver)
998 std::string description = sender->metaObject()->className();
1000 description += receiver->metaObject()->className();
1006 dialog->setAttribute(Qt::WA_DeleteOnClose);
1007 dialog->setWindowModality(Qt::ApplicationModal);
1013 return name.isEmpty() ?
"[" + QObject::tr(
"default wallet") +
"]" :
name;
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
int64_t CAmount
Amount in satoshis (Can be negative)
fs::path GetDefaultDataDir()
const CChainParams & Params()
Return the currently selected parameters.
std::string ChainTypeToString(ChainType chain)
#define Assume(val)
Assume is the identity function.
ChainType GetChainType() const
Returns the appropriate chain type from the program arguments.
std::string GetChainTypeString() const
Returns the appropriate chain type string from the program arguments.
fs::path GetDataDirNet() const
Get data directory path with appended network identifier.
fs::path GetConfigFilePath() const
Return config file path (read-only)
Bitcoin address widget validator, checks for a valid bitcoin address.
Base58 entry widget validator, checks for valid characters and removes some whitespace.
static QString format(Unit unit, const CAmount &amount, bool plussign=false, SeparatorStyle separators=SeparatorStyle::STANDARD, bool justify=false)
Format as string.
static bool parse(Unit unit, const QString &value, CAmount *val_out)
Parse string to coin amount.
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
ChainType GetChainType() const
Return the chain type.
Serialized script, used inside transaction inputs and outputs.
An output of a transaction.
void mouseReleaseEvent(QMouseEvent *event) override
ClickableLabel(const PlatformStyle *platform_style, QWidget *parent=nullptr)
void clicked(const QPoint &point)
Emitted when the label is clicked.
void mouseReleaseEvent(QMouseEvent *event) override
void clicked(const QPoint &point)
Emitted when the progressbar is clicked.
bool eventFilter(QObject *object, QEvent *event) override
bool eventFilter(QObject *watched, QEvent *event) override
LabelOutOfFocusEventFilter(QObject *parent)
const PlatformStyle * m_platform_style
void changeEvent(QEvent *e) override
ThemedLabel(const PlatformStyle *platform_style, QWidget *parent=nullptr)
void setThemedPixmap(const QString &image_filename, int width, int height)
void updateThemedPixmap()
bool eventFilter(QObject *obj, QEvent *evt) override
ToolTipToRichTextFilter(int size_threshold, QObject *parent=nullptr)
Line edit that can be marked as "invalid" to show input validation feedback.
void setCheckValidator(const QValidator *v)
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
std::string utf8string() const
Return a UTF-8 representation of the path as a std::string, for compatibility with code using std::st...
Top-level interface for a bitcoin node (bitcoind process).
ConnectionType
Different types of connections to a peer.
@ BLOCK_RELAY
We use block-relay-only connections to help prevent against partition attacks.
@ MANUAL
We open manual connections to addresses that users explicitly requested via the addnode RPC or the -a...
@ OUTBOUND_FULL_RELAY
These are the default connections that we use to connect with the network.
@ FEELER
Feeler connections are short-lived connections made to check that a node is alive.
@ INBOUND
Inbound connections are those initiated by a peer.
@ ADDR_FETCH
AddrFetch connections are short lived connections used to solicit addresses from peers.
void PrintExceptionContinue(const std::exception *pex, std::string_view thread_name)
bool IsValidDestinationString(const std::string &str, const CChainParams ¶ms)
CTxDestination DecodeDestination(const std::string &str, std::string &error_msg, std::vector< int > *error_locations)
void ForceActivation()
Force application activation on macOS.
Utility functions used by the Bitcoin Qt UI.
QString NetworkToQString(Network net)
Convert enum Network to QString.
bool isObscured(QWidget *w)
QImage GetImage(const QLabel *label)
Qt::ConnectionType blockingGUIThreadConnection()
Get connection type to call object slot in GUI thread with invokeMethod.
QString WalletDisplayName(const QString &name)
QString HtmlEscape(const QString &str, bool fMultiLine)
void PopupMenu(QMenu *menu, const QPoint &point, QAction *at_action)
Call QMenu::popup() only on supported QT_QPA_PLATFORM.
QList< QModelIndex > getEntryData(const QAbstractItemView *view, int column)
Return a field of the currently selected entry as a QString.
QFont fixedPitchFont(bool use_embedded_font)
QString formatBytes(uint64_t bytes)
void ShowModalDialogAsynchronously(QDialog *dialog)
Shows a QDialog instance asynchronously, and deletes it on close.
QString formatDurationStr(std::chrono::seconds dur)
Convert seconds into a QString with days, hours, mins, secs.
void AddButtonShortcut(QAbstractButton *button, const QKeySequence &shortcut)
Connects an additional shortcut to a QAbstractButton.
QString MakeHtmlLink(const QString &source, const QString &link)
Replaces a plain text link with an HTML tagged one.
void handleCloseWindowShortcut(QWidget *w)
QString ExtractFirstSuffixFromFilter(const QString &filter)
Extract first suffix from filter pattern "Description (*.foo)" or "Description (*....
void PolishProgressDialog(QProgressDialog *dialog)
bool isDust(interfaces::Node &node, const QString &address, const CAmount &amount)
QString getOpenFileName(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedSuffixOut)
Get open filename, convenience wrapper for QFileDialog::getOpenFileName.
QString getDefaultDataDirectory()
Determine default data directory for operating system.
void copyEntryData(const QAbstractItemView *view, int column, int role)
Copy a field of the currently selected entry of a view to the clipboard.
QString getSaveFileName(QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedSuffixOut)
Get save filename, mimics QFileDialog::getSaveFileName, except that it appends a default suffix when ...
QDateTime StartOfDay(const QDate &date)
Returns the start-moment of the day in local time.
bool SetStartOnSystemStartup(bool fAutoStart)
static std::string DummyAddress(const CChainParams ¶ms)
void bringToFront(QWidget *w)
bool HasPixmap(const QLabel *label)
Returns true if pixmap has been set.
void LogQtInfo()
Writes to debug.log short info about the used Qt and the host system.
QString formatPingTime(std::chrono::microseconds ping_time)
Format a CNodeStats.m_last_ping_time into a user-readable string or display N/A, if 0.
QString PathToQString(const fs::path &path)
Convert OS specific boost path to QString through UTF-8.
QString dateTimeStr(const QDateTime &date)
void LoadFont(const QString &file_name)
Loads the font from the file specified by file_name, aborts if it fails.
void PrintSlotException(const std::exception *exception, const QObject *sender, const QObject *receiver)
bool checkPoint(const QPoint &p, const QWidget *w)
QString formatBitcoinURI(const SendCoinsRecipient &info)
QString ConnectionTypeToQString(ConnectionType conn_type, bool prepend_direction)
Convert enum ConnectionType to QString.
QString formatServicesStr(quint64 mask)
Format CNodeStats.nServices bitmask into a user-readable string.
QString formatNiceTimeOffset(qint64 secs)
QString FormatPeerAge(std::chrono::seconds time_connected)
Convert peer connection time to a QString denominated in the most relevant unit.
QString formatTimeOffset(int64_t time_offset)
Format a CNodeStateStats.time_offset into a user-readable string.
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
bool GetStartOnSystemStartup()
int TextWidth(const QFontMetrics &fm, const QString &text)
Returns the distance in pixels appropriate for drawing a subsequent character after text.
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent)
void setClipboard(const QString &str)
bool hasEntryData(const QAbstractItemView *view, int column, int role)
Returns true if the specified field of the currently selected view entry is not empty.
fs::path QStringToPath(const QString &path)
Convert QString to OS specific boost path through UTF-8.
qreal calculateIdealFontSize(int width, const QString &text, QFont font, qreal minPointSize, qreal font_size)
static path u8path(const std::string &utf8_str)
static bool create_directories(const std::filesystem::path &p)
Create directory (and if necessary its parents), unless the leaf directory already exists or is a sym...
static bool exists(const path &p)
@ NET_MAX
Dummy value to indicate the number of NET_* constants.
@ NET_ONION
TOR (v2 or v3)
@ NET_UNROUTABLE
Addresses from these networks are not publicly routable on the global Internet.
@ NET_INTERNAL
A set of addresses that represent the hash of a string or FQDN.
bool IsDust(const CTxOut &txout, const CFeeRate &dustRelayFeeIn)
std::vector< std::string > serviceFlagsToStr(uint64_t flags)
Convert service flags (a bitmask of NODE_*) to human readable strings.
constexpr int64_t count_microseconds(std::chrono::microseconds t)