Files
qt-creator/src/plugins/cppcheck/cppcheckoptions.h

36 lines
1.0 KiB
C
Raw Normal View History

// Copyright (C) 2018 Sergey Morozov
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <coreplugin/dialogs/ioptionspage.h>
namespace Cppcheck::Internal {
class CppcheckOptions final : public Core::PagedSettings
{
public:
CppcheckOptions();
std::function<void(QWidget *widget)> layouter();
Utils::FilePathAspect binary{this};
Utils::BoolAspect warning{this};
Utils::BoolAspect style{this};
Utils::BoolAspect performance{this};
Utils::BoolAspect portability{this};
Utils::BoolAspect information{this};
Utils::BoolAspect unusedFunction{this};
Utils::BoolAspect missingInclude{this};
Utils::BoolAspect inconclusive{this};
Utils::BoolAspect forceDefines{this};
Utils::StringAspect customArguments{this};
Utils::StringAspect ignoredPatterns{this};
Utils::BoolAspect showOutput{this};
Utils::BoolAspect addIncludePaths{this};
Utils::BoolAspect guessArguments{this};
};
} // Cppcheck::Internal