/usr/include/kdevplatform/shell/problemmodel.h is in kdevelop-dev 4:5.2.1-1ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | /*
* KDevelop Problem Reporter
*
* Copyright 2007 Hamish Rodda <rodda@kde.org>
* Copyright 2015 Laszlo Kis-Adam <laszlo.kis-adam@kdemail.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 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, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef PROBLEMMODEL_H
#define PROBLEMMODEL_H
#include <shell/shellexport.h>
#include <QAbstractItemModel>
#include <shell/problem.h>
namespace KDevelop {
class IDocument;
class IndexedString;
class ProblemStore;
/**
* @brief Wraps a ProblemStore and adds the QAbstractItemModel interface, so the it can be used in a model/view architecture.
*
* By default ProblemModel instantiates a FilteredProblemStore, with the following features on:
* \li ScopeFilter
* \li SeverityFilter
* \li Grouping
* \li CanByPassScopeFilter
*
* Has to following columns:
* \li Error
* \li Source
* \li File
* \li Line
* \li Column
* \li LastColumn
*
* Possible ProblemModel features
* \li NoFeatures
* \li CanDoFullUpdate
* \li CanShowImports
* \li ScopeFilter
* \li SeverityFilter
* \li Grouping
* \li CanByPassScopeFilter
*
* Scope, severity, grouping, imports can be set using the slots named after these features.
*
* Usage example:
* @code
* IProblem::Ptr problem(new DetectedProblem);
* problem->setDescription(QStringLiteral("Problem"));
* ProblemModel *model = new ProblemModel(nullptr);
* model->addProblem(problem);
* model->rowCount(); // returns 1
* QModelIndex idx = model->index(0, 0);
* model->data(index); // "Problem"
* @endcode
*
*/
class KDEVPLATFORMSHELL_EXPORT ProblemModel : public QAbstractItemModel
{
Q_OBJECT
public:
/// List of supportable features
enum FeatureCode
{
NoFeatures = 0, /// No features :(
CanDoFullUpdate = 1, /// Reload/Reparse problems
CanShowImports = 2, /// Show problems from imported files. E.g.: Header files in C/C++
ScopeFilter = 4, /// Filter problems by scope. E.g.: current document, open documents, etc
SeverityFilter = 8, /// Filter problems by severity. E.g.: hint, warning, error, etc
Grouping = 16, /// Can group problems
CanByPassScopeFilter = 32, /// Can bypass scope filter
ShowSource = 64 /// Show problem's source. Set if problems can have different sources.
};
Q_DECLARE_FLAGS(Features, FeatureCode)
explicit ProblemModel(QObject *parent, ProblemStore *store = nullptr);
~ProblemModel() override;
enum Columns {
Error,
Source,
File,
Line,
Column,
LastColumn
};
enum Roles {
ProblemRole = Qt::UserRole + 1,
SeverityRole
};
int columnCount(const QModelIndex & parent = QModelIndex()) const override;
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex & index) const override;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
int rowCount(const QModelIndex & parent = QModelIndex()) const override;
QVariant headerData ( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const override;
IProblem::Ptr problemForIndex(const QModelIndex& index) const;
/// Adds a new problem to the model
void addProblem(const IProblem::Ptr &problem);
/// Clears the problems, then adds a new set of them
void setProblems(const QVector<IProblem::Ptr> &problems);
/// Clears the problems
void clearProblems();
/// Retrieve problems for selected document
QVector<IProblem::Ptr> problems(const KDevelop::IndexedString& document) const;
/// Retrieve the supported features
Features features() const;
/// Retrieve 'show imports' filter setting
bool showImports();
/// Set the supported features
void setFeatures(Features features);
/// Tooltip for "Force Full Update" action in the Problems View when the model
/// is active (correspondent tab is selected)
QString fullUpdateTooltip() const;
/// Set the "Force Full Update" action tooltip
void setFullUpdateTooltip(const QString& tooltip);
Q_SIGNALS:
/// Emitted when the stored problems are changed with addProblem(), setProblems() and
/// clearProblems() methods. This signal emitted only when internal problems storage is
/// really changed: for example, it is not emitted when we call clearProblems() method
/// for empty model.
void problemsChanged();
/// Emitted when the "Force Full Update" action tooltip is changed with setFullUpdateTooltip().
/// This signal emitted only when tooltip is really changed.
void fullUpdateTooltipChanged();
public Q_SLOTS:
/// Show imports
void setShowImports(bool showImports);
/// Sets the scope filter. Uses int to be able to use QSignalMapper
void setScope(int scope);
/// Sets the severity filter. Uses int to be able to use QSignalMapper
void setSeverity(int severity);///old-style severity filtering
void setSeverities(KDevelop::IProblem::Severities severities);///new-style severity filtering
void setGrouping(int grouping);
/**
* Force a full problem update.
* E.g.: Reparse the source code.
* Obviously it doesn't make sense for run-time problem checkers.
*/
virtual void forceFullUpdate(){}
protected Q_SLOTS:
/// Triggered when problems change
virtual void onProblemsChanged(){}
private Q_SLOTS:
/// Triggered when the current document changes
virtual void setCurrentDocument(IDocument* doc);
virtual void closedDocument(IDocument* doc);
/// Triggered before the problems are rebuilt
void onBeginRebuild();
/// Triggered once the problems have been rebuilt
void onEndRebuild();
protected:
ProblemStore *store() const;
private:
const QScopedPointer<class ProblemModelPrivate> d;
};
Q_DECLARE_OPERATORS_FOR_FLAGS(ProblemModel::Features)
}
#endif // PROBLEMMODEL_H
|