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
|
/*
SPDX-FileCopyrightText: 2008 David Nolden <david.nolden.kdevelop@art-master.de>
SPDX-FileCopyrightText: 2014 Kevin Funk <kfunk@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "ilanguagesupport.h"
#include "../duchain/duchain.h"
#include "../duchain/stringhelpers.h"
#include <QReadWriteLock>
namespace KDevelop {
class ILanguageSupportPrivate
{
public:
mutable QReadWriteLock lock;
};
ILanguageSupport::ILanguageSupport()
: d_ptr(new ILanguageSupportPrivate)
{
}
ILanguageSupport::~ILanguageSupport()
{
}
TopDUContext* ILanguageSupport::standardContext(const QUrl& url, bool proxyContext)
{
Q_UNUSED(proxyContext)
return DUChain::self()->chainForDocument(url);
}
KTextEditor::Range ILanguageSupport::specialLanguageObjectRange(const QUrl& url, const KTextEditor::Cursor& position)
{
Q_UNUSED(url)
Q_UNUSED(position)
return KTextEditor::Range::invalid();
}
QPair<QUrl, KTextEditor::Cursor> ILanguageSupport::specialLanguageObjectJumpCursor(const QUrl& url,
const KTextEditor::Cursor& position)
{
Q_UNUSED(url)
Q_UNUSED(position)
return QPair<QUrl, KTextEditor::Cursor>(QUrl(), KTextEditor::Cursor::invalid());
}
QPair<QWidget*, KTextEditor::Range> ILanguageSupport::specialLanguageObjectNavigationWidget(const QUrl& url,
const KTextEditor::Cursor& position)
{
Q_UNUSED(url)
Q_UNUSED(position)
return {
nullptr, KTextEditor::Range::invalid()
};
}
ICodeHighlighting* ILanguageSupport::codeHighlighting() const
{
return nullptr;
}
BasicRefactoring* ILanguageSupport::refactoring() const
{
return nullptr;
}
ICreateClassHelper* ILanguageSupport::createClassHelper() const
{
return nullptr;
}
SourceFormatterItemList ILanguageSupport::sourceFormatterItems() const
{
return SourceFormatterItemList();
}
QString ILanguageSupport::indentationSample() const
{
return QString();
}
QReadWriteLock* ILanguageSupport::parseLock() const
{
Q_D(const ILanguageSupport);
return &d->lock;
}
int ILanguageSupport::suggestedReparseDelayForChange(KTextEditor::Document* doc,
const KTextEditor::Range& changedRange,
const QString& /*removedText*/, bool /*removal*/) const
{
const auto joinedWord = [doc, &changedRange] {
return doc->wordRangeAt(changedRange.start()).isEmpty() || doc->wordRangeAt(changedRange.end()).isEmpty();
};
return consistsOfWhitespace(doc->text(changedRange)) && !joinedWord() ? NoUpdateRequired : DefaultDelay;
}
}
|