/** * Apply the settings that are changeable in the preferences. This is also * called in the event handler from the preferences. */ void ScintillaEditor::applySettings() { SettingsConverter conv; auto s = Settings::Settings::inst(); qsci->setIndentationWidth(s->get(Settings::Settings::indentationWidth).toDouble()); qsci->setTabWidth(s->get(Settings::Settings::tabWidth).toDouble()); qsci->setWrapMode(conv.toWrapMode(s->get(Settings::Settings::lineWrap))); qsci->setWrapIndentMode(conv.toLineWrapIndentationStyle(s->get(Settings::Settings::lineWrapIndentationStyle))); qsci->setWrapVisualFlags(conv.toLineWrapVisualization(s->get(Settings::Settings::lineWrapVisualizationEnd)), conv.toLineWrapVisualization(s->get(Settings::Settings::lineWrapVisualizationBegin)), s->get(Settings::Settings::lineWrapIndentation).toDouble()); qsci->setWhitespaceVisibility(conv.toShowWhitespaces(s->get(Settings::Settings::showWhitespace))); qsci->setWhitespaceSize(s->get(Settings::Settings::showWhitespaceSize).toDouble()); qsci->setAutoIndent(s->get(Settings::Settings::autoIndent).toBool()); qsci->setBackspaceUnindents(s->get(Settings::Settings::backspaceUnindents).toBool()); auto indentStyle = s->get(Settings::Settings::indentStyle).toString(); qsci->setIndentationsUseTabs(indentStyle == "Tabs"); auto tabKeyFunction = s->get(Settings::Settings::tabKeyFunction).toString(); qsci->setTabIndents(tabKeyFunction == "Indent"); qsci->setBraceMatching(s->get(Settings::Settings::enableBraceMatching).toBool() ? QsciScintilla::SloppyBraceMatch : QsciScintilla::NoBraceMatch); qsci->setCaretLineVisible(s->get(Settings::Settings::highlightCurrentLine).toBool()); auto value = s->get(Settings::Settings::enableLineNumbers).toBool(); qsci->setMarginLineNumbers(1,value); if (!value) qsci->setMarginWidth(1,20); else qsci->setMarginWidth(1,QString(trunc(log10(qsci->lines())+4), '0')); }
/** * Apply the settings that are changeable in the preferences. This is also * called in the event handler from the preferences. */ void ScintillaEditor::applySettings() { SettingsConverter conv; Settings::Settings *s = Settings::Settings::inst(); qsci->setIndentationWidth(s->get(Settings::Settings::indentationWidth).toDouble()); qsci->setTabWidth(s->get(Settings::Settings::tabWidth).toDouble()); qsci->setWrapMode(conv.toWrapMode(s->get(Settings::Settings::lineWrap))); qsci->setWrapIndentMode(conv.toLineWrapIndentationStyle(s->get(Settings::Settings::lineWrapIndentationStyle))); qsci->setWrapVisualFlags(conv.toLineWrapVisualization(s->get(Settings::Settings::lineWrapVisualizationEnd)), conv.toLineWrapVisualization(s->get(Settings::Settings::lineWrapVisualizationBegin)), s->get(Settings::Settings::lineWrapIndentation).toDouble()); qsci->setWhitespaceVisibility(conv.toShowWhitespaces(s->get(Settings::Settings::showWhitespace))); qsci->setWhitespaceSize(s->get(Settings::Settings::showWhitespaceSize).toDouble()); qsci->setAutoIndent(s->get(Settings::Settings::autoIndent).toBool()); std::string indentStyle = s->get(Settings::Settings::indentStyle).toString(); qsci->setIndentationsUseTabs(indentStyle == "Tabs"); std::string tabKeyFunction = s->get(Settings::Settings::tabKeyFunction).toString(); qsci->setTabIndents(tabKeyFunction == "Indent"); qsci->setBraceMatching(s->get(Settings::Settings::enableBraceMatching).toBool() ? QsciScintilla::SloppyBraceMatch : QsciScintilla::NoBraceMatch); qsci->setCaretLineVisible(s->get(Settings::Settings::highlightCurrentLine).toBool()); }