Newer
Older
/**************************************************************************
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Nokia Corporation (qt-info@nokia.com)
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
** GNU Lesser General Public License Usage
** 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.
** If you are unsure which license is appropriate for your use, please
**************************************************************************/
#include "completionsupport.h"
#include "completionwidget.h"
#include "icompletioncollector.h"
#include <coreplugin/icore.h>
#include <extensionsystem/pluginmanager.h>
#include <QtCore/QString>
#include <QtCore/QList>
using namespace TextEditor;
using namespace TextEditor::Internal;
CompletionSupport *CompletionSupport::instance()
if (!m_instance)
m_instance = new CompletionSupport;
CompletionSupport::CompletionSupport()
: QObject(Core::ICore::instance()),
m_completionList(0),
m_startPosition(0),
m_checkCompletionTrigger(false),
m_editor(0),
m_completionCollector(0)
m_completionCollectors = ExtensionSystem::PluginManager::instance()
->getObjects<ICompletionCollector>();
}
void CompletionSupport::performCompletion(const CompletionItem &item)
{
item.collector->complete(item);
m_checkCompletionTrigger = true;
}
void CompletionSupport::cleanupCompletions()
{
if (m_completionList)
disconnect(m_completionList, SIGNAL(destroyed(QObject*)),
this, SLOT(cleanupCompletions()));

Roberto Raggi
committed
if (m_checkCompletionTrigger)
m_checkCompletionTrigger = m_completionCollector->shouldRestartCompletion();
m_completionList = 0;
m_completionCollector->cleanup();
if (m_checkCompletionTrigger) {
m_checkCompletionTrigger = false;
// Only check for completion trigger when some text was entered
if (m_editor->position() > m_startPosition)
autoComplete(m_editor, false);
}
}
void CompletionSupport::autoComplete(ITextEditable *editor, bool forced)
{
autoComplete_helper(editor, forced, /*quickFix = */ false);
}
void CompletionSupport::quickFix(ITextEditable *editor)
{
autoComplete_helper(editor,
/*forced = */ true,
/*quickFix = */ true);
}
void CompletionSupport::autoComplete_helper(ITextEditable *editor, bool forced,
bool quickFix)
m_completionCollector = 0;
foreach (ICompletionCollector *collector, m_completionCollectors) {
if (quickFix)
collector = qobject_cast<IQuickFixCollector *>(collector);
if (collector && collector->supportsEditor(editor)) {
m_completionCollector = collector;
break;
}
}
if (!m_completionCollector)
return;
m_editor = editor;
QList<CompletionItem> completionItems;
if (!m_completionList) {
if (!forced && !m_completionCollector->triggersCompletion(editor))
return;
m_startPosition = m_completionCollector->startCompletion(editor);
completionItems = getCompletions();
QTC_ASSERT(!(m_startPosition == -1 && completionItems.size() > 0), return);
if (completionItems.isEmpty()) {
cleanupCompletions();
return;
}
m_completionList = new CompletionWidget(this, editor);
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
connect(m_completionList, SIGNAL(itemSelected(TextEditor::CompletionItem)),
this, SLOT(performCompletion(TextEditor::CompletionItem)));
connect(m_completionList, SIGNAL(completionListClosed()),
this, SLOT(cleanupCompletions()));
// Make sure to clean up the completions if the list is destroyed without
// emitting completionListClosed (can happen when no focus out event is received,
// for example when switching applications on the Mac)
connect(m_completionList, SIGNAL(destroyed(QObject*)),
this, SLOT(cleanupCompletions()));
} else {
completionItems = getCompletions();
if (completionItems.isEmpty()) {
m_completionList->closeList();
return;
}
}
m_completionList->setCompletionItems(completionItems);
// Partially complete when completion was forced
if (forced && m_completionCollector->partiallyComplete(completionItems)) {
m_checkCompletionTrigger = true;
m_completionList->closeList();
} else {
m_completionList->showCompletions(m_startPosition);
}
}
QList<CompletionItem> CompletionSupport::getCompletions() const
{
if (m_completionCollector)
return m_completionCollector->getCompletions();
return QList<CompletionItem>();