2011-05-13 15:58:27 +02:00
|
|
|
#ifndef EDITADDRESSDIALOG_H
|
|
|
|
#define EDITADDRESSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class EditAddressDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class EditAddressDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-06-02 15:57:23 +02:00
|
|
|
enum Mode {
|
|
|
|
NewReceivingAddress,
|
|
|
|
NewSendingAddress,
|
|
|
|
EditReceivingAddress,
|
|
|
|
EditSendingAddress
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit EditAddressDialog(Mode mode, QWidget *parent = 0);
|
|
|
|
~EditAddressDialog();
|
2011-05-13 15:58:27 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::EditAddressDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITADDRESSDIALOG_H
|