Files
qt-creator/src/plugins/texteditor/displaysettings.h

67 lines
1.9 KiB
C
Raw Normal View History

// 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
#pragma once
2008-12-02 12:01:29 +01:00
#include "texteditor_global.h"
#include "QMetaType"
2008-12-02 12:01:29 +01:00
QT_BEGIN_NAMESPACE
class QSettings;
class QLabel;
2008-12-02 12:01:29 +01:00
QT_END_NAMESPACE
namespace TextEditor {
enum class AnnotationAlignment
{
NextToContent,
NextToMargin,
RightSide,
BetweenLines
};
class TEXTEDITOR_EXPORT DisplaySettings
2008-12-02 12:01:29 +01:00
{
public:
DisplaySettings() = default;
2008-12-02 12:01:29 +01:00
void toSettings(QSettings *s) const;
void fromSettings(QSettings *s);
2008-12-02 12:01:29 +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); }
bool m_displayLineNumbers = true;
bool m_textWrapping = false;
bool m_visualizeWhitespace = false;
bool m_visualizeIndent = true;
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;
bool m_displayFileLineEnding = true;
bool m_scrollBarHighlights = true;
bool m_animateNavigationWithinFile = false;
int m_animateWithinFileTimeMax = 333; // read only setting
bool m_displayAnnotations = true;
AnnotationAlignment m_annotationAlignment = AnnotationAlignment::RightSide;
int m_minimalAnnotationContent = 15;
2008-12-02 12:01:29 +01:00
bool equals(const DisplaySettings &ds) const;
static QLabel *createAnnotationSettingsLink();
2008-12-02 12:01:29 +01:00
};
} // namespace TextEditor
Q_DECLARE_METATYPE(TextEditor::AnnotationAlignment)