2019-12-30 06:39:22 -03:00
|
|
|
// Copyright (c) 2011-2019 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_SENDCOINSENTRY_H
|
|
|
|
#define BITCOIN_QT_SENDCOINSENTRY_H
|
2011-07-16 13:01:05 -04:00
|
|
|
|
2019-11-19 06:10:40 -03:00
|
|
|
#include <qt/sendcoinsrecipient.h>
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2013-07-22 02:50:39 -04:00
|
|
|
#include <QStackedWidget>
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
class WalletModel;
|
2015-07-28 10:20:14 -03:00
|
|
|
class PlatformStyle;
|
2011-07-16 13:01:05 -04:00
|
|
|
|
2019-11-19 08:45:32 -03:00
|
|
|
namespace interfaces {
|
|
|
|
class Node;
|
|
|
|
} // namespace interfaces
|
|
|
|
|
2011-07-16 13:01:05 -04:00
|
|
|
namespace Ui {
|
|
|
|
class SendCoinsEntry;
|
|
|
|
}
|
|
|
|
|
2013-07-22 02:50:39 -04:00
|
|
|
/**
|
|
|
|
* A single entry in the dialog for sending bitcoins.
|
|
|
|
* Stacked widget, with different UIs for payment requests
|
|
|
|
* with a strong payee identity.
|
|
|
|
*/
|
|
|
|
class SendCoinsEntry : public QStackedWidget
|
2011-07-16 13:01:05 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-07-30 06:37:09 -04:00
|
|
|
explicit SendCoinsEntry(const PlatformStyle *platformStyle, QWidget *parent = nullptr);
|
2011-07-16 13:01:05 -04:00
|
|
|
~SendCoinsEntry();
|
|
|
|
|
|
|
|
void setModel(WalletModel *model);
|
2018-04-07 04:42:02 -03:00
|
|
|
bool validate(interfaces::Node& node);
|
2011-07-16 13:01:05 -04:00
|
|
|
SendCoinsRecipient getValue();
|
2011-08-07 10:04:48 -04:00
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** Return whether the entry is still empty and unedited */
|
2011-08-07 10:04:48 -04:00
|
|
|
bool isClear();
|
|
|
|
|
|
|
|
void setValue(const SendCoinsRecipient &value);
|
2013-01-25 14:46:53 -03:00
|
|
|
void setAddress(const QString &address);
|
2017-08-20 02:04:56 -03:00
|
|
|
void setAmount(const CAmount &amount);
|
2011-08-07 10:04:48 -04:00
|
|
|
|
2013-09-13 11:49:35 -03:00
|
|
|
/** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases
|
|
|
|
* (issue https://bugreports.qt-project.org/browse/QTBUG-10907).
|
2011-11-13 09:19:52 -03:00
|
|
|
*/
|
2011-07-16 13:01:05 -04:00
|
|
|
QWidget *setupTabChain(QWidget *prev);
|
|
|
|
|
2011-12-07 02:00:04 -03:00
|
|
|
void setFocus();
|
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
public Q_SLOTS:
|
2011-07-16 13:01:05 -04:00
|
|
|
void clear();
|
2017-08-20 02:04:56 -03:00
|
|
|
void checkSubtractFeeFromAmount();
|
2011-07-16 13:01:05 -04:00
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
Q_SIGNALS:
|
2011-07-16 13:01:05 -04:00
|
|
|
void removeEntry(SendCoinsEntry *entry);
|
2017-08-20 02:04:56 -03:00
|
|
|
void useAvailableBalance(SendCoinsEntry* entry);
|
2013-08-12 11:03:03 -04:00
|
|
|
void payAmountChanged();
|
2014-07-23 08:34:36 -04:00
|
|
|
void subtractFeeFromAmountChanged();
|
2011-07-16 13:01:05 -04:00
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
private Q_SLOTS:
|
2013-11-22 09:53:05 -03:00
|
|
|
void deleteClicked();
|
2017-08-20 02:04:56 -03:00
|
|
|
void useAvailableBalanceClicked();
|
2011-07-16 13:01:05 -04:00
|
|
|
void on_payTo_textChanged(const QString &address);
|
|
|
|
void on_addressBookButton_clicked();
|
|
|
|
void on_pasteButton_clicked();
|
2012-06-09 09:41:21 -04:00
|
|
|
void updateDisplayUnit();
|
2011-07-16 13:01:05 -04:00
|
|
|
|
|
|
|
private:
|
2013-07-22 02:50:39 -04:00
|
|
|
SendCoinsRecipient recipient;
|
2011-07-16 13:01:05 -04:00
|
|
|
Ui::SendCoinsEntry *ui;
|
|
|
|
WalletModel *model;
|
2015-07-28 10:20:14 -03:00
|
|
|
const PlatformStyle *platformStyle;
|
2013-10-16 12:11:39 -03:00
|
|
|
|
|
|
|
bool updateLabel(const QString &address);
|
2011-07-16 13:01:05 -04:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_SENDCOINSENTRY_H
|