mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-24 19:45:50 +00:00
34 lines
652 B
C++
34 lines
652 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
|
|
|
#ifndef FEATHER_TXIMPORTDIALOG_H
|
|
#define FEATHER_TXIMPORTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "appcontext.h"
|
|
#include "components.h"
|
|
#include "utils/daemonrpc.h"
|
|
|
|
namespace Ui {
|
|
class TxImportDialog;
|
|
}
|
|
|
|
class TxImportDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TxImportDialog(QWidget *parent, QSharedPointer<AppContext> ctx);
|
|
~TxImportDialog() override;
|
|
|
|
private slots:
|
|
void onImport();
|
|
|
|
private:
|
|
QScopedPointer<Ui::TxImportDialog> ui;
|
|
QSharedPointer<AppContext> m_ctx;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_TXIMPORTDIALOG_H
|