view include/gui/dialog/licenses.h @ 339:eac06513db86

dialog/about: add licenses button otherwise we wouldn't be complying with most of the libraries and external software we use
author Paper <paper@paper.us.eu.org>
date Wed, 19 Jun 2024 14:02:11 -0400
parents
children
line wrap: on
line source

#ifndef MINORI_GUI_DIALOG_LICENSES_H_
#define MINORI_GUI_DIALOG_LICENSES_H_

#include <QDialog>

class LicensesWindow final : public QDialog {
	Q_OBJECT

public:
	LicensesWindow(QWidget* parent = nullptr);

protected:
	void showEvent(QShowEvent* event) override;
};

#endif // MINORI_GUI_DIALOG_LICENSES_H_