2020-10-07 10:36:04 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Copyright (c) 2020, The Monero Project.
|
|
|
|
|
|
|
|
#ifndef FEATHER_TXCONFDIALOG_H
|
|
|
|
#define FEATHER_TXCONFDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include "libwalletqt/PendingTransaction.h"
|
|
|
|
#include "libwalletqt/WalletManager.h"
|
2020-10-16 03:05:05 +00:00
|
|
|
#include "appcontext.h"
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class TxConfDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TxConfDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-10-16 03:05:05 +00:00
|
|
|
explicit TxConfDialog(AppContext *ctx, PendingTransaction *tx, const QString &address, const QString &description, int mixin, QWidget *parent = nullptr);
|
2020-10-07 10:36:04 +00:00
|
|
|
~TxConfDialog() override;
|
|
|
|
|
2020-10-16 03:05:05 +00:00
|
|
|
bool showAdvanced = false;
|
|
|
|
|
2020-10-07 10:36:04 +00:00
|
|
|
private:
|
2020-10-16 03:05:05 +00:00
|
|
|
void setShowAdvanced();
|
|
|
|
void saveToFile();
|
|
|
|
void copyToClipboard();
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
Ui::TxConfDialog *ui;
|
2020-10-16 03:05:05 +00:00
|
|
|
AppContext *m_ctx;
|
2020-10-07 10:36:04 +00:00
|
|
|
PendingTransaction *m_tx;
|
|
|
|
QString m_address;
|
|
|
|
QString m_description;
|
|
|
|
int m_mixin;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //FEATHER_TXCONFDIALOG_H
|