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
|
/***************************************************************************
* Copyright 2008 David Nolden <david.nolden.kdevelop@art-master.de> *
* Copyright 2013 Vlas Puhov <vlas.puhov@mail.ru> *
* *
* 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 "completionsettings.h"
#include "languageconfig.h"
#include <KShell>
#include <KSharedConfig>
namespace KDevelop
{
static QString completionLevelToString(ICompletionSettings::CompletionLevel l)
{
if (l < 0 || l >= ICompletionSettings::LAST_LEVEL) {
return QString();
}
const static QString levels[ICompletionSettings::LAST_LEVEL] = {QStringLiteral("Minimal"), QStringLiteral("MinimalWhenAutomatic"), QStringLiteral("AlwaysFull")};
return levels[l];
}
CompletionSettings& CompletionSettings::self()
{
static CompletionSettings settings;
return settings;
}
QStringList CompletionSettings::todoMarkerWords() const
{
const QString markers = m_languageGroup.readEntry("todoMarkerWords", m_todoMarkerWords);
return KShell::splitArgs(markers);
}
int CompletionSettings::minFilesForSimplifiedParsing() const
{
return m_languageGroup.readEntry("minFilesForSimplifiedParsing", m_minFilesForSimplifiedParsing);
}
bool CompletionSettings::showMultiLineSelectionInformation() const
{
return m_languageGroup.readEntry("showMultiLineSelectionInformation", m_showMultiLineInformation);
}
bool CompletionSettings::highlightProblematicLines() const
{
return m_languageGroup.readEntry("highlightProblematicLines", m_highlightProblematicLines);
}
bool CompletionSettings::highlightSemanticProblems() const
{
return m_languageGroup.readEntry("highlightSemanticProblems", m_highlightSemanticProblems);
}
ICompletionSettings::ProblemInlineNotesLevel CompletionSettings::problemInlineNotesLevel() const
{
return LanguageConfig::problemInlineNotesLevel();
}
bool CompletionSettings::boldDeclarations() const
{
return m_languageGroup.readEntry("boldDeclarations", m_boldDeclarations);
}
int CompletionSettings::globalColorizationLevel() const
{
return m_languageGroup.readEntry("globalColorization", m_globalColorizationLevel);
}
int CompletionSettings::localColorizationLevel() const
{
return m_languageGroup.readEntry("localColorization", m_localColorizationLevel);
}
bool CompletionSettings::automaticCompletionEnabled() const
{
return m_languageGroup.readEntry("Automatic Invocation", m_automatic);
}
ICompletionSettings::CompletionLevel CompletionSettings::completionLevel() const
{
const QString level = m_languageGroup.readEntry("completionDetail", completionLevelToString(m_level));
for (int i = 0; i < ICompletionSettings::LAST_LEVEL; i++) {
if (completionLevelToString(static_cast<CompletionLevel>(i)) == level) {
return static_cast<CompletionLevel>(i);
}
}
return m_level;
}
CompletionSettings::CompletionSettings()
: m_todoMarkerWords(QStringLiteral("TODO FIXME"))
, m_languageGroup(KSharedConfig::openConfig(), "Language Support"){}
}
|