2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2019 Sergey Morozov
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2019-11-03 23:00:16 +03:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
class FilePath;
|
2019-12-17 14:07:53 +01:00
|
|
|
using FilePaths = QList<FilePath>;
|
2023-01-09 18:08:30 +01:00
|
|
|
} // Utils
|
2019-11-03 23:00:16 +03:00
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
class Project;
|
|
|
|
|
class SelectableFilesFromDirModel;
|
2023-01-09 18:08:30 +01:00
|
|
|
} // ProjectExplorer
|
2019-11-03 23:00:16 +03:00
|
|
|
|
2023-01-09 18:08:30 +01:00
|
|
|
namespace Cppcheck::Internal {
|
2019-11-03 23:00:16 +03:00
|
|
|
|
|
|
|
|
class ManualRunDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
public:
|
2023-05-15 18:00:42 +02:00
|
|
|
ManualRunDialog(QWidget *optionsWidget, const ProjectExplorer::Project *project);
|
2019-11-03 23:00:16 +03:00
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
Utils::FilePaths filePaths() const;
|
2019-11-03 23:00:16 +03:00
|
|
|
QSize sizeHint() const override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ProjectExplorer::SelectableFilesFromDirModel *m_model;
|
|
|
|
|
};
|
|
|
|
|
|
2023-01-09 18:08:30 +01:00
|
|
|
} // Cppcheck::Internal
|