dogecoin/src/qt/sendcoinsentry.h

74 lines
1.8 KiB
C
Raw Normal View History

2015-12-13 17:58:29 +01:00
// Copyright (c) 2011-2015 The Bitcoin Core developers
2014-12-13 05:09:33 +01:00
// Distributed under the MIT software license, see the accompanying
// 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
#include "walletmodel.h"
#include <QStackedWidget>
class WalletModel;
class PlatformStyle;
2011-07-16 19:01:05 +02:00
namespace Ui {
class SendCoinsEntry;
}
/**
* 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:
explicit SendCoinsEntry(const PlatformStyle *platformStyle, QWidget *parent = 0);
2011-07-16 19:01:05 +02:00
~SendCoinsEntry();
void setModel(WalletModel *model);
bool validate();
SendCoinsRecipient getValue();
2011-11-13 13:19:52 +01:00
/** Return whether the entry is still empty and unedited */
bool isClear();
void setValue(const SendCoinsRecipient &value);
void setAddress(const QString &address);
/** 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);
void setFocus();
public Q_SLOTS:
2011-07-16 19:01:05 +02:00
void clear();
Q_SIGNALS:
2011-07-16 19:01:05 +02:00
void removeEntry(SendCoinsEntry *entry);
2013-08-12 17:03:03 +02:00
void payAmountChanged();
void subtractFeeFromAmountChanged();
2011-07-16 19:01:05 +02:00
private Q_SLOTS:
void deleteClicked();
2011-07-16 19:01:05 +02:00
void on_payTo_textChanged(const QString &address);
void on_addressBookButton_clicked();
void on_pasteButton_clicked();
void updateDisplayUnit();
2011-07-16 19:01:05 +02:00
private:
SendCoinsRecipient recipient;
2011-07-16 19:01:05 +02:00
Ui::SendCoinsEntry *ui;
WalletModel *model;
const PlatformStyle *platformStyle;
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