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
|
/***************************************************************************
* Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de> *
* Copyright 2014 Kevin Funk <kfunk@kde.org> *
* *
* 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 Library 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. *
***************************************************************************/
#include "ilanguagesupport.h"
#include "../duchain/duchain.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
{
auto text = doc->text(changedRange);
bool joinedWord = doc->wordRangeAt(changedRange.start()).isEmpty() ||
doc->wordRangeAt(changedRange.end()).isEmpty();
auto isWhitespace = std::all_of(text.begin(), text.end(), [](const QChar& c) {
return c.isSpace();
});
return (isWhitespace && !joinedWord) ? NoUpdateRequired : DefaultDelay;
}
}
|