2020-10-07 10:36:04 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-12-26 19:56:06 +00:00
|
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
#ifndef FEATHER_OUTPUTINFODIALOG_H
|
|
|
|
#define FEATHER_OUTPUTINFODIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2021-06-27 14:33:18 +00:00
|
|
|
|
2021-10-22 17:19:56 +00:00
|
|
|
#include "components.h"
|
2020-10-07 10:36:04 +00:00
|
|
|
#include "libwalletqt/Coins.h"
|
|
|
|
#include "libwalletqt/CoinsInfo.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class OutputInfoDialog;
|
|
|
|
}
|
|
|
|
|
2021-10-22 17:19:56 +00:00
|
|
|
class OutputInfoDialog : public WindowModalDialog
|
2020-10-07 10:36:04 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit OutputInfoDialog(CoinsInfo *cInfo, QWidget *parent = nullptr);
|
|
|
|
~OutputInfoDialog() override;
|
|
|
|
|
|
|
|
private:
|
2021-06-27 12:13:05 +00:00
|
|
|
QScopedPointer<Ui::OutputInfoDialog> ui;
|
2020-10-07 10:36:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //FEATHER_OUTPUTINFODIALOG_H
|