Files
qt-creator/src/plugins/cppcheck/cppcheckmanualrundialog.h
hjk 824de3046c CppCheck: Rework settings handling
Change-Id: Id9c9b316c5e0d39bc5fcba14951664e72d947a71
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
2023-05-16 16:03:37 +00:00

33 lines
690 B
C++

// Copyright (C) 2019 Sergey Morozov
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QDialog>
namespace Utils {
class FilePath;
using FilePaths = QList<FilePath>;
} // Utils
namespace ProjectExplorer {
class Project;
class SelectableFilesFromDirModel;
} // ProjectExplorer
namespace Cppcheck::Internal {
class ManualRunDialog : public QDialog
{
public:
ManualRunDialog(QWidget *optionsWidget, const ProjectExplorer::Project *project);
Utils::FilePaths filePaths() const;
QSize sizeHint() const override;
private:
ProjectExplorer::SelectableFilesFromDirModel *m_model;
};
} // Cppcheck::Internal