2023-01-30 14:59:45 +01:00
|
|
|
#ifndef COMPLIANCEREPORTDIALOG_H
|
|
|
|
#define COMPLIANCEREPORTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2023-01-30 14:59:45 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ComplianceReportDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ProjectFile;
|
|
|
|
class QAbstractButton;
|
|
|
|
|
|
|
|
class ComplianceReportDialog final : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ComplianceReportDialog(ProjectFile* projectFile, QString resultsFile);
|
|
|
|
~ComplianceReportDialog() final;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void buttonClicked(QAbstractButton* button);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void save();
|
|
|
|
|
|
|
|
Ui::ComplianceReportDialog *mUI;
|
|
|
|
ProjectFile* mProjectFile;
|
|
|
|
QString mResultsFile;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COMPLIANCEREPORTDIALOG_H
|