代码拉取完成,页面将自动刷新
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "storagesettings.h"
#include "utils/hostosinfo.h"
//#include "utils/settingsutils.h"
#include <QRegularExpression>
#include <QSettings>
#include <QString>
namespace TextEditor {
static const char cleanWhitespaceKey[] = "cleanWhitespace";
static const char inEntireDocumentKey[] = "inEntireDocument";
static const char addFinalNewLineKey[] = "addFinalNewLine";
static const char cleanIndentationKey[] = "cleanIndentation";
static const char skipTrailingWhitespaceKey[] = "skipTrailingWhitespace";
static const char ignoreFileTypesKey[] = "ignoreFileTypes";
static const char groupPostfix[] = "StorageSettings";
static const char defaultTrailingWhitespaceBlacklist[] = "*.md, *.MD, Makefile";
StorageSettings::StorageSettings()
: m_ignoreFileTypes(defaultTrailingWhitespaceBlacklist),
m_cleanWhitespace(false),
m_inEntireDocument(false),
m_addFinalNewLine(false),
m_cleanIndentation(true),
m_skipTrailingWhitespace(true)
{
}
void StorageSettings::toSettings(const QString &category, QSettings *s) const
{
//Utils::toSettings(QLatin1String(groupPostfix), category, s, this);
}
void StorageSettings::fromSettings(const QString &category, QSettings *s)
{
*this = StorageSettings();
//Utils::fromSettings(QLatin1String(groupPostfix), category, s, this);
}
QJsonObject StorageSettings::toJson(){
return {};
}
void StorageSettings::fromJson(const QJsonObject& data){
}
QVariantMap StorageSettings::toMap() const
{
return {
{cleanWhitespaceKey, m_cleanWhitespace},
{inEntireDocumentKey, m_inEntireDocument},
{addFinalNewLineKey, m_addFinalNewLine},
{cleanIndentationKey, m_cleanIndentation},
{skipTrailingWhitespaceKey, m_skipTrailingWhitespace},
{ignoreFileTypesKey, m_ignoreFileTypes}
};
}
void StorageSettings::fromMap(const QVariantMap &map)
{
m_cleanWhitespace = map.value(cleanWhitespaceKey, m_cleanWhitespace).toBool();
m_inEntireDocument = map.value(inEntireDocumentKey, m_inEntireDocument).toBool();
m_addFinalNewLine = map.value(addFinalNewLineKey, m_addFinalNewLine).toBool();
m_cleanIndentation = map.value(cleanIndentationKey, m_cleanIndentation).toBool();
m_skipTrailingWhitespace = map.value(skipTrailingWhitespaceKey, m_skipTrailingWhitespace).toBool();
m_ignoreFileTypes = map.value(ignoreFileTypesKey, m_ignoreFileTypes).toString();
}
bool StorageSettings::removeTrailingWhitespace(const QString &fileName) const
{
// if the user has elected not to trim trailing whitespace altogether, then
// early out here
if (!m_skipTrailingWhitespace) {
return true;
}
const QString ignoreFileTypesRegExp(R"(\s*((?>\*\.)?[\w\d\.\*]+)[,;]?\s*)");
// use the ignore-files regex to extract the specified file patterns
QRegularExpression re(ignoreFileTypesRegExp);
QRegularExpressionMatchIterator iter = re.globalMatch(m_ignoreFileTypes);
while (iter.hasNext()) {
QRegularExpressionMatch match = iter.next();
QString pattern = match.captured(1);
QRegularExpression patternRegExp(QRegularExpression::wildcardToRegularExpression(pattern));
QRegularExpressionMatch patternMatch = patternRegExp.match(fileName);
if (patternMatch.hasMatch()) {
// if the filename has a pattern we want to ignore, then we need to return
// false ("don't remove trailing whitespace")
return false;
}
}
// the supplied pattern does not match, so we want to remove trailing whitespace
return true;
}
bool StorageSettings::equals(const StorageSettings &ts) const
{
return m_addFinalNewLine == ts.m_addFinalNewLine
&& m_cleanWhitespace == ts.m_cleanWhitespace
&& m_inEntireDocument == ts.m_inEntireDocument
&& m_cleanIndentation == ts.m_cleanIndentation
&& m_skipTrailingWhitespace == ts.m_skipTrailingWhitespace
&& m_ignoreFileTypes == ts.m_ignoreFileTypes;
}
} // namespace TextEditor
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。