2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2011-2018 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_EDITADDRESSDIALOG_H
|
|
|
|
#define BITCOIN_QT_EDITADDRESSDIALOG_H
|
2011-05-13 09:58:27 -04:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
class AddressTableModel;
|
|
|
|
|
2011-05-13 09:58:27 -04:00
|
|
|
namespace Ui {
|
|
|
|
class EditAddressDialog;
|
|
|
|
}
|
|
|
|
|
2013-01-23 17:51:02 -03:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QDataWidgetMapper;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2011-11-13 09:19:52 -03:00
|
|
|
/** Dialog for editing an address and associated information.
|
|
|
|
*/
|
2011-05-13 09:58:27 -04:00
|
|
|
class EditAddressDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-06-02 09:57:23 -04:00
|
|
|
enum Mode {
|
|
|
|
NewSendingAddress,
|
|
|
|
EditReceivingAddress,
|
|
|
|
EditSendingAddress
|
|
|
|
};
|
|
|
|
|
2018-03-29 11:59:57 -03:00
|
|
|
explicit EditAddressDialog(Mode mode, QWidget *parent = 0);
|
2013-01-08 04:17:58 -03:00
|
|
|
~EditAddressDialog();
|
2011-05-13 09:58:27 -04:00
|
|
|
|
2011-06-02 11:48:45 -04:00
|
|
|
void setModel(AddressTableModel *model);
|
|
|
|
void loadRow(int row);
|
2011-07-02 09:09:53 -04:00
|
|
|
|
2011-08-04 15:31:47 -04:00
|
|
|
QString getAddress() const;
|
2011-11-08 15:54:16 -03:00
|
|
|
void setAddress(const QString &address);
|
2013-01-08 04:17:58 -03:00
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
public Q_SLOTS:
|
2013-01-08 04:17:58 -03:00
|
|
|
void accept();
|
|
|
|
|
2011-05-13 09:58:27 -04:00
|
|
|
private:
|
2011-08-04 15:31:47 -04:00
|
|
|
bool saveCurrentRow();
|
2011-07-02 09:09:53 -04:00
|
|
|
|
2018-04-10 17:27:40 -03:00
|
|
|
/** Return a descriptive string when adding an already-existing address fails. */
|
|
|
|
QString getDuplicateAddressWarning() const;
|
|
|
|
|
2011-05-13 09:58:27 -04:00
|
|
|
Ui::EditAddressDialog *ui;
|
2011-06-02 11:48:45 -04:00
|
|
|
QDataWidgetMapper *mapper;
|
2011-06-03 09:16:11 -04:00
|
|
|
Mode mode;
|
|
|
|
AddressTableModel *model;
|
2011-08-04 15:31:47 -04:00
|
|
|
|
|
|
|
QString address;
|
2011-05-13 09:58:27 -04:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_EDITADDRESSDIALOG_H
|