2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_SENDCOINSENTRY_H
|
|
|
|
#define BITCOIN_QT_SENDCOINSENTRY_H
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <qt/walletmodel.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
#include <QStackedWidget>
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
class WalletModel;
|
2015-07-28 15:20:14 +02:00
|
|
|
class PlatformStyle;
|
2011-07-16 19:01:05 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SendCoinsEntry;
|
|
|
|
}
|
|
|
|
|
2013-07-22 08:50:39 +02: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 19:01:05 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-07-28 15:20:14 +02:00
|
|
|
explicit SendCoinsEntry(const PlatformStyle *platformStyle, QWidget *parent = 0);
|
2011-07-16 19:01:05 +02:00
|
|
|
~SendCoinsEntry();
|
|
|
|
|
|
|
|
void setModel(WalletModel *model);
|
2018-04-07 09:42:02 +02:00
|
|
|
bool validate(interfaces::Node& node);
|
2011-07-16 19:01:05 +02:00
|
|
|
SendCoinsRecipient getValue();
|
2011-08-07 16:04:48 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Return whether the entry is still empty and unedited */
|
2011-08-07 16:04:48 +02:00
|
|
|
bool isClear();
|
|
|
|
|
|
|
|
void setValue(const SendCoinsRecipient &value);
|
2013-01-25 18:46:53 +01:00
|
|
|
void setAddress(const QString &address);
|
2017-08-20 07:04:56 +02:00
|
|
|
void setAmount(const CAmount &amount);
|
2011-08-07 16:04:48 +02:00
|
|
|
|
2013-09-13 16:49:35 +02: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 13:19:52 +01:00
|
|
|
*/
|
2011-07-16 19:01:05 +02:00
|
|
|
QWidget *setupTabChain(QWidget *prev);
|
|
|
|
|
2011-12-07 06:00:04 +01:00
|
|
|
void setFocus();
|
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2011-07-16 19:01:05 +02:00
|
|
|
void clear();
|
2017-08-20 07:04:56 +02:00
|
|
|
void checkSubtractFeeFromAmount();
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_SIGNALS:
|
2011-07-16 19:01:05 +02:00
|
|
|
void removeEntry(SendCoinsEntry *entry);
|
2017-08-20 07:04:56 +02:00
|
|
|
void useAvailableBalance(SendCoinsEntry* entry);
|
2013-08-12 17:03:03 +02:00
|
|
|
void payAmountChanged();
|
2014-07-23 14:34:36 +02:00
|
|
|
void subtractFeeFromAmountChanged();
|
2011-07-16 19:01:05 +02:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
private Q_SLOTS:
|
2013-11-22 13:53:05 +01:00
|
|
|
void deleteClicked();
|
2017-08-20 07:04:56 +02:00
|
|
|
void useAvailableBalanceClicked();
|
2011-07-16 19:01:05 +02:00
|
|
|
void on_payTo_textChanged(const QString &address);
|
|
|
|
void on_addressBookButton_clicked();
|
|
|
|
void on_pasteButton_clicked();
|
2012-06-09 15:41:21 +02:00
|
|
|
void updateDisplayUnit();
|
2011-07-16 19:01:05 +02:00
|
|
|
|
|
|
|
private:
|
2013-07-22 08:50:39 +02:00
|
|
|
SendCoinsRecipient recipient;
|
2011-07-16 19:01:05 +02:00
|
|
|
Ui::SendCoinsEntry *ui;
|
|
|
|
WalletModel *model;
|
2015-07-28 15:20:14 +02:00
|
|
|
const PlatformStyle *platformStyle;
|
2013-10-16 17:11:39 +02:00
|
|
|
|
|
|
|
bool updateLabel(const QString &address);
|
2011-07-16 19:01:05 +02:00
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_SENDCOINSENTRY_H
|