Bitcoin
|
Classes | |
class | ClickableLabel |
class | ClickableProgressBar |
class | ItemDelegate |
class | TableViewLastColumnResizingFixer |
class | ToolTipToRichTextFilter |
Typedefs | |
typedef ClickableProgressBar | ProgressBar |
Functions | |
QString | dateTimeStr (const QDateTime &date) |
QString | dateTimeStr (qint64 nTime) |
QFont | fixedPitchFont () |
static std::string | DummyAddress (const CChainParams ¶ms) |
void | setupAddressWidget (QValidatedLineEdit *widget, QWidget *parent) |
bool | parseBitcoinURI (const QUrl &uri, SendCoinsRecipient *out) |
bool | parseBitcoinURI (QString uri, SendCoinsRecipient *out) |
QString | formatBitcoinURI (const SendCoinsRecipient &info) |
bool | isDust (interfaces::Node &node, const QString &address, const CAmount &amount) |
QString | HtmlEscape (const QString &str, bool fMultiLine) |
QString | HtmlEscape (const std::string &str, bool fMultiLine) |
void | copyEntryData (QAbstractItemView *view, int column, int role) |
QList< QModelIndex > | getEntryData (QAbstractItemView *view, int column) |
QString | getDefaultDataDirectory () |
QString | getSaveFileName (QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedSuffixOut) |
QString | getOpenFileName (QWidget *parent, const QString &caption, const QString &dir, const QString &filter, QString *selectedSuffixOut) |
Qt::ConnectionType | blockingGUIThreadConnection () |
bool | checkPoint (const QPoint &p, const QWidget *w) |
bool | isObscured (QWidget *w) |
void | bringToFront (QWidget *w) |
void | openDebugLogfile () |
bool | openBitcoinConf () |
bool | GetStartOnSystemStartup () |
bool | SetStartOnSystemStartup (bool fAutoStart) |
void | setClipboard (const QString &str) |
fs::path | qstringToBoostPath (const QString &path) |
QString | boostPathToQString (const fs::path &path) |
QString | formatDurationStr (int secs) |
QString | formatServicesStr (quint64 mask) |
QString | formatPingTime (double dPingTime) |
QString | formatTimeOffset (int64_t nTimeOffset) |
QString | formatNiceTimeOffset (qint64 secs) |
QString | formatBytes (uint64_t bytes) |
qreal | calculateIdealFontSize (int width, const QString &text, QFont font, qreal minPointSize, qreal font_size) |
void | PolishProgressDialog (QProgressDialog *dialog) |
Variables | |
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} |
Utility functions used by the Bitcoin Qt UI.
Qt::ConnectionType GUIUtil::blockingGUIThreadConnection | ( | ) |
Get connection type to call object slot in GUI thread with invokeMethod. The call will be blocking.
QString GUIUtil::boostPathToQString | ( | const fs::path & | path | ) |
void GUIUtil::bringToFront | ( | QWidget * | w | ) |
qreal GUIUtil::calculateIdealFontSize | ( | int | width, |
const QString & | text, | ||
QFont | font, | ||
qreal | minPointSize, | ||
qreal | font_size | ||
) |
bool GUIUtil::checkPoint | ( | const QPoint & | p, |
const QWidget * | w | ||
) |
void GUIUtil::copyEntryData | ( | QAbstractItemView * | view, |
int | column, | ||
int | role = Qt::EditRole |
||
) |
Copy a field of the currently selected entry of a view to the clipboard. Does nothing if nothing is selected.
[in] | column | Data column to extract from the model |
[in] | role | Data role to extract from the model |
QString GUIUtil::dateTimeStr | ( | const QDateTime & | date | ) |
QString GUIUtil::dateTimeStr | ( | qint64 | nTime | ) |
|
static |
QFont GUIUtil::fixedPitchFont | ( | ) |
QString GUIUtil::formatBitcoinURI | ( | const SendCoinsRecipient & | info | ) |
QString GUIUtil::formatBytes | ( | uint64_t | bytes | ) |
QString GUIUtil::formatDurationStr | ( | int | secs | ) |
QString GUIUtil::formatNiceTimeOffset | ( | qint64 | secs | ) |
QString GUIUtil::formatPingTime | ( | double | dPingTime | ) |
QString GUIUtil::formatServicesStr | ( | quint64 | mask | ) |
QString GUIUtil::formatTimeOffset | ( | int64_t | nTimeOffset | ) |
QString GUIUtil::getDefaultDataDirectory | ( | ) |
Determine default data directory for operating system.
QList< QModelIndex > GUIUtil::getEntryData | ( | QAbstractItemView * | view, |
int | column | ||
) |
Return a field of the currently selected entry as a QString. Does nothing if nothing is selected.
[in] | column | Data column to extract from the model |
QString GUIUtil::getOpenFileName | ( | QWidget * | parent, |
const QString & | caption, | ||
const QString & | dir, | ||
const QString & | filter, | ||
QString * | selectedSuffixOut | ||
) |
Get open filename, convenience wrapper for QFileDialog::getOpenFileName.
[in] | parent | Parent window (or 0) |
[in] | caption | Window caption (or empty, for default) |
[in] | dir | Starting directory (or empty, to default to documents directory) |
[in] | filter | Filter specification such as "Comma Separated Files (*.csv)" |
[out] | selectedSuffixOut | Pointer to return the suffix (file type) that was selected (or 0). Can be useful when choosing the save file format based on suffix. |
QString GUIUtil::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 no suffix is provided by the user.
[in] | parent | Parent window (or 0) |
[in] | caption | Window caption (or empty, for default) |
[in] | dir | Starting directory (or empty, to default to documents directory) |
[in] | filter | Filter specification such as "Comma Separated Files (*.csv)" |
[out] | selectedSuffixOut | Pointer to return the suffix (file type) that was selected (or 0). Can be useful when choosing the save file format based on suffix. |
bool GUIUtil::GetStartOnSystemStartup | ( | ) |
QString GUIUtil::HtmlEscape | ( | const QString & | str, |
bool | fMultiLine | ||
) |
QString GUIUtil::HtmlEscape | ( | const std::string & | str, |
bool | fMultiLine | ||
) |
bool GUIUtil::isDust | ( | interfaces::Node & | node, |
const QString & | address, | ||
const CAmount & | amount | ||
) |
bool GUIUtil::isObscured | ( | QWidget * | w | ) |
bool GUIUtil::openBitcoinConf | ( | ) |
void GUIUtil::openDebugLogfile | ( | ) |
bool GUIUtil::parseBitcoinURI | ( | const QUrl & | uri, |
SendCoinsRecipient * | out | ||
) |
bool GUIUtil::parseBitcoinURI | ( | QString | uri, |
SendCoinsRecipient * | out | ||
) |
void GUIUtil::PolishProgressDialog | ( | QProgressDialog * | dialog | ) |
fs::path GUIUtil::qstringToBoostPath | ( | const QString & | path | ) |
void GUIUtil::setClipboard | ( | const QString & | str | ) |
bool GUIUtil::SetStartOnSystemStartup | ( | bool | fAutoStart | ) |
void GUIUtil::setupAddressWidget | ( | QValidatedLineEdit * | widget, |
QWidget * | parent | ||
) |
|
static |