2010-11-30 22:50:40 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2010-11-30 22:50:40 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CHECKSTATISTICS_H
|
|
|
|
#define CHECKSTATISTICS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2011-10-11 21:14:15 +02:00
|
|
|
#include "showtypes.h"
|
2010-11-30 22:50:40 +01:00
|
|
|
|
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A class for check statistics.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class CheckStatistics : public QObject {
|
2010-11-30 22:50:40 +01:00
|
|
|
public:
|
|
|
|
CheckStatistics(QObject *parent = NULL);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Add new checked item to statistics.
|
|
|
|
*
|
|
|
|
* @param type Type of the item to add.
|
|
|
|
*/
|
2011-10-11 21:14:15 +02:00
|
|
|
void AddItem(ShowTypes::ShowType type);
|
2010-11-30 22:50:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Clear the statistics.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void Clear();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Return statistics for given type.
|
|
|
|
*
|
|
|
|
* @param type Type for which the statistics are returned.
|
|
|
|
* @return Number of items of given type.
|
|
|
|
*/
|
2011-10-11 21:14:15 +02:00
|
|
|
unsigned GetCount(ShowTypes::ShowType type) const;
|
2010-11-30 22:50:40 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned mStyle;
|
|
|
|
unsigned mWarning;
|
|
|
|
unsigned mPerformance;
|
2010-12-13 10:25:45 +01:00
|
|
|
unsigned mPortability;
|
2010-12-26 11:35:31 +01:00
|
|
|
unsigned mInformation;
|
2010-11-30 22:50:40 +01:00
|
|
|
unsigned mError;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
#endif // CHECKSTATISTICS_H
|