/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #include "displaysettingspage.h" #include "displaysettings.h" #include "marginsettings.h" #include "texteditorconstants.h" #include "texteditorsettings.h" #include #include #include #include #include #include #include namespace TextEditor { class DisplaySettingsPagePrivate { public: DisplaySettingsPagePrivate(); DisplaySettings m_displaySettings; MarginSettings m_marginSettings; QString m_settingsPrefix; }; DisplaySettingsPagePrivate::DisplaySettingsPagePrivate() { m_settingsPrefix = QLatin1String("text"); m_displaySettings.fromSettings(m_settingsPrefix, Core::ICore::settings()); m_marginSettings.fromSettings(m_settingsPrefix, Core::ICore::settings()); } class DisplaySettingsWidget final : public Core::IOptionsPageWidget { Q_DECLARE_TR_FUNCTIONS(TextEditor::DisplaySettingsPage) public: DisplaySettingsWidget(DisplaySettingsPagePrivate *data) : m_data(data) { resize(452, 458); enableTextWrapping = new QCheckBox(tr("Enable text &wrapping")); showWrapColumn = new QCheckBox(tr("Display right &margin at column:")); wrapColumn = new QSpinBox; wrapColumn->setMaximum(999); connect(showWrapColumn, &QAbstractButton::toggled, wrapColumn, &QWidget::setEnabled); useIndenter = new QCheckBox(tr("Use context-specific margin")); useIndenter->setToolTip(tr("If available, use a different margin. " "For example, the ColumnLimit from the ClangFormat plugin.")); animateMatchingParentheses = new QCheckBox(tr("&Animate matching parentheses")); scrollBarHighlights = new QCheckBox(tr("Highlight search results on the scrollbar")); displayLineNumbers = new QCheckBox(tr("Display line &numbers")); animateNavigationWithinFile = new QCheckBox(tr("Animate navigation within file")); highlightCurrentLine = new QCheckBox(tr("Highlight current &line")); highlightBlocks = new QCheckBox(tr("Highlight &blocks")); markTextChanges = new QCheckBox(tr("Mark &text changes")); autoFoldFirstComment = new QCheckBox(tr("Auto-fold first &comment")); displayFoldingMarkers = new QCheckBox(tr("Display &folding markers")); centerOnScroll = new QCheckBox(tr("Center &cursor on scroll")); visualizeIndent = new QCheckBox(tr("Visualize indent")); displayFileLineEnding = new QCheckBox(tr("Display file line ending")); displayFileEncoding = new QCheckBox(tr("Display file encoding")); openLinksInNextSplit = new QCheckBox(tr("Always open links in another split")); highlightMatchingParentheses = new QCheckBox(tr("&Highlight matching parentheses")); visualizeWhitespace = new QCheckBox(tr("&Visualize whitespace")); visualizeWhitespace->setToolTip(tr("Shows tabs and spaces.")); leftAligned = new QRadioButton(tr("Next to editor content")); atMargin = new QRadioButton(tr("Next to right margin")); rightAligned = new QRadioButton(tr("Aligned at right side")); rightAligned->setChecked(true); betweenLines = new QRadioButton(tr("Between lines")); displayAnnotations = new QGroupBox(tr("Line annotations")), displayAnnotations->setCheckable(true); using namespace Utils::Layouting; Column { leftAligned, atMargin, rightAligned, betweenLines, }.attachTo(displayAnnotations); Column { Group { title(tr("Text Wrapping")), Column { enableTextWrapping, Row { showWrapColumn, wrapColumn, useIndenter, st } } }, Group { title(tr("Display")), Row { Column { displayLineNumbers, displayFoldingMarkers, markTextChanges, visualizeWhitespace, centerOnScroll, autoFoldFirstComment, scrollBarHighlights, animateNavigationWithinFile, }, Column { highlightCurrentLine, highlightBlocks, animateMatchingParentheses, visualizeIndent, highlightMatchingParentheses, openLinksInNextSplit, displayFileEncoding, displayFileLineEnding, st } } }, displayAnnotations, st }.attachTo(this); settingsToUI(); } void apply() final; void settingsFromUI(DisplaySettings &displaySettings, MarginSettings &marginSettings) const; void settingsToUI(); void setDisplaySettings(const DisplaySettings &, const MarginSettings &newMarginSettings); DisplaySettingsPagePrivate *m_data = nullptr; QCheckBox *enableTextWrapping; QCheckBox *showWrapColumn; QSpinBox *wrapColumn; QCheckBox *useIndenter; QCheckBox *animateMatchingParentheses; QCheckBox *scrollBarHighlights; QCheckBox *displayLineNumbers; QCheckBox *animateNavigationWithinFile; QCheckBox *highlightCurrentLine; QCheckBox *highlightBlocks; QCheckBox *markTextChanges; QCheckBox *autoFoldFirstComment; QCheckBox *displayFoldingMarkers; QCheckBox *centerOnScroll; QCheckBox *visualizeIndent; QCheckBox *displayFileLineEnding; QCheckBox *displayFileEncoding; QCheckBox *openLinksInNextSplit; QCheckBox *highlightMatchingParentheses; QCheckBox *visualizeWhitespace; QGroupBox *displayAnnotations; QRadioButton *leftAligned; QRadioButton *atMargin; QRadioButton *rightAligned; QRadioButton *betweenLines; }; void DisplaySettingsWidget::apply() { DisplaySettings newDisplaySettings; MarginSettings newMarginSettings; settingsFromUI(newDisplaySettings, newMarginSettings); setDisplaySettings(newDisplaySettings, newMarginSettings); } void DisplaySettingsWidget::settingsFromUI(DisplaySettings &displaySettings, MarginSettings &marginSettings) const { displaySettings.m_displayLineNumbers = displayLineNumbers->isChecked(); displaySettings.m_textWrapping = enableTextWrapping->isChecked(); marginSettings.m_showMargin = showWrapColumn->isChecked(); marginSettings.m_useIndenter = useIndenter->isChecked(); marginSettings.m_marginColumn = wrapColumn->value(); displaySettings.m_visualizeWhitespace = visualizeWhitespace->isChecked(); displaySettings.m_visualizeIndent = visualizeIndent->isChecked(); displaySettings.m_displayFoldingMarkers = displayFoldingMarkers->isChecked(); displaySettings.m_highlightCurrentLine = highlightCurrentLine->isChecked(); displaySettings.m_highlightBlocks = highlightBlocks->isChecked(); displaySettings.m_animateMatchingParentheses = animateMatchingParentheses->isChecked(); displaySettings.m_highlightMatchingParentheses = highlightMatchingParentheses->isChecked(); displaySettings.m_markTextChanges = markTextChanges->isChecked(); displaySettings.m_autoFoldFirstComment = autoFoldFirstComment->isChecked(); displaySettings.m_centerCursorOnScroll = centerOnScroll->isChecked(); displaySettings.m_openLinksInNextSplit = openLinksInNextSplit->isChecked(); displaySettings.m_displayFileEncoding = displayFileEncoding->isChecked(); displaySettings.m_displayFileLineEnding = displayFileLineEnding->isChecked(); displaySettings.m_scrollBarHighlights = scrollBarHighlights->isChecked(); displaySettings.m_animateNavigationWithinFile = animateNavigationWithinFile->isChecked(); displaySettings.m_displayAnnotations = displayAnnotations->isChecked(); if (leftAligned->isChecked()) displaySettings.m_annotationAlignment = AnnotationAlignment::NextToContent; else if (atMargin->isChecked()) displaySettings.m_annotationAlignment = AnnotationAlignment::NextToMargin; else if (rightAligned->isChecked()) displaySettings.m_annotationAlignment = AnnotationAlignment::RightSide; else if (betweenLines->isChecked()) displaySettings.m_annotationAlignment = AnnotationAlignment::BetweenLines; } void DisplaySettingsWidget::settingsToUI() { const DisplaySettings &displaySettings = m_data->m_displaySettings; const MarginSettings &marginSettings = m_data->m_marginSettings; displayLineNumbers->setChecked(displaySettings.m_displayLineNumbers); enableTextWrapping->setChecked(displaySettings.m_textWrapping); showWrapColumn->setChecked(marginSettings.m_showMargin); useIndenter->setChecked(marginSettings.m_useIndenter); wrapColumn->setValue(marginSettings.m_marginColumn); visualizeWhitespace->setChecked(displaySettings.m_visualizeWhitespace); visualizeIndent->setChecked(displaySettings.m_visualizeIndent); displayFoldingMarkers->setChecked(displaySettings.m_displayFoldingMarkers); highlightCurrentLine->setChecked(displaySettings.m_highlightCurrentLine); highlightBlocks->setChecked(displaySettings.m_highlightBlocks); animateMatchingParentheses->setChecked(displaySettings.m_animateMatchingParentheses); highlightMatchingParentheses->setChecked(displaySettings.m_highlightMatchingParentheses); markTextChanges->setChecked(displaySettings.m_markTextChanges); autoFoldFirstComment->setChecked(displaySettings.m_autoFoldFirstComment); centerOnScroll->setChecked(displaySettings.m_centerCursorOnScroll); openLinksInNextSplit->setChecked(displaySettings.m_openLinksInNextSplit); displayFileEncoding->setChecked(displaySettings.m_displayFileEncoding); displayFileLineEnding->setChecked(displaySettings.m_displayFileLineEnding); scrollBarHighlights->setChecked(displaySettings.m_scrollBarHighlights); animateNavigationWithinFile->setChecked(displaySettings.m_animateNavigationWithinFile); displayAnnotations->setChecked(displaySettings.m_displayAnnotations); switch (displaySettings.m_annotationAlignment) { case AnnotationAlignment::NextToContent: leftAligned->setChecked(true); break; case AnnotationAlignment::NextToMargin: atMargin->setChecked(true); break; case AnnotationAlignment::RightSide: rightAligned->setChecked(true); break; case AnnotationAlignment::BetweenLines: betweenLines->setChecked(true); break; } } const DisplaySettings &DisplaySettingsPage::displaySettings() const { return d->m_displaySettings; } const MarginSettings &DisplaySettingsPage::marginSettings() const { return d->m_marginSettings; } void DisplaySettingsWidget::setDisplaySettings(const DisplaySettings &newDisplaySettings, const MarginSettings &newMarginSettings) { if (newDisplaySettings != m_data->m_displaySettings) { m_data->m_displaySettings = newDisplaySettings; m_data->m_displaySettings.toSettings(m_data->m_settingsPrefix, Core::ICore::settings()); emit TextEditorSettings::instance()->displaySettingsChanged(newDisplaySettings); } if (newMarginSettings != m_data->m_marginSettings) { m_data->m_marginSettings = newMarginSettings; m_data->m_marginSettings.toSettings(m_data->m_settingsPrefix, Core::ICore::settings()); emit TextEditorSettings::instance()->marginSettingsChanged(newMarginSettings); } } DisplaySettingsPage::DisplaySettingsPage() : d(new DisplaySettingsPagePrivate) { setId(Constants::TEXT_EDITOR_DISPLAY_SETTINGS); setDisplayName(DisplaySettingsWidget::tr("Display")); setCategory(TextEditor::Constants::TEXT_EDITOR_SETTINGS_CATEGORY); setDisplayCategory(QCoreApplication::translate("TextEditor", "Text Editor")); setCategoryIconPath(TextEditor::Constants::TEXT_EDITOR_SETTINGS_CATEGORY_ICON_PATH); setWidgetCreator([this] { return new DisplaySettingsWidget(d); }); } DisplaySettingsPage::~DisplaySettingsPage() { delete d; } } // TextEditor