![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
#include <QApplication>
#include "guiutil.h"
#include "bitcoinaddressvalidator.h"
#include "walletmodel.h"
#include "bitcoinunits.h"
#include "util.h"
#include "init.h"
#include <QDateTime>
#include <QDoubleValidator>
#include <QFont>
#include <QLineEdit>
#include <QUrl>
#include <QTextDocument>
#include <QAbstractItemView>
#include <QClipboard>
#include <QFileDialog>
#include <QDesktopServices>
#include <QThread>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
Go to the source code of this file.
Namespaces | |
GUIUtil | |
Utility functions used by the Bitcoin Qt UI. | |
Functions | |
QString | GUIUtil::dateTimeStr (const QDateTime &date) |
QString | GUIUtil::dateTimeStr (qint64 nTime) |
QFont | GUIUtil::bitcoinAddressFont () |
void | GUIUtil::setupAddressWidget (QLineEdit *widget, QWidget *parent) |
void | GUIUtil::setupAmountWidget (QLineEdit *widget, QWidget *parent) |
bool | GUIUtil::parseBitcoinURI (const QUrl &uri, SendCoinsRecipient *out) |
bool | GUIUtil::parseBitcoinURI (QString uri, SendCoinsRecipient *out) |
QString | GUIUtil::HtmlEscape (const QString &str, bool fMultiLine) |
QString | GUIUtil::HtmlEscape (const std::string &str, bool fMultiLine) |
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. More... | |
void | GUIUtil::setClipboard (const QString &str) |
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. More... | |
Qt::ConnectionType | GUIUtil::blockingGUIThreadConnection () |
Get connection type to call object slot in GUI thread with invokeMethod. More... | |
bool | GUIUtil::checkPoint (const QPoint &p, const QWidget *w) |
bool | GUIUtil::isObscured (QWidget *w) |
void | GUIUtil::openDebugLogfile () |
bool | GUIUtil::GetStartOnSystemStartup () |
bool | GUIUtil::SetStartOnSystemStartup (bool fAutoStart) |