![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Utility functions used by the Bitcoin Qt UI. More...
Classes | |
class | HelpMessageBox |
Help message for Bitcoin-Qt, shown with –help. More... | |
class | ToolTipToRichTextFilter |
Qt event filter that intercepts ToolTipChange events, and replaces the tooltip with a rich text representation if needed. More... | |
Functions | |
QString | dateTimeStr (const QDateTime &date) |
QString | dateTimeStr (qint64 nTime) |
QFont | bitcoinAddressFont () |
void | setupAddressWidget (QLineEdit *widget, QWidget *parent) |
void | setupAmountWidget (QLineEdit *widget, QWidget *parent) |
bool | parseBitcoinURI (const QUrl &uri, SendCoinsRecipient *out) |
bool | parseBitcoinURI (QString uri, SendCoinsRecipient *out) |
QString | HtmlEscape (const QString &str, bool fMultiLine) |
QString | HtmlEscape (const std::string &str, bool fMultiLine) |
void | copyEntryData (QAbstractItemView *view, int column, int role=Qt::EditRole) |
Copy a field of the currently selected entry of a view to the clipboard. More... | |
void | setClipboard (const QString &str) |
QString | getSaveFileName (QWidget *parent=0, const QString &caption=QString(), const QString &dir=QString(), const QString &filter=QString(), QString *selectedSuffixOut=0) |
Get save filename, mimics QFileDialog::getSaveFileName, except that it appends a default suffix when no suffix is provided by the user. More... | |
Qt::ConnectionType | blockingGUIThreadConnection () |
Get connection type to call object slot in GUI thread with invokeMethod. More... | |
bool | checkPoint (const QPoint &p, const QWidget *w) |
bool | isObscured (QWidget *w) |
void | openDebugLogfile () |
bool | GetStartOnSystemStartup () |
bool | SetStartOnSystemStartup (bool fAutoStart) |
Utility functions used by the Bitcoin Qt UI.
QFont GUIUtil::bitcoinAddressFont | ( | ) |
Definition at line 61 of file guiutil.cpp.
Qt::ConnectionType GUIUtil::blockingGUIThreadConnection | ( | ) |
Get connection type to call object slot in GUI thread with invokeMethod.
The call will be blocking.
Definition at line 240 of file guiutil.cpp.
bool GUIUtil::checkPoint | ( | const QPoint & | p, |
const QWidget * | w | ||
) |
Definition at line 252 of file guiutil.cpp.
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 |
Definition at line 169 of file guiutil.cpp.
QString GUIUtil::dateTimeStr | ( | const QDateTime & | date | ) |
Definition at line 51 of file guiutil.cpp.
QString GUIUtil::dateTimeStr | ( | qint64 | nTime | ) |
Definition at line 56 of file guiutil.cpp.
QString GUIUtil::getSaveFileName | ( | QWidget * | parent = 0 , |
const QString & | caption = QString() , |
||
const QString & | dir = QString() , |
||
const QString & | filter = QString() , |
||
QString * | selectedSuffixOut = 0 |
||
) |
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. |
Definition at line 190 of file guiutil.cpp.
bool GUIUtil::GetStartOnSystemStartup | ( | ) |
Definition at line 490 of file guiutil.cpp.
QString GUIUtil::HtmlEscape | ( | const QString & | str, |
bool | fMultiLine | ||
) |
Definition at line 150 of file guiutil.cpp.
QString GUIUtil::HtmlEscape | ( | const std::string & | str, |
bool | fMultiLine | ||
) |
Definition at line 164 of file guiutil.cpp.
bool GUIUtil::isObscured | ( | QWidget * | w | ) |
Definition at line 259 of file guiutil.cpp.
void GUIUtil::openDebugLogfile | ( | ) |
Definition at line 268 of file guiutil.cpp.
bool GUIUtil::parseBitcoinURI | ( | const QUrl & | uri, |
SendCoinsRecipient * | out | ||
) |
Definition at line 84 of file guiutil.cpp.
bool GUIUtil::parseBitcoinURI | ( | QString | uri, |
SendCoinsRecipient * | out | ||
) |
Definition at line 136 of file guiutil.cpp.
void GUIUtil::setClipboard | ( | const QString & | str | ) |
Definition at line 184 of file guiutil.cpp.
bool GUIUtil::SetStartOnSystemStartup | ( | bool | fAutoStart | ) |
Definition at line 491 of file guiutil.cpp.
void GUIUtil::setupAddressWidget | ( | QLineEdit * | widget, |
QWidget * | parent | ||
) |
Definition at line 68 of file guiutil.cpp.
void GUIUtil::setupAmountWidget | ( | QLineEdit * | widget, |
QWidget * | parent | ||
) |
Definition at line 75 of file guiutil.cpp.