Ai
1 Star 0 Fork 0

旷野芦苇殇/texteditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
storagesettings.cpp 4.04 KB
一键复制 编辑 原始数据 按行查看 历史
旷野芦苇殇 提交于 2024-11-25 21:28 +08:00 . 优化设置功能
// 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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengzhu2007/texteditor.git
git@gitee.com:fengzhu2007/texteditor.git
fengzhu2007
texteditor
texteditor
main

搜索帮助