#include "vconfigmanager.h" #include #include #include #include #include #include #include #include #include #include "utils/vutils.h" #include "vstyleparser.h" const QString VConfigManager::orgName = QString("vnote"); const QString VConfigManager::appName = QString("vnote"); const QString VConfigManager::c_version = QString("1.8"); const QString VConfigManager::c_obsoleteDirConfigFile = QString(".vnote.json"); const QString VConfigManager::c_dirConfigFile = QString("_vnote.json"); const QString VConfigManager::defaultConfigFilePath = QString(":/resources/vnote.ini"); const QString VConfigManager::c_styleConfigFolder = QString("styles"); const QString VConfigManager::c_defaultCssFile = QString(":/resources/styles/default.css"); const QString VConfigManager::c_defaultMdhlFile = QString(":/resources/styles/default.mdhl"); const QString VConfigManager::c_solarizedDarkMdhlFile = QString(":/resources/styles/solarized-dark.mdhl"); const QString VConfigManager::c_solarizedLightMdhlFile = QString(":/resources/styles/solarized-light.mdhl"); const QString VConfigManager::c_warningTextStyle = QString("color: red; font: bold"); const QString VConfigManager::c_dataTextStyle = QString("font: bold"); const QString VConfigManager::c_dangerBtnStyle = QString("QPushButton {color: #fff; border-color: #d43f3a; background-color: #d9534f;}" "QPushButton::hover {color: #fff; border-color: #ac2925; background-color: #c9302c;}"); const QString VConfigManager::c_vnoteNotebookFolderName = QString("vnote_notebooks"); VConfigManager::VConfigManager(QObject *p_parent) : QObject(p_parent), userSettings(NULL), defaultSettings(NULL) { } void VConfigManager::migrateIniFile() { const QString originalFolder = "tamlok"; const QString newFolder = orgName; QString configFolder = getConfigFolder(); QDir dir(configFolder); dir.cdUp(); dir.rename(originalFolder, newFolder); userSettings->sync(); } void VConfigManager::initialize() { Q_ASSERT(!userSettings && !defaultSettings); userSettings = new QSettings(QSettings::IniFormat, QSettings::UserScope, orgName, appName, this); defaultSettings = new QSettings(defaultConfigFilePath, QSettings::IniFormat, this); migrateIniFile(); // Override the default css styles on start up. outputDefaultCssStyle(); outputDefaultEditorStyle(); m_defaultEditPalette = QTextEdit().palette(); m_editorStyle = getConfigFromSettings("global", "editor_style").toString(); welcomePagePath = getConfigFromSettings("global", "welcome_page_path").toString(); m_templateCss = getConfigFromSettings("global", "template_css").toString(); curNotebookIndex = getConfigFromSettings("global", "current_notebook").toInt(); markdownExtensions = hoedown_extensions(HOEDOWN_EXT_TABLES | HOEDOWN_EXT_FENCED_CODE | HOEDOWN_EXT_HIGHLIGHT | HOEDOWN_EXT_AUTOLINK | HOEDOWN_EXT_QUOTE | HOEDOWN_EXT_MATH | HOEDOWN_EXT_MATH_EXPLICIT); mdConverterType = (MarkdownConverterType)getConfigFromSettings("global", "markdown_converter").toInt(); tabStopWidth = getConfigFromSettings("global", "tab_stop_width").toInt(); isExpandTab = getConfigFromSettings("global", "is_expand_tab").toBool(); m_highlightCursorLine = getConfigFromSettings("global", "highlight_cursor_line").toBool(); m_highlightSelectedWord = getConfigFromSettings("global", "highlight_selected_word").toBool(); m_highlightSearchedWord = getConfigFromSettings("global", "highlight_searched_word").toBool(); m_autoIndent = getConfigFromSettings("global", "auto_indent").toBool(); m_autoList = getConfigFromSettings("global", "auto_list").toBool(); readPredefinedColorsFromSettings(); curBackgroundColor = getConfigFromSettings("global", "current_background_color").toString(); updateEditStyle(); curRenderBackgroundColor = getConfigFromSettings("global", "current_render_background_color").toString(); m_toolsDockChecked = getConfigFromSettings("session", "tools_dock_checked").toBool(); m_mainWindowGeometry = getConfigFromSettings("session", "main_window_geometry").toByteArray(); m_mainWindowState = getConfigFromSettings("session", "main_window_state").toByteArray(); m_mainSplitterState = getConfigFromSettings("session", "main_splitter_state").toByteArray(); m_findCaseSensitive = getConfigFromSettings("global", "find_case_sensitive").toBool(); m_findWholeWordOnly = getConfigFromSettings("global", "find_whole_word_only").toBool(); m_findRegularExpression = getConfigFromSettings("global", "find_regular_expression").toBool(); m_findIncrementalSearch = getConfigFromSettings("global", "find_incremental_search").toBool(); m_language = getConfigFromSettings("global", "language").toString(); m_enableMermaid = getConfigFromSettings("global", "enable_mermaid").toBool(); m_enableFlowchart = getConfigFromSettings("global", "enable_flowchart").toBool(); m_enableMathjax = getConfigFromSettings("global", "enable_mathjax").toBool(); m_webZoomFactor = getConfigFromSettings("global", "web_zoom_factor").toReal(); if (!isCustomWebZoomFactor()) { // Calculate the zoom factor based on DPI. m_webZoomFactor = VUtils::calculateScaleFactor(); qDebug() << "set WebZoomFactor to" << m_webZoomFactor; } m_enableCodeBlockHighlight = getConfigFromSettings("global", "enable_code_block_highlight").toBool(); m_enablePreviewImages = getConfigFromSettings("global", "enable_preview_images").toBool(); m_enablePreviewImageConstraint = getConfigFromSettings("global", "enable_preview_image_constraint").toBool(); m_enableImageConstraint = getConfigFromSettings("global", "enable_image_constraint").toBool(); m_enableImageCaption = getConfigFromSettings("global", "enable_image_caption").toBool(); m_imageFolder = getConfigFromSettings("global", "image_folder").toString(); m_imageFolderExt = getConfigFromSettings("global", "external_image_folder").toString(); m_enableTrailingSpaceHighlight = getConfigFromSettings("global", "enable_trailing_space_highlight").toBool(); m_enableVimMode = getConfigFromSettings("global", "enable_vim_mode").toBool(); m_enableSmartImInVimMode = getConfigFromSettings("global", "enable_smart_im_in_vim_mode").toBool(); m_editorLineNumber = getConfigFromSettings("global", "editor_line_number").toInt(); m_minimizeToSystemTray = getConfigFromSettings("global", "minimize_to_system_tray").toInt(); if (m_minimizeToSystemTray > 1 || m_minimizeToSystemTray < -1) { setMinimizeToSystemTray(0); } readShortcutsFromSettings(); initDocSuffixes(); m_markdownHighlightInterval = getConfigFromSettings("global", "markdown_highlight_interval").toInt(); m_lineDistanceHeight = getConfigFromSettings("global", "line_distance_height").toInt(); m_insertTitleFromNoteName = getConfigFromSettings("global", "insert_title_from_note_name").toBool(); int openMode = getConfigFromSettings("global", "note_open_mode").toInt(); if (openMode == 1) { m_noteOpenMode = OpenFileMode::Edit; } else { m_noteOpenMode = OpenFileMode::Read; } m_enableHeadingSequence = getConfigFromSettings("global", "enable_heading_sequence").toBool(); m_colorColumn = getConfigFromSettings("global", "color_column").toInt(); m_enableCodeBlockLineNumber = getConfigFromSettings("global", "enable_code_block_line_number").toBool(); m_toolBarIconSize = getConfigFromSettings("global", "tool_bar_icon_size").toInt(); } void VConfigManager::readPredefinedColorsFromSettings() { predefinedColors.clear(); int size = defaultSettings->beginReadArray("predefined_colors"); for (int i = 0; i < size; ++i) { defaultSettings->setArrayIndex(i); VColor color; color.name = defaultSettings->value("name").toString(); color.rgb = defaultSettings->value("rgb").toString(); predefinedColors.append(color); } defaultSettings->endArray(); qDebug() << "read" << predefinedColors.size() << "pre-defined colors from [predefined_colors] section"; } void VConfigManager::readNotebookFromSettings(QVector &p_notebooks, QObject *parent) { Q_ASSERT(p_notebooks.isEmpty()); int size = userSettings->beginReadArray("notebooks"); for (int i = 0; i < size; ++i) { userSettings->setArrayIndex(i); QString name = userSettings->value("name").toString(); QString path = userSettings->value("path").toString(); VNotebook *notebook = new VNotebook(name, path, parent); notebook->readConfig(); p_notebooks.append(notebook); } userSettings->endArray(); qDebug() << "read" << p_notebooks.size() << "notebook items from [notebooks] section"; } void VConfigManager::writeNotebookToSettings(const QVector &p_notebooks) { // Clear it first userSettings->beginGroup("notebooks"); userSettings->remove(""); userSettings->endGroup(); userSettings->beginWriteArray("notebooks"); for (int i = 0; i < p_notebooks.size(); ++i) { userSettings->setArrayIndex(i); const VNotebook ¬ebook = *p_notebooks[i]; userSettings->setValue("name", notebook.getName()); userSettings->setValue("path", notebook.getPath()); } userSettings->endArray(); qDebug() << "write" << p_notebooks.size() << "notebook items in [notebooks] section"; } QVariant VConfigManager::getConfigFromSettings(const QString §ion, const QString &key) const { QString fullKey = section + "/" + key; // First, look up the user-scoped config file QVariant value = userSettings->value(fullKey); if (!value.isNull()) { qDebug() << "user config:" << fullKey << value.toString(); return value; } // Second, look up the default config file return getDefaultConfig(section, key); } void VConfigManager::setConfigToSettings(const QString §ion, const QString &key, const QVariant &value) { // Set the user-scoped config file QString fullKey = section + "/" + key; userSettings->setValue(fullKey, value); qDebug() << "set user config:" << fullKey << value.toString(); } QVariant VConfigManager::getDefaultConfig(const QString &p_section, const QString &p_key) const { QString fullKey = p_section + "/" + p_key; QVariant value = defaultSettings->value(fullKey); qDebug() << "default config:" << fullKey << value.toString(); return value; } QVariant VConfigManager::resetDefaultConfig(const QString &p_section, const QString &p_key) { QVariant defaultValue = getDefaultConfig(p_section, p_key); setConfigToSettings(p_section, p_key, defaultValue); return defaultValue; } QString VConfigManager::fetchDirConfigFilePath(const QString &p_path) { QDir dir(p_path); QString fileName = c_dirConfigFile; if (dir.exists(c_obsoleteDirConfigFile)) { V_ASSERT(!dir.exists(c_dirConfigFile)); if (!dir.rename(c_obsoleteDirConfigFile, c_dirConfigFile)) { fileName = c_obsoleteDirConfigFile; } qDebug() << "rename old directory config file:" << fileName; } QString filePath = QDir::cleanPath(dir.filePath(fileName)); qDebug() << "use directory config file:" << filePath; return filePath; } QJsonObject VConfigManager::readDirectoryConfig(const QString &path) { QString configFile = fetchDirConfigFilePath(path); QFile config(configFile); if (!config.open(QIODevice::ReadOnly)) { qWarning() << "fail to read directory configuration file:" << configFile; return QJsonObject(); } QByteArray configData = config.readAll(); return QJsonDocument::fromJson(configData).object(); } bool VConfigManager::directoryConfigExist(const QString &path) { return QFileInfo::exists(fetchDirConfigFilePath(path)); } bool VConfigManager::writeDirectoryConfig(const QString &path, const QJsonObject &configJson) { QString configFile = fetchDirConfigFilePath(path); QFile config(configFile); if (!config.open(QIODevice::WriteOnly)) { qWarning() << "fail to open directory configuration file for write:" << configFile; return false; } QJsonDocument configDoc(configJson); config.write(configDoc.toJson()); return true; } bool VConfigManager::deleteDirectoryConfig(const QString &path) { QString configFile = fetchDirConfigFilePath(path); QFile config(configFile); if (!config.remove()) { qWarning() << "fail to delete directory configuration file:" << configFile; return false; } qDebug() << "delete config file:" << configFile; return true; } QString VConfigManager::getLogFilePath() { static QString logPath; if (logPath.isEmpty()) { QString location = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); V_ASSERT(!location.isEmpty()); QDir dir(location); dir.mkdir("VNote"); logPath = dir.filePath("VNote/vnote.log"); } return logPath; } void VConfigManager::updateMarkdownEditStyle() { static const QString defaultCurrentLineBackground = "#C5CAE9"; static const QString defaultVimNormalBg = "#BCBCBC"; static const QString defaultVimInsertBg = "#C5CAE9"; static const QString defaultVimVisualBg = "#90CAF9"; static const QString defaultVimReplaceBg = "#F8BBD0"; static const QString defaultTrailingSpaceBg = "#A8A8A8"; static const QString defaultSelectedWordBg = "#DFDF00"; static const QString defaultSearchedWordBg = "#81C784"; static const QString defaultSearchedWordCursorBg = "#4DB6AC"; static const QString defaultIncrementalSearchedWordBg = "#CE93D8"; static const QString defaultLineNumberBg = "#BDBDBD"; static const QString defaultLineNumberFg = "#424242"; static const QString defaultColorColumnBg = "#DD0000"; static const QString defaultColorColumnFg = "#FFFF00"; // Read style file .mdhl QString file(getEditorStyleUrl()); QString styleStr = VUtils::readFileFromDisk(file); if (styleStr.isEmpty()) { return; } mdEditPalette = baseEditPalette; mdEditFont = baseEditFont; VStyleParser parser; parser.parseMarkdownStyle(styleStr); QMap> styles; parser.fetchMarkdownEditorStyles(mdEditPalette, mdEditFont, styles); mdHighlightingStyles = parser.fetchMarkdownStyles(mdEditFont); m_codeBlockStyles = parser.fetchCodeBlockStyles(mdEditFont); m_editorCurrentLineBg = defaultCurrentLineBackground; m_editorVimInsertBg = defaultVimInsertBg; m_editorVimNormalBg = defaultVimNormalBg; m_editorVimVisualBg = defaultVimVisualBg; m_editorVimReplaceBg = defaultVimReplaceBg; auto editorCurrentLineIt = styles.find("editor-current-line"); if (editorCurrentLineIt != styles.end()) { auto backgroundIt = editorCurrentLineIt->find("background"); if (backgroundIt != editorCurrentLineIt->end()) { // Do not need to add "#" here, since this is a built-in attribute. m_editorCurrentLineBg = *backgroundIt; } auto vimBgIt = editorCurrentLineIt->find("vim-insert-background"); if (vimBgIt != editorCurrentLineIt->end()) { m_editorVimInsertBg = "#" + *vimBgIt; } vimBgIt = editorCurrentLineIt->find("vim-normal-background"); if (vimBgIt != editorCurrentLineIt->end()) { m_editorVimNormalBg = "#" + *vimBgIt; } vimBgIt = editorCurrentLineIt->find("vim-visual-background"); if (vimBgIt != editorCurrentLineIt->end()) { m_editorVimVisualBg = "#" + *vimBgIt; } vimBgIt = editorCurrentLineIt->find("vim-replace-background"); if (vimBgIt != editorCurrentLineIt->end()) { m_editorVimReplaceBg = "#" + *vimBgIt; } } m_editorTrailingSpaceBg = defaultTrailingSpaceBg; m_editorSelectedWordBg = defaultSelectedWordBg; m_editorSearchedWordBg = defaultSearchedWordBg; m_editorSearchedWordCursorBg = defaultSearchedWordCursorBg; m_editorIncrementalSearchedWordBg = defaultIncrementalSearchedWordBg; m_editorLineNumberBg = defaultLineNumberBg; m_editorLineNumberFg = defaultLineNumberFg; m_editorColorColumnBg = defaultColorColumnBg; m_editorColorColumnFg = defaultColorColumnFg; auto editorIt = styles.find("editor"); if (editorIt != styles.end()) { auto it = editorIt->find("trailing-space"); if (it != editorIt->end()) { m_editorTrailingSpaceBg = "#" + *it; } it = editorIt->find("line-number-background"); if (it != editorIt->end()) { m_editorLineNumberBg = "#" + *it; } it = editorIt->find("line-number-foreground"); if (it != editorIt->end()) { m_editorLineNumberFg = "#" + *it; } it = editorIt->find("selected-word-background"); if (it != editorIt->end()) { m_editorSelectedWordBg = "#" + *it; } it = editorIt->find("searched-word-background"); if (it != editorIt->end()) { m_editorSearchedWordBg = "#" + *it; } it = editorIt->find("searched-word-cursor-background"); if (it != editorIt->end()) { m_editorSearchedWordCursorBg = "#" + *it; } it = editorIt->find("incremental-searched-word-background"); if (it != editorIt->end()) { m_editorIncrementalSearchedWordBg = "#" + *it; } it = editorIt->find("color-column-background"); if (it != editorIt->end()) { m_editorColorColumnBg = "#" + *it; } it = editorIt->find("color-column-foreground"); if (it != editorIt->end()) { m_editorColorColumnFg = "#" + *it; } } } void VConfigManager::updateEditStyle() { // Reset font and palette. baseEditFont = mdEditFont = m_defaultEditFont; baseEditPalette = mdEditPalette = m_defaultEditPalette; static const QColor defaultColor = m_defaultEditPalette.color(QPalette::Base); QColor newColor = defaultColor; bool force = false; if (curBackgroundColor != "System") { for (int i = 0; i < predefinedColors.size(); ++i) { if (predefinedColors[i].name == curBackgroundColor) { QString rgb = predefinedColors[i].rgb; if (!rgb.isEmpty()) { newColor = QColor(VUtils::QRgbFromString(rgb)); force = true; } break; } } } baseEditPalette.setColor(QPalette::Base, newColor); // Update markdown editor palette updateMarkdownEditStyle(); // Base editor will use the same font size as the markdown editor by now. if (mdEditFont.pointSize() > -1) { baseEditFont.setPointSize(mdEditFont.pointSize()); } if (force) { mdEditPalette.setColor(QPalette::Base, newColor); } } void VConfigManager::setWebZoomFactor(qreal p_factor) { if (isCustomWebZoomFactor()) { if (VUtils::realEqual(m_webZoomFactor, p_factor)) { return; } else if (VUtils::realEqual(p_factor, -1)) { m_webZoomFactor = VUtils::calculateScaleFactor(); setConfigToSettings("global", "web_zoom_factor", -1); return; } } else { if (VUtils::realEqual(p_factor, -1)) { return; } } m_webZoomFactor = p_factor; setConfigToSettings("global", "web_zoom_factor", m_webZoomFactor); } QString VConfigManager::getConfigFolder() const { V_ASSERT(userSettings); QString iniPath = userSettings->fileName(); return VUtils::basePathFromPath(iniPath); } QString VConfigManager::getConfigFilePath() const { V_ASSERT(userSettings); return userSettings->fileName(); } QString VConfigManager::getStyleConfigFolder() const { return getConfigFolder() + QDir::separator() + c_styleConfigFolder; } QVector VConfigManager::getCssStyles() const { QVector res; QDir dir(getStyleConfigFolder()); if (!dir.exists()) { // Output pre-defined css styles to this folder. outputDefaultCssStyle(); } // Get all the .css files in the folder. dir.setFilter(QDir::Files | QDir::NoSymLinks); dir.setNameFilters(QStringList("*.css")); QStringList files = dir.entryList(); res.reserve(files.size()); for (auto const &item : files) { res.push_back(item.left(item.size() - 4)); } return res; } QVector VConfigManager::getEditorStyles() const { QVector res; QDir dir(getStyleConfigFolder()); if (!dir.exists()) { // Output pre-defined mdhl styles to this folder. outputDefaultEditorStyle(); } // Get all the .mdhl files in the folder. dir.setFilter(QDir::Files | QDir::NoSymLinks); dir.setNameFilters(QStringList("*.mdhl")); QStringList files = dir.entryList(); res.reserve(files.size()); for (auto const &item : files) { res.push_back(item.left(item.size() - 5)); } return res; } bool VConfigManager::outputDefaultCssStyle() const { // Make sure the styles folder exists. QDir dir(getConfigFolder()); if (!dir.exists(c_styleConfigFolder)) { if (!dir.mkdir(c_styleConfigFolder)) { return false; } } QString srcPath = c_defaultCssFile; QString destPath = getStyleConfigFolder() + QDir::separator() + QFileInfo(srcPath).fileName(); if (QFileInfo::exists(destPath)) { QString bakPath = destPath + ".bak"; // We only keep one bak file. if (!QFileInfo::exists(bakPath)) { QFile::rename(destPath, bakPath); } else { // Just delete the default style. QFile file(destPath); file.setPermissions(QFile::ReadUser | QFile::WriteUser); file.remove(); } } return VUtils::copyFile(srcPath, destPath, false); } bool VConfigManager::outputDefaultEditorStyle() const { // Make sure the styles folder exists. QDir dir(getConfigFolder()); if (!dir.exists(c_styleConfigFolder)) { if (!dir.mkdir(c_styleConfigFolder)) { return false; } } // Always override the deafult style. QString srcPath = c_defaultMdhlFile; QString destPath = getStyleConfigFolder() + QDir::separator() + QFileInfo(srcPath).fileName(); if (QFileInfo::exists(destPath)) { QString bakPath = destPath + ".bak"; // We only keep one bak file. if (!QFileInfo::exists(bakPath)) { QFile::rename(destPath, bakPath); } else { // Just delete the default style. QFile file(destPath); file.setPermissions(QFile::ReadUser | QFile::WriteUser); file.remove(); } } if (!VUtils::copyFile(srcPath, destPath, false)) { return false; } srcPath = c_solarizedDarkMdhlFile; destPath = getStyleConfigFolder() + QDir::separator() + QFileInfo(srcPath).fileName(); if (!QFileInfo::exists(destPath)) { if (!VUtils::copyFile(srcPath, destPath, false)) { return false; } } srcPath = c_solarizedLightMdhlFile; destPath = getStyleConfigFolder() + QDir::separator() + QFileInfo(srcPath).fileName(); if (!QFileInfo::exists(destPath)) { if (!VUtils::copyFile(srcPath, destPath, false)) { return false; } } return true; } // The URL will be used in the Web page. QString VConfigManager::getTemplateCssUrl() { QString cssPath = getStyleConfigFolder() + QDir::separator() + m_templateCss + ".css"; QUrl cssUrl = QUrl::fromLocalFile(cssPath); cssPath = cssUrl.toString(); if (!QFile::exists(cssUrl.toLocalFile())) { // Specified css not exists. if (m_templateCss == "default") { bool ret = outputDefaultCssStyle(); if (!ret) { // Use embedded file. cssPath = "qrc" + c_defaultCssFile; } } else { setTemplateCss("default"); return getTemplateCssUrl(); } } qDebug() << "use template css:" << cssPath; return cssPath; } QString VConfigManager::getEditorStyleUrl() { QString mdhlPath = getStyleConfigFolder() + QDir::separator() + m_editorStyle + ".mdhl"; if (!QFile::exists(mdhlPath)) { // Specified mdhl file not exists. if (m_editorStyle == "default") { bool ret = outputDefaultEditorStyle(); if (!ret) { // Use embedded file. mdhlPath = c_defaultMdhlFile; } } else { setEditorStyle("default"); return getEditorStyleUrl(); } } qDebug() << "use editor style:" << mdhlPath; return mdhlPath; } const QString &VConfigManager::getTemplateCss() const { return m_templateCss; } void VConfigManager::setTemplateCss(const QString &p_css) { if (m_templateCss == p_css) { return; } m_templateCss = p_css; setConfigToSettings("global", "template_css", m_templateCss); } const QString &VConfigManager::getEditorStyle() const { return m_editorStyle; } void VConfigManager::setEditorStyle(const QString &p_style) { if (m_editorStyle == p_style) { return; } m_editorStyle = p_style; setConfigToSettings("global", "editor_style", m_editorStyle); updateEditStyle(); } QString VConfigManager::getVnoteNotebookFolderPath() { return QDir::home().filePath(c_vnoteNotebookFolderName); } bool VConfigManager::isValidKeySequence(const QString &p_seq) { QString lower = p_seq.toLower(); return lower != "ctrl+q" && lower != "ctrl+e"; } void VConfigManager::readShortcutsFromSettings() { m_shortcuts.clear(); int size = defaultSettings->beginReadArray("shortcuts"); for (int i = 0; i < size; ++i) { defaultSettings->setArrayIndex(i); QString op = defaultSettings->value("operation").toString(); QString seq = defaultSettings->value("keysequence").toString().trimmed(); if (isValidKeySequence(seq)) { qDebug() << "read shortcut config" << op << seq; m_shortcuts[op] = seq; } } defaultSettings->endArray(); // Whether we need to update user settings. bool needUpdate = false; size = userSettings->beginReadArray("shortcuts"); QSet matched; matched.reserve(m_shortcuts.size()); for (int i = 0; i < size; ++i) { userSettings->setArrayIndex(i); QString op = userSettings->value("operation").toString(); QString seq = userSettings->value("keysequence").toString().trimmed(); if (isValidKeySequence(seq)) { qDebug() << "read user shortcut config" << op << seq; auto it = m_shortcuts.find(op); if (it == m_shortcuts.end()) { // Could not find this in default settings. needUpdate = true; } else { matched.insert(op); *it = seq; } } } userSettings->endArray(); if (needUpdate || matched.size() < m_shortcuts.size()) { // Write the combined config to user settings. writeShortcutsToSettings(); } } void VConfigManager::writeShortcutsToSettings() { // Clear it first userSettings->beginGroup("shortcuts"); userSettings->remove(""); userSettings->endGroup(); userSettings->beginWriteArray("shortcuts"); int idx = 0; for (auto it = m_shortcuts.begin(); it != m_shortcuts.end(); ++it, ++idx) { userSettings->setArrayIndex(idx); userSettings->setValue("operation", it.key()); userSettings->setValue("keysequence", it.value()); } userSettings->endArray(); } QString VConfigManager::getShortcutKeySequence(const QString &p_operation) const { auto it = m_shortcuts.find(p_operation); if (it == m_shortcuts.end()) { return QString(); } return *it; } void VConfigManager::initDocSuffixes() { m_docSuffixes.clear(); QString mdSuffix = getConfigFromSettings("global", "markdown_suffix").toString(); if (mdSuffix.isEmpty()) { mdSuffix = getDefaultConfig("global", "markdown_suffix").toString(); } Q_ASSERT(!mdSuffix.isEmpty()); QList md = mdSuffix.toLower().split(':', QString::SkipEmptyParts); md.removeDuplicates(); m_docSuffixes[(int)DocType::Markdown] = md; QList list; list << "ls" << "list"; m_docSuffixes[(int)DocType::List] = list; QList container; container << "co" << "container" << "con"; m_docSuffixes[(int)DocType::Container] = container; qDebug() << "doc suffixes" << m_docSuffixes; }