mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-12 09:37:47 +00:00
30 lines
644 B
C++
30 lines
644 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_MULTILINEINPUTDIALOG_H
|
|
#define FEATHER_MULTILINEINPUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "components.h"
|
|
|
|
namespace Ui {
|
|
class MultiLineInputDialog;
|
|
}
|
|
|
|
class MultiLineInputDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MultiLineInputDialog(QWidget *parent, const QString &title, const QString &label, const QStringList &defaultList);
|
|
~MultiLineInputDialog() override;
|
|
|
|
QStringList getList();
|
|
|
|
private:
|
|
QScopedPointer<Ui::MultiLineInputDialog> ui;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_MULTILINEINPUTDIALOG_H
|