2022-08-19 15:59:36 +02: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
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include "texteditor_global.h"
|
|
|
|
|
|
2017-07-19 14:51:21 +02:00
|
|
|
#include "QMetaType"
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QSettings;
|
2017-07-21 14:31:21 +02:00
|
|
|
class QLabel;
|
2008-12-02 12:01:29 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace TextEditor {
|
|
|
|
|
|
2017-07-19 14:51:21 +02:00
|
|
|
enum class AnnotationAlignment
|
|
|
|
|
{
|
|
|
|
|
NextToContent,
|
|
|
|
|
NextToMargin,
|
2017-10-26 15:18:56 +02:00
|
|
|
RightSide,
|
|
|
|
|
BetweenLines
|
2017-07-19 14:51:21 +02:00
|
|
|
};
|
|
|
|
|
|
2010-08-13 12:53:36 +02:00
|
|
|
class TEXTEDITOR_EXPORT DisplaySettings
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-08-13 12:53:36 +02:00
|
|
|
public:
|
2017-05-22 08:13:52 +02:00
|
|
|
DisplaySettings() = default;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2022-07-06 11:04:29 +02:00
|
|
|
void toSettings(QSettings *s) const;
|
|
|
|
|
void fromSettings(QSettings *s);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2021-12-06 05:11:04 +01:00
|
|
|
friend bool operator==(const DisplaySettings &t1, const DisplaySettings &t2) { return t1.equals(t2); }
|
|
|
|
|
friend bool operator!=(const DisplaySettings &t1, const DisplaySettings &t2) { return !t1.equals(t2); }
|
|
|
|
|
|
2017-05-22 08:13:52 +02:00
|
|
|
bool m_displayLineNumbers = true;
|
|
|
|
|
bool m_textWrapping = false;
|
|
|
|
|
bool m_visualizeWhitespace = false;
|
2022-07-04 16:16:40 +02:00
|
|
|
bool m_visualizeIndent = true;
|
2017-05-22 08:13:52 +02:00
|
|
|
bool m_displayFoldingMarkers = true;
|
|
|
|
|
bool m_highlightCurrentLine = false;
|
|
|
|
|
bool m_highlightBlocks = false;
|
|
|
|
|
bool m_animateMatchingParentheses = true;
|
|
|
|
|
bool m_highlightMatchingParentheses = true;
|
|
|
|
|
bool m_markTextChanges = true ;
|
|
|
|
|
bool m_autoFoldFirstComment = true;
|
|
|
|
|
bool m_centerCursorOnScroll = false;
|
|
|
|
|
bool m_openLinksInNextSplit = false;
|
|
|
|
|
bool m_forceOpenLinksInNextSplit = false;
|
|
|
|
|
bool m_displayFileEncoding = false;
|
2022-06-10 13:26:54 +03:00
|
|
|
bool m_displayFileLineEnding = true;
|
2017-05-22 08:13:52 +02:00
|
|
|
bool m_scrollBarHighlights = true;
|
2017-05-23 14:34:22 +02:00
|
|
|
bool m_animateNavigationWithinFile = false;
|
|
|
|
|
int m_animateWithinFileTimeMax = 333; // read only setting
|
2017-06-20 08:28:10 +02:00
|
|
|
bool m_displayAnnotations = true;
|
2017-07-19 14:51:21 +02:00
|
|
|
AnnotationAlignment m_annotationAlignment = AnnotationAlignment::RightSide;
|
|
|
|
|
int m_minimalAnnotationContent = 15;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
bool equals(const DisplaySettings &ds) const;
|
2017-07-21 14:31:21 +02:00
|
|
|
|
|
|
|
|
static QLabel *createAnnotationSettingsLink();
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace TextEditor
|
2017-07-19 14:51:21 +02:00
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(TextEditor::AnnotationAlignment)
|