2015-12-13 16:58:29 +00:00
|
|
|
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
2014-12-13 04:09:33 +00:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 15:20:43 +00:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#ifndef BITCOIN_QT_EDITADDRESSDIALOG_H
|
|
|
|
#define BITCOIN_QT_EDITADDRESSDIALOG_H
|
2011-05-13 13:58:27 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2013-04-13 05:13:08 +00:00
|
|
|
class AddressTableModel;
|
|
|
|
|
2011-05-13 13:58:27 +00:00
|
|
|
namespace Ui {
|
|
|
|
class EditAddressDialog;
|
|
|
|
}
|
|
|
|
|
2013-01-23 20:51:02 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QDataWidgetMapper;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2011-11-13 12:19:52 +00:00
|
|
|
/** Dialog for editing an address and associated information.
|
|
|
|
*/
|
2011-05-13 13:58:27 +00:00
|
|
|
class EditAddressDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-06-02 13:57:23 +00:00
|
|
|
enum Mode {
|
|
|
|
NewReceivingAddress,
|
|
|
|
NewSendingAddress,
|
|
|
|
EditReceivingAddress,
|
|
|
|
EditSendingAddress
|
|
|
|
};
|
|
|
|
|
2013-11-14 18:47:45 +00:00
|
|
|
explicit EditAddressDialog(Mode mode, QWidget *parent);
|
2013-01-08 07:17:58 +00:00
|
|
|
~EditAddressDialog();
|
2011-05-13 13:58:27 +00:00
|
|
|
|
2011-06-02 15:48:45 +00:00
|
|
|
void setModel(AddressTableModel *model);
|
|
|
|
void loadRow(int row);
|
2011-07-02 13:09:53 +00:00
|
|
|
|
2011-08-04 19:31:47 +00:00
|
|
|
QString getAddress() const;
|
2011-11-08 18:54:16 +00:00
|
|
|
void setAddress(const QString &address);
|
2013-01-08 07:17:58 +00:00
|
|
|
|
2015-07-14 11:59:05 +00:00
|
|
|
public Q_SLOTS:
|
2013-01-08 07:17:58 +00:00
|
|
|
void accept();
|
|
|
|
|
2011-05-13 13:58:27 +00:00
|
|
|
private:
|
2011-08-04 19:31:47 +00:00
|
|
|
bool saveCurrentRow();
|
2011-07-02 13:09:53 +00:00
|
|
|
|
2011-05-13 13:58:27 +00:00
|
|
|
Ui::EditAddressDialog *ui;
|
2011-06-02 15:48:45 +00:00
|
|
|
QDataWidgetMapper *mapper;
|
2011-06-03 13:16:11 +00:00
|
|
|
Mode mode;
|
|
|
|
AddressTableModel *model;
|
2011-08-04 19:31:47 +00:00
|
|
|
|
|
|
|
QString address;
|
2011-05-13 13:58:27 +00:00
|
|
|
};
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#endif // BITCOIN_QT_EDITADDRESSDIALOG_H
|