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 ABOUT_H
|
|
|
|
#define ABOUT_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2021-01-22 05:21:08 +00:00
|
|
|
#include <QStringListModel>
|
2020-10-07 10:36:04 +00:00
|
|
|
#include <QAbstractButton>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AboutDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AboutDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit AboutDialog(QWidget *parent = nullptr);
|
|
|
|
~AboutDialog() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::AboutDialog *ui;
|
2021-05-10 13:20:33 +00:00
|
|
|
QStringListModel *m_model;
|
2020-10-07 10:36:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABOUT_H
|