kde-extraapps/kdevplatform/plugins/problemreporter/problemreporterplugin.h
2015-07-26 14:23:17 +03:00

71 lines
2.4 KiB
C++

/*
* KDevelop Problem Reporter
*
* Copyright 2006 Adam Treat <treat@kde.org>
* Copyright 2006-2007 Hamish Rodda <rodda@kde.org>
* Copyright 2007-2008 David Nolden <david.nolden.kdevelop@art-master.de>
*
* 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 KDEVPLATFORM_PLUGIN_PROBLEMREPORTERPLUGIN_H
#define KDEVPLATFORM_PLUGIN_PROBLEMREPORTERPLUGIN_H
#include <interfaces/iplugin.h>
#include <QtCore/QVariant>
#include <language/duchain/indexedstring.h>
#include <language/duchain/topducontext.h>
namespace KTextEditor { class Document; }
namespace KDevelop { class IDocument; class ParseJob; }
class ProblemHighlighter;
class ProblemModel;
class ProblemReporterPlugin : public KDevelop::IPlugin
{
Q_OBJECT
public:
ProblemReporterPlugin(QObject *parent, const QVariantList & = QVariantList() );
virtual ~ProblemReporterPlugin();
virtual KDevelop::ContextMenuExtension contextMenuExtension(KDevelop::Context* context);
// KDevelop::Plugin methods
virtual void unload();
ProblemModel* getModel() const;
private Q_SLOTS:
void updateReady(const KDevelop::IndexedString &url,
const KDevelop::ReferencedTopDUContext& = KDevelop::ReferencedTopDUContext());
void textDocumentCreated(KDevelop::IDocument* document);
void parseJobFinished(KDevelop::ParseJob* parseJob);
private:
class ProblemReporterFactory* m_factory;
class ProblemModel* m_model;
QHash<KDevelop::IndexedString, ProblemHighlighter*> m_highlighters;
public slots:
void documentClosed(KDevelop::IDocument*);
};
#endif // KDEVPLATFORM_PLUGIN_PROBLEMREPORTERPLUGIN_H
// kate: space-indent on; indent-width 2; tab-width 4; replace-tabs on; auto-insert-doxygen on