2014-08-19 15:59:29 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2014-08-19 15:59:29 +02:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-15 14:46:23 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2014-08-19 15:59:29 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-15 14:46:23 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2014-08-19 15:59:29 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2014-08-19 15:59:29 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef BASEEDITORDOCUMENTPROCESSOR_H
|
|
|
|
|
#define BASEEDITORDOCUMENTPROCESSOR_H
|
|
|
|
|
|
|
|
|
|
#include "baseeditordocumentparser.h"
|
|
|
|
|
#include "cppsemanticinfo.h"
|
|
|
|
|
#include "cpptools_global.h"
|
|
|
|
|
|
2014-09-26 09:14:03 +02:00
|
|
|
#include <texteditor/texteditor.h>
|
2015-02-26 13:22:35 +01:00
|
|
|
#include <texteditor/textdocument.h>
|
2014-08-19 15:59:29 +02:00
|
|
|
|
|
|
|
|
#include <cplusplus/CppDocument.h>
|
|
|
|
|
|
|
|
|
|
#include <QTextEdit>
|
|
|
|
|
|
2015-02-26 13:22:35 +01:00
|
|
|
namespace TextEditor { class TextDocument; }
|
|
|
|
|
|
2014-08-19 15:59:29 +02:00
|
|
|
namespace CppTools {
|
|
|
|
|
|
|
|
|
|
class CPPTOOLS_EXPORT BaseEditorDocumentProcessor : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2014-09-22 18:43:31 +02:00
|
|
|
BaseEditorDocumentProcessor(TextEditor::TextDocument *document);
|
2014-08-19 15:59:29 +02:00
|
|
|
virtual ~BaseEditorDocumentProcessor();
|
|
|
|
|
|
2014-09-22 18:43:31 +02:00
|
|
|
TextEditor::TextDocument *baseTextDocument() const;
|
2014-08-19 15:59:29 +02:00
|
|
|
|
|
|
|
|
// Function interface to implement
|
|
|
|
|
virtual void run() = 0;
|
2015-06-19 14:43:41 +02:00
|
|
|
virtual void semanticRehighlight() = 0;
|
2015-06-19 14:37:26 +02:00
|
|
|
virtual void recalculateSemanticInfoDetached(bool force) = 0;
|
2014-08-19 15:59:29 +02:00
|
|
|
virtual CppTools::SemanticInfo recalculateSemanticInfo() = 0;
|
2014-11-28 12:03:58 +01:00
|
|
|
virtual CPlusPlus::Snapshot snapshot() = 0;
|
2014-08-19 15:59:29 +02:00
|
|
|
virtual BaseEditorDocumentParser *parser() = 0;
|
|
|
|
|
virtual bool isParserRunning() const = 0;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
static BaseEditorDocumentProcessor *get(const QString &filePath);
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
// Signal interface to implement
|
|
|
|
|
void codeWarningsUpdated(unsigned revision,
|
|
|
|
|
const QList<QTextEdit::ExtraSelection> selections);
|
|
|
|
|
|
|
|
|
|
void ifdefedOutBlocksUpdated(unsigned revision,
|
|
|
|
|
const QList<TextEditor::BlockRange> ifdefedOutBlocks);
|
|
|
|
|
|
|
|
|
|
void cppDocumentUpdated(const CPlusPlus::Document::Ptr document); // TODO: Remove me
|
|
|
|
|
void semanticInfoUpdated(const CppTools::SemanticInfo semanticInfo); // TODO: Remove me
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
static QList<QTextEdit::ExtraSelection> toTextEditorSelections(
|
|
|
|
|
const QList<CPlusPlus::Document::DiagnosticMessage> &diagnostics,
|
|
|
|
|
QTextDocument *textDocument);
|
|
|
|
|
|
|
|
|
|
static void runParser(QFutureInterface<void> &future,
|
|
|
|
|
CppTools::BaseEditorDocumentParser *parser,
|
2015-07-10 14:57:42 +02:00
|
|
|
BaseEditorDocumentParser::InMemoryInfo info);
|
2014-08-19 15:59:29 +02:00
|
|
|
|
|
|
|
|
// Convenience
|
2014-12-21 21:54:30 +02:00
|
|
|
QString filePath() const { return m_baseTextDocument->filePath().toString(); }
|
2014-08-19 15:59:29 +02:00
|
|
|
unsigned revision() const { return static_cast<unsigned>(textDocument()->revision()); }
|
|
|
|
|
QTextDocument *textDocument() const { return m_baseTextDocument->document(); }
|
|
|
|
|
|
|
|
|
|
private:
|
2014-09-22 18:43:31 +02:00
|
|
|
TextEditor::TextDocument *m_baseTextDocument;
|
2014-08-19 15:59:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace CppTools
|
|
|
|
|
|
|
|
|
|
#endif // BASEEDITORDOCUMENTPROCESSOR_H
|
|
|
|
|
|