2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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.
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-12 16:36:33 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-12 16:36:33 +01:00
|
|
|
|
|
|
|
|
#include "completionsettingspage.h"
|
|
|
|
|
#include "ui_completionsettingspage.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2009-11-27 16:12:12 +01:00
|
|
|
#include <texteditor/texteditorconstants.h>
|
2008-12-12 16:36:33 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
2009-11-20 16:55:23 +01:00
|
|
|
#include <QtCore/QTextStream>
|
2009-11-27 16:12:12 +01:00
|
|
|
#include <QtCore/QCoreApplication>
|
2009-11-20 16:55:23 +01:00
|
|
|
|
2008-12-12 16:36:33 +01:00
|
|
|
using namespace CppTools::Internal;
|
|
|
|
|
|
|
|
|
|
CompletionSettingsPage::CompletionSettingsPage(CppCodeCompletion *completion)
|
|
|
|
|
: m_completion(completion)
|
2008-12-18 09:00:22 +01:00
|
|
|
, m_page(new Ui_CompletionSettingsPage)
|
2008-12-12 16:36:33 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-18 09:00:22 +01:00
|
|
|
CompletionSettingsPage::~CompletionSettingsPage()
|
|
|
|
|
{
|
|
|
|
|
delete m_page;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-18 16:43:01 +01:00
|
|
|
QString CompletionSettingsPage::id() const
|
|
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QLatin1String("P.Completion");
|
2009-03-18 16:43:01 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString CompletionSettingsPage::displayName() const
|
2008-12-12 16:36:33 +01:00
|
|
|
{
|
|
|
|
|
return tr("Completion");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CompletionSettingsPage::category() const
|
|
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QLatin1String(TextEditor::Constants::TEXT_EDITOR_SETTINGS_CATEGORY);
|
2008-12-12 16:36:33 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString CompletionSettingsPage::displayCategory() const
|
2008-12-12 16:36:33 +01:00
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QCoreApplication::translate("Text Editor", TextEditor::Constants::TEXT_EDITOR_SETTINGS_TR_CATEGORY);
|
2008-12-12 16:36:33 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-26 17:34:10 +01:00
|
|
|
QIcon CompletionSettingsPage::categoryIcon() const
|
|
|
|
|
{
|
|
|
|
|
return QIcon(QLatin1String(TextEditor::Constants::TEXT_EDITOR_SETTINGS_CATEGORY_ICON));
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-12 16:36:33 +01:00
|
|
|
QWidget *CompletionSettingsPage::createPage(QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
QWidget *w = new QWidget(parent);
|
|
|
|
|
m_page->setupUi(w);
|
|
|
|
|
|
2009-12-15 10:14:52 +01:00
|
|
|
int caseSensitivityIndex = 0;
|
2009-12-09 19:08:14 +01:00
|
|
|
switch (m_completion->caseSensitivity()) {
|
|
|
|
|
case CppCodeCompletion::CaseSensitive:
|
|
|
|
|
caseSensitivityIndex = 0;
|
|
|
|
|
break;
|
|
|
|
|
case CppCodeCompletion::CaseInsensitive:
|
|
|
|
|
caseSensitivityIndex = 1;
|
|
|
|
|
break;
|
|
|
|
|
case CppCodeCompletion::FirstLetterCaseSensitive:
|
|
|
|
|
caseSensitivityIndex = 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_page->caseSensitivity->setCurrentIndex(caseSensitivityIndex);
|
2009-05-26 11:10:22 +02:00
|
|
|
m_page->autoInsertBrackets->setChecked(m_completion->autoInsertBrackets());
|
2008-12-16 16:55:44 +01:00
|
|
|
m_page->partiallyComplete->setChecked(m_completion->isPartialCompletionEnabled());
|
2009-11-20 16:55:23 +01:00
|
|
|
if (m_searchKeywords.isEmpty()) {
|
2009-12-09 19:08:14 +01:00
|
|
|
QTextStream(&m_searchKeywords) << m_page->caseSensitivityLabel->text()
|
2009-11-20 16:55:23 +01:00
|
|
|
<< ' ' << m_page->autoInsertBrackets->text()
|
|
|
|
|
<< ' ' << m_page->partiallyComplete->text();
|
|
|
|
|
m_searchKeywords.remove(QLatin1Char('&'));
|
|
|
|
|
}
|
2008-12-12 16:36:33 +01:00
|
|
|
return w;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 15:41:33 +01:00
|
|
|
void CompletionSettingsPage::apply()
|
2008-12-12 16:36:33 +01:00
|
|
|
{
|
2009-12-09 19:08:14 +01:00
|
|
|
m_completion->setCaseSensitivity(caseSensitivity());
|
2009-05-26 11:10:22 +02:00
|
|
|
m_completion->setAutoInsertBrackets(m_page->autoInsertBrackets->isChecked());
|
2008-12-18 09:00:22 +01:00
|
|
|
m_completion->setPartialCompletionEnabled(m_page->partiallyComplete->isChecked());
|
2008-12-12 16:36:33 +01:00
|
|
|
}
|
2009-11-20 16:55:23 +01:00
|
|
|
|
|
|
|
|
bool CompletionSettingsPage::matches(const QString &s) const
|
|
|
|
|
{
|
|
|
|
|
return m_searchKeywords.contains(s, Qt::CaseInsensitive);
|
|
|
|
|
}
|
2009-12-09 19:08:14 +01:00
|
|
|
|
|
|
|
|
CppCodeCompletion::CaseSensitivity CompletionSettingsPage::caseSensitivity() const
|
|
|
|
|
{
|
|
|
|
|
switch (m_page->caseSensitivity->currentIndex()) {
|
|
|
|
|
case 0: // Full
|
|
|
|
|
return CppCodeCompletion::CaseSensitive;
|
|
|
|
|
case 1: // None
|
|
|
|
|
return CppCodeCompletion::CaseInsensitive;
|
|
|
|
|
default: // First letter
|
|
|
|
|
return CppCodeCompletion::FirstLetterCaseSensitive;
|
|
|
|
|
}
|
|
|
|
|
}
|