2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-02-20 12:39:08 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-02-20 12:39:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-02-20 12:39:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2012-02-20 12:39:08 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-02-20 12:39:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-02-20 12:39:08 +01:00
|
|
|
|
|
|
|
|
#include "cpphighlightingsupportinternal.h"
|
2013-03-27 18:54:03 +01:00
|
|
|
|
2013-03-12 12:06:41 +01:00
|
|
|
#include "cppchecksymbols.h"
|
2013-03-27 18:54:03 +01:00
|
|
|
#include "cpptoolsreuse.h"
|
|
|
|
|
|
|
|
|
|
#include <texteditor/itexteditor.h>
|
2012-02-20 12:39:08 +01:00
|
|
|
|
2010-11-03 11:02:25 +01:00
|
|
|
#include <cplusplus/SimpleLexer.h>
|
2012-02-20 12:39:08 +01:00
|
|
|
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
using namespace CppTools;
|
|
|
|
|
using namespace CppTools::Internal;
|
|
|
|
|
|
|
|
|
|
CppHighlightingSupportInternal::CppHighlightingSupportInternal(TextEditor::ITextEditor *editor)
|
|
|
|
|
: CppHighlightingSupport(editor)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppHighlightingSupportInternal::~CppHighlightingSupportInternal()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-16 16:48:10 +02:00
|
|
|
QFuture<TextEditor::HighlightingResult> CppHighlightingSupportInternal::highlightingFuture(
|
2012-02-20 12:39:08 +01:00
|
|
|
const Document::Ptr &doc,
|
|
|
|
|
const Snapshot &snapshot) const
|
|
|
|
|
{
|
2013-04-16 16:48:10 +02:00
|
|
|
typedef TextEditor::HighlightingResult Result;
|
|
|
|
|
QList<Result> macroUses;
|
2013-01-18 15:54:52 +01:00
|
|
|
|
2013-04-16 16:48:10 +02:00
|
|
|
// Get macro definitions
|
2013-01-18 15:54:52 +01:00
|
|
|
foreach (const CPlusPlus::Macro& macro, doc->definedMacros()) {
|
|
|
|
|
int line, column;
|
|
|
|
|
editor()->convertPosition(macro.offset(), &line, &column);
|
|
|
|
|
++column; //Highlighting starts at (column-1) --> compensate here
|
2013-04-16 16:48:10 +02:00
|
|
|
Result use(line, column, macro.name().size(), MacroUse);
|
2013-01-18 15:54:52 +01:00
|
|
|
macroUses.append(use);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-16 16:48:10 +02:00
|
|
|
// Get macro uses
|
2013-03-08 09:58:01 +01:00
|
|
|
foreach (const Document::MacroUse ¯o, doc->macroUses()) {
|
2010-11-03 11:02:25 +01:00
|
|
|
const QString name = QString::fromUtf8(macro.macro().name());
|
|
|
|
|
|
|
|
|
|
//Filter out QtKeywords
|
|
|
|
|
if (isQtKeyword(QStringRef(&name)))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
//Filter out C++ keywords
|
|
|
|
|
SimpleLexer tokenize;
|
|
|
|
|
tokenize.setQtMocRunEnabled(false);
|
|
|
|
|
tokenize.setObjCEnabled(false);
|
2012-06-28 12:09:15 +02:00
|
|
|
tokenize.setCxx0xEnabled(true);
|
2010-11-03 11:02:25 +01:00
|
|
|
const QList<Token> tokens = tokenize(name);
|
|
|
|
|
if (tokens.length() && (tokens.at(0).isKeyword() || tokens.at(0).isObjCAtKeyword()))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
int line, column;
|
|
|
|
|
editor()->convertPosition(macro.begin(), &line, &column);
|
|
|
|
|
++column; //Highlighting starts at (column-1) --> compensate here
|
2013-04-16 16:48:10 +02:00
|
|
|
Result use(line, column, name.size(), MacroUse);
|
2010-11-03 11:02:25 +01:00
|
|
|
macroUses.append(use);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-20 12:39:08 +01:00
|
|
|
LookupContext context(doc, snapshot);
|
2010-11-03 11:02:25 +01:00
|
|
|
return CheckSymbols::go(doc, context, macroUses);
|
2012-02-20 12:39:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppHighlightingSupportInternalFactory::~CppHighlightingSupportInternalFactory()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppHighlightingSupport *CppHighlightingSupportInternalFactory::highlightingSupport(TextEditor::ITextEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
return new CppHighlightingSupportInternal(editor);
|
|
|
|
|
}
|