// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include "texteditor_global.h" #include "colorscheme.h" #include "textstyles.h" #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QFont; QT_END_NAMESPACE namespace Utils { class QtcSettings; } namespace TextEditor { class FormatDescription; /** * Font settings (default font and enumerated list of formats). */ class TEXTEDITOR_EXPORT FontSettings { public: using FormatDescriptions = std::vector; FontSettings(); void clear(); inline bool isEmpty() const { return m_scheme.isEmpty(); } void toSettings(Utils::QtcSettings *s) const; bool fromSettings(const FormatDescriptions &descriptions, const Utils::QtcSettings *s); QVector toTextCharFormats(const QVector &categories) const; QTextCharFormat toTextCharFormat(TextStyle category) const; QTextCharFormat toTextCharFormat(TextStyles textStyles) const; QString family() const; void setFamily(const QString &family); int fontSize() const; void setFontSize(int size); int fontZoom() const; void setFontZoom(int zoom); qreal lineSpacing() const; int relativeLineSpacing() const; void setRelativeLineSpacing(int relativeLineSpacing); QFont font() const; QFont::Weight fontNormalWeight() const; bool antialias() const; void setAntialias(bool antialias); Format &formatFor(TextStyle category); Format formatFor(TextStyle category) const; Utils::FilePath colorSchemeFileName() const; void setColorSchemeFileName(const Utils::FilePath &filePath); bool loadColorScheme(const Utils::FilePath &filePath, const FormatDescriptions &descriptions); bool saveColorScheme(const Utils::FilePath &filePath); const ColorScheme &colorScheme() const; void setColorScheme(const ColorScheme &scheme); bool equals(const FontSettings &f) const; static QString defaultFixedFontFamily(); static int defaultFontSize(); static Utils::FilePath defaultSchemeFileName(const QString &fileName = {}); friend bool operator==(const FontSettings &f1, const FontSettings &f2) { return f1.equals(f2); } friend bool operator!=(const FontSettings &f1, const FontSettings &f2) { return !f1.equals(f2); } private: void addMixinStyle(QTextCharFormat &textCharFormat, const MixinTextStyles &mixinStyles) const; void clearCaches(); private: QString m_family; Utils::FilePath m_schemeFileName; int m_fontSize; int m_fontZoom; int m_lineSpacing; bool m_antialias; ColorScheme m_scheme; mutable QHash m_formatCache; mutable QHash m_textCharFormatCache; }; } // namespace TextEditor