2009-03-01 08:38:21 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2009-03-01 08:38:21 +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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-03-01 08:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef RESULTSVIEW_H
|
|
|
|
#define RESULTSVIEW_H
|
|
|
|
|
2009-07-06 11:30:49 +02:00
|
|
|
#include "report.h"
|
2011-10-11 21:14:15 +02:00
|
|
|
#include "showtypes.h"
|
2009-03-01 08:38:21 +01:00
|
|
|
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QObject>
|
2022-03-19 19:54:20 +01:00
|
|
|
#include <QString>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QStringList>
|
2022-03-19 19:54:20 +01:00
|
|
|
#include <QWidget>
|
|
|
|
|
2010-07-14 13:24:46 +02:00
|
|
|
class ErrorItem;
|
2010-11-24 16:39:53 +01:00
|
|
|
class ApplicationList;
|
2022-03-19 19:54:20 +01:00
|
|
|
class ThreadHandler;
|
2010-11-22 23:37:29 +01:00
|
|
|
class QModelIndex;
|
2015-04-17 16:33:52 +02:00
|
|
|
class QPrinter;
|
2010-11-23 20:57:16 +01:00
|
|
|
class QSettings;
|
2010-11-29 23:01:45 +01:00
|
|
|
class CheckStatistics;
|
2022-04-13 12:24:00 +02:00
|
|
|
class QPoint;
|
2022-03-19 19:54:20 +01:00
|
|
|
namespace Ui {
|
|
|
|
class ResultsView;
|
|
|
|
}
|
2010-07-14 13:24:46 +02:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2009-03-02 20:56:51 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Widget to show cppcheck progressbar and result
|
|
|
|
*
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ResultsView : public QWidget {
|
2009-03-01 08:38:21 +01:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2009-03-22 18:39:44 +01:00
|
|
|
|
2019-06-30 21:39:22 +02:00
|
|
|
explicit ResultsView(QWidget * parent = nullptr);
|
2017-07-28 12:10:10 +02:00
|
|
|
void initialize(QSettings *settings, ApplicationList *list, ThreadHandler *checkThreadHandler);
|
2018-05-01 09:35:53 +02:00
|
|
|
ResultsView(const ResultsView &) = delete;
|
2022-03-13 20:07:58 +01:00
|
|
|
~ResultsView() override;
|
2018-05-01 09:35:53 +02:00
|
|
|
ResultsView &operator=(const ResultsView &) = delete;
|
2009-03-01 08:38:21 +01:00
|
|
|
|
2009-03-02 20:56:51 +01:00
|
|
|
/**
|
2012-09-05 21:01:50 +02:00
|
|
|
* @brief Clear results and statistics and reset progressinfo.
|
|
|
|
* @param results Remove all the results from view?
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void clear(bool results);
|
2009-06-03 20:18:22 +02:00
|
|
|
|
2012-02-14 21:16:11 +01:00
|
|
|
/**
|
2012-09-05 21:01:50 +02:00
|
|
|
* @brief Remove a file from the results.
|
2012-02-14 21:16:11 +01:00
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void clear(const QString &filename);
|
2012-02-14 21:16:11 +01:00
|
|
|
|
2015-12-29 01:38:36 +01:00
|
|
|
/**
|
|
|
|
* @brief Remove a recheck file from the results.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void clearRecheckFile(const QString &filename);
|
2015-12-29 01:38:36 +01:00
|
|
|
|
2017-07-30 00:13:00 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Write statistics in file
|
|
|
|
*
|
|
|
|
* @param filename Filename to save statistics to
|
|
|
|
*/
|
2017-07-30 00:13:00 +02:00
|
|
|
void saveStatistics(const QString &filename) const;
|
|
|
|
|
2009-06-03 20:18:22 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Save results to a file
|
|
|
|
*
|
|
|
|
* @param filename Filename to save results to
|
|
|
|
* @param type Type of the report.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void save(const QString &filename, Report::Type type) const;
|
2009-06-03 20:18:22 +02:00
|
|
|
|
2017-08-02 20:24:23 +02:00
|
|
|
/**
|
|
|
|
* @brief Update results from old report (tag, sinceDate)
|
|
|
|
*/
|
|
|
|
void updateFromOldReport(const QString &filename) const;
|
|
|
|
|
2009-06-03 20:18:22 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Update tree settings
|
|
|
|
*
|
|
|
|
* @param showFullPath Show full path of files in the tree
|
|
|
|
* @param saveFullPath Save full path of files in reports
|
|
|
|
* @param saveAllErrors Save all visible errors
|
|
|
|
* @param showNoErrorsMessage Show "no errors"?
|
|
|
|
* @param showErrorId Show error id?
|
|
|
|
* @param showInconclusive Show inconclusive?
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void updateSettings(bool showFullPath,
|
2009-06-09 09:51:27 +02:00
|
|
|
bool saveFullPath,
|
|
|
|
bool saveAllErrors,
|
2012-10-27 11:16:52 +02:00
|
|
|
bool showNoErrorsMessage,
|
2015-10-15 11:59:17 +02:00
|
|
|
bool showErrorId,
|
|
|
|
bool showInconclusive);
|
2009-06-03 20:18:22 +02:00
|
|
|
|
2019-06-23 19:04:53 +02:00
|
|
|
/**
|
|
|
|
* @brief Update Code Editor Style
|
|
|
|
*
|
|
|
|
* Function will read updated Code Editor styling from
|
|
|
|
* stored program settings.
|
|
|
|
*
|
|
|
|
* @param settings Pointer to QSettings Object
|
|
|
|
*/
|
2019-06-25 15:29:15 +02:00
|
|
|
void updateStyleSetting(QSettings *settings);
|
2019-06-23 19:04:53 +02:00
|
|
|
|
2009-06-03 20:18:22 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set the directory we are checking
|
|
|
|
*
|
|
|
|
* This is used to split error file path to relative if necessary
|
|
|
|
* @param dir Directory we are checking
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void setCheckDirectory(const QString &dir);
|
2009-06-03 20:18:22 +02:00
|
|
|
|
2016-01-15 16:52:22 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get the directory we are checking
|
|
|
|
*
|
|
|
|
* @return Directory containing source files
|
|
|
|
*/
|
2016-01-15 16:52:22 +01:00
|
|
|
|
2020-03-07 11:33:08 +01:00
|
|
|
QString getCheckDirectory();
|
2016-01-15 16:52:22 +01:00
|
|
|
|
2009-06-09 10:21:17 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Inform the view that checking has started
|
|
|
|
*
|
|
|
|
* @param count Count of files to be checked.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void checkingStarted(int count);
|
2010-07-04 17:54:41 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Inform the view that checking finished.
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void checkingFinished();
|
2009-06-20 22:05:17 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Do we have visible results to show?
|
|
|
|
*
|
|
|
|
* @return true if there is at least one warning/error to show.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
bool hasVisibleResults() const;
|
2009-06-20 22:05:17 +02:00
|
|
|
|
2009-06-20 22:42:12 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Do we have results from check?
|
|
|
|
*
|
|
|
|
* @return true if there is at least one warning/error, hidden or visible.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
bool hasResults() const;
|
2009-06-20 22:42:12 +02:00
|
|
|
|
2009-07-02 10:32:29 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Save View's settings
|
|
|
|
*
|
|
|
|
* @param settings program settings.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void saveSettings(QSettings *settings);
|
2009-07-02 10:46:26 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Translate this view
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void translate();
|
2009-07-02 19:23:44 +02:00
|
|
|
|
2017-07-28 12:10:10 +02:00
|
|
|
void disableProgressbar();
|
2010-07-10 15:37:36 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Read errors from report XML file.
|
|
|
|
* @param filename Report file to read.
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void readErrorsXml(const QString &filename);
|
2010-07-10 15:37:36 +02:00
|
|
|
|
2010-11-29 23:01:45 +01:00
|
|
|
/**
|
2011-10-11 21:14:15 +02:00
|
|
|
* @brief Return checking statistics.
|
|
|
|
* @return Pointer to checking statistics.
|
|
|
|
*/
|
2023-02-24 21:22:08 +01:00
|
|
|
const CheckStatistics *getStatistics() const {
|
2010-11-29 23:01:45 +01:00
|
|
|
return mStatistics;
|
|
|
|
}
|
|
|
|
|
2011-10-11 21:14:15 +02:00
|
|
|
/**
|
|
|
|
* @brief Return Showtypes.
|
|
|
|
* @return Pointer to Showtypes.
|
|
|
|
*/
|
2023-02-24 21:22:08 +01:00
|
|
|
const ShowTypes & getShowTypes() const;
|
2011-10-11 21:14:15 +02:00
|
|
|
|
2009-06-03 20:18:22 +02:00
|
|
|
signals:
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Signal to be emitted when we have results
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void gotResults();
|
2009-06-03 20:18:22 +02:00
|
|
|
|
2010-11-24 09:48:07 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Signal that results have been hidden or shown
|
|
|
|
*
|
|
|
|
* @param hidden true if there are some hidden results, or false if there are not
|
|
|
|
*/
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-07-28 12:10:10 +02:00
|
|
|
void resultsHidden(bool hidden);
|
2009-06-03 20:18:22 +02:00
|
|
|
|
2015-12-23 10:28:07 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Signal to perform recheck of selected files
|
|
|
|
*
|
|
|
|
* @param selectedFilesList list of selected files
|
|
|
|
*/
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-07-28 12:10:10 +02:00
|
|
|
void checkSelected(QStringList selectedFilesList);
|
2015-12-23 10:28:07 +01:00
|
|
|
|
2017-08-11 07:45:29 +02:00
|
|
|
/** Suppress Ids */
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-08-11 07:45:29 +02:00
|
|
|
void suppressIds(QStringList ids);
|
|
|
|
|
2017-08-20 12:21:46 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Show/hide certain type of errors
|
|
|
|
* Refreshes the tree.
|
|
|
|
*
|
|
|
|
* @param type Type of error to show/hide
|
|
|
|
* @param show Should specified errors be shown (true) or hidden (false)
|
|
|
|
*/
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-08-20 12:21:46 +02:00
|
|
|
void showResults(ShowTypes::ShowType type, bool show);
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Show/hide cppcheck errors.
|
|
|
|
* Refreshes the tree.
|
|
|
|
*
|
|
|
|
* @param show Should specified errors be shown (true) or hidden (false)
|
|
|
|
*/
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-08-20 12:21:46 +02:00
|
|
|
void showCppcheckResults(bool show);
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Show/hide clang-tidy/clang-analyzer errors.
|
|
|
|
* Refreshes the tree.
|
|
|
|
*
|
|
|
|
* @param show Should specified errors be shown (true) or hidden (false)
|
|
|
|
*/
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-08-20 12:21:46 +02:00
|
|
|
void showClangResults(bool show);
|
2017-08-20 15:08:53 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Collapse all results in the result list.
|
|
|
|
*/
|
2017-08-20 15:08:53 +02:00
|
|
|
void collapseAllResults();
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Expand all results in the result list.
|
|
|
|
*/
|
2017-08-20 15:08:53 +02:00
|
|
|
void expandAllResults();
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Show hidden results in the result list.
|
|
|
|
*/
|
2017-08-20 15:08:53 +02:00
|
|
|
void showHiddenResults();
|
|
|
|
|
2009-03-01 08:38:21 +01:00
|
|
|
public slots:
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-06-01 23:49:15 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot for updating the checking progress
|
|
|
|
*
|
|
|
|
* @param value Current progress value
|
|
|
|
* @param description Description to accompany the progress
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void progress(int value, const QString& description);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot for new error to be displayed
|
|
|
|
*
|
|
|
|
* @param item Error data
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void error(const ErrorItem &item);
|
2009-06-02 00:26:44 +02:00
|
|
|
|
2011-05-04 07:30:54 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Filters the results in the result list.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void filterResults(const QString& filter);
|
2011-05-04 07:30:54 +02:00
|
|
|
|
2010-11-22 22:13:12 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Update detailed message when selected item is changed.
|
|
|
|
*
|
|
|
|
* @param index Position of new selected item.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void updateDetails(const QModelIndex &index);
|
2010-11-22 22:13:12 +01:00
|
|
|
|
2015-04-18 17:37:13 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot opening a print dialog to print the current report
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void print();
|
2015-04-18 17:37:13 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot printing the current report to the printer.
|
|
|
|
* @param printer The printer used for printing the report.
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void print(QPrinter* printer);
|
2015-04-17 16:33:52 +02:00
|
|
|
|
2015-04-18 17:37:13 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot opening a print preview dialog
|
|
|
|
*/
|
2017-07-28 12:10:10 +02:00
|
|
|
void printPreview();
|
2015-04-18 17:37:13 +02:00
|
|
|
|
2017-08-19 22:55:13 +02:00
|
|
|
/**
|
|
|
|
* \brief Log message
|
|
|
|
*/
|
|
|
|
void log(const QString &str);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief debug message
|
|
|
|
*/
|
|
|
|
void debugError(const ErrorItem &item);
|
|
|
|
|
2017-12-05 20:42:16 +01:00
|
|
|
/**
|
|
|
|
* \brief Clear log messages
|
|
|
|
*/
|
2017-12-06 21:39:53 +01:00
|
|
|
void logClear();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Copy selected log message entry
|
|
|
|
*/
|
|
|
|
void logCopyEntry();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Copy all log messages
|
|
|
|
*/
|
|
|
|
void logCopyComplete();
|
2017-12-05 20:42:16 +01:00
|
|
|
|
2009-03-01 08:38:21 +01:00
|
|
|
protected:
|
2009-06-09 09:51:27 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Should we show a "No errors found dialog" every time no errors were found?
|
|
|
|
*/
|
2009-06-09 09:51:27 +02:00
|
|
|
bool mShowNoErrorsMessage;
|
|
|
|
|
2022-03-19 19:54:20 +01:00
|
|
|
Ui::ResultsView *mUI;
|
2009-07-02 10:32:29 +02:00
|
|
|
|
2010-11-29 23:01:45 +01:00
|
|
|
CheckStatistics *mStatistics;
|
2020-08-22 11:37:44 +02:00
|
|
|
|
2017-12-05 20:42:16 +01:00
|
|
|
private slots:
|
|
|
|
/**
|
|
|
|
* @brief Custom context menu for Analysis Log
|
|
|
|
* @param pos Mouse click position
|
|
|
|
*/
|
|
|
|
void on_mListLog_customContextMenuRequested(const QPoint &pos);
|
2009-03-01 08:38:21 +01:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-03-01 08:38:21 +01:00
|
|
|
#endif // RESULTSVIEW_H
|