Dash Core Source Documentation (0.16.0.1)
Find detailed information regarding the Dash Core source code.
sendcoinsentry.cpp
Go to the documentation of this file.
29 ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
46 connect(ui->checkboxSubtractFeeFromAmount, SIGNAL(toggled(bool)), this, SIGNAL(subtractFeeFromAmountChanged()));
50 connect(ui->useAvailableBalanceButton, SIGNAL(clicked()), this, SLOT(useAvailableBalanceClicked()));
94 connect(_model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
187 recipient.fSubtractFeeFromAmount = (ui->checkboxSubtractFeeFromAmount->checkState() == Qt::Checked);
255 return ui->payTo->text().isEmpty() && ui->payTo_is->text().isEmpty() && ui->payTo_s->text().isEmpty();
bool isDust(const QString &address, const CAmount &amount)
Definition: guiutil.cpp:473
void setValue(const SendCoinsRecipient &value)
Definition: sendcoinsentry.cpp:204
void payAmountChanged()
void setFont(const std::vector< QWidget *> &vecWidgets, FontWeight weight, int nPointSize, bool fItalic)
Workaround to set correct font styles in all themes since there is a bug in macOS which leads to issu...
Definition: guiutil.cpp:1552
Definition: addressbookpage.h:12
Definition: addressbookpage.h:31
bool updateLabel(const QString &address)
Definition: sendcoinsentry.cpp:292
void on_payTo_textChanged(const QString &address)
Definition: sendcoinsentry.cpp:77
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent, bool fAllowURI)
Definition: guiutil.cpp:286
AddressTableModel * getAddressTableModel()
Definition: walletmodel.cpp:464
bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out)
Definition: guiutil.cpp:358
QWidget * setupTabChain(QWidget *prev)
Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue https://...
Definition: sendcoinsentry.cpp:192
void updateFonts()
Update the font of all widgets where a custom font has been set with GUIUtil::setFont.
Definition: guiutil.cpp:1563
Definition: walletmodel.h:39
QString labelForAddress(const QString &address) const
Definition: addresstablemodel.cpp:423
Widget that shows a list of sending or receiving addresses.
Definition: addressbookpage.h:25
void removeEntry(SendCoinsEntry *entry)
void disableMacFocusRect(const QWidget *w)
Disable the OS default focus rect for macOS because we have custom focus rects set in the css files...
Definition: guiutil.cpp:1789
void checkSubtractFeeFromAmount()
Definition: sendcoinsentry.cpp:122
bool isClear()
Return whether the entry is still empty and unedited.
Definition: sendcoinsentry.cpp:253
bool validateAddress(const QString &address)
Definition: walletmodel.cpp:255
void subtractFeeFromAmountChanged()
void on_pasteButton_clicked()
Definition: sendcoinsentry.cpp:58
void on_addressBookButton_clicked()
Definition: sendcoinsentry.cpp:64
void setIcon(QAbstractButton *button, const QString &strIcon, const ThemedColor color, const ThemedColor colorAlternative, const QSize &size)
Helper to set an icon for a button with the given color (replaces black) and colorAlternative (replac...
Definition: guiutil.cpp:247
void useAvailableBalance(SendCoinsEntry *entry)
void useAvailableBalanceClicked()
Definition: sendcoinsentry.cpp:132
void setButtonIcons()
Set required icons for buttons inside the dialog.
Definition: sendcoinsentry.cpp:283
const QString & getReturnValue() const
Definition: addressbookpage.h:44