72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2011-2015 The Bitcoin Core developers
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FLOWEE_QT_EDITADDRESSDIALOG_H
|
|
#define FLOWEE_QT_EDITADDRESSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class AddressTableModel;
|
|
|
|
namespace Ui {
|
|
class EditAddressDialog;
|
|
}
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QDataWidgetMapper;
|
|
QT_END_NAMESPACE
|
|
|
|
/** Dialog for editing an address and associated information.
|
|
*/
|
|
class EditAddressDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Mode {
|
|
NewReceivingAddress,
|
|
NewSendingAddress,
|
|
EditReceivingAddress,
|
|
EditSendingAddress
|
|
};
|
|
|
|
explicit EditAddressDialog(Mode mode, QWidget *parent);
|
|
~EditAddressDialog();
|
|
|
|
void setModel(AddressTableModel *model);
|
|
void loadRow(int row);
|
|
|
|
QString getAddress() const;
|
|
void setAddress(const QString &address);
|
|
|
|
public Q_SLOTS:
|
|
void accept();
|
|
|
|
private:
|
|
bool saveCurrentRow();
|
|
|
|
Ui::EditAddressDialog *ui;
|
|
QDataWidgetMapper *mapper;
|
|
Mode mode;
|
|
AddressTableModel *model;
|
|
|
|
QString address;
|
|
};
|
|
|
|
#endif
|