KSyntaxHighlighting::Format Class

class KSyntaxHighlighting::Format

Describes the format to be used for a specific text fragment. The actual format used for displaying is merged from the format information in the syntax definition file, and a theme. More...

Header: #include <Format>
CMake: find_package(KF6 REQUIRED COMPONENTS KSyntaxHighlighting)
target_link_libraries(mytarget PRIVATE KF6::KSyntaxHighlighting)
Since: 5.28

Public Functions

Format()
Format(const KSyntaxHighlighting::Format &other)
QColor backgroundColor(const KSyntaxHighlighting::Theme &theme) const
bool hasBackgroundColor(const KSyntaxHighlighting::Theme &theme) const
(since 5.62) bool hasBackgroundColorOverride() const
(since 5.62) bool hasBoldOverride() const
(since 5.62) bool hasItalicOverride() const
(since 5.62) bool hasSelectedBackgroundColorOverride() const
(since 5.62) bool hasSelectedTextColorOverride() const
(since 5.62) bool hasStrikeThroughOverride() const
bool hasTextColor(const KSyntaxHighlighting::Theme &theme) const
(since 5.62) bool hasTextColorOverride() const
(since 5.62) bool hasUnderlineOverride() const
int id() const
bool isBold(const KSyntaxHighlighting::Theme &theme) const
bool isDefaultTextStyle(const KSyntaxHighlighting::Theme &theme) const
bool isItalic(const KSyntaxHighlighting::Theme &theme) const
bool isStrikeThrough(const KSyntaxHighlighting::Theme &theme) const
bool isUnderline(const KSyntaxHighlighting::Theme &theme) const
bool isValid() const
QString name() const
QColor selectedBackgroundColor(const KSyntaxHighlighting::Theme &theme) const
QColor selectedTextColor(const KSyntaxHighlighting::Theme &theme) const
bool spellCheck() const
QColor textColor(const KSyntaxHighlighting::Theme &theme) const
(since 5.49) KSyntaxHighlighting::Theme::TextStyle textStyle() const

Detailed Description

See also Theme.

Member Function Documentation

Format::Format()

Creates an empty/invalid format.

Format::Format(const KSyntaxHighlighting::Format &other)

QColor Format::backgroundColor(const KSyntaxHighlighting::Theme &theme) const

Returns the background color of the combination of this format and the given theme.

bool Format::hasBackgroundColor(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the theme theme change the background color compared to the default format.

[since 5.62] bool Format::hasBackgroundColorOverride() const

Returns true if the syntax definition file sets a value for the background color attribute and, therefore, overrides the theme and the default formatting style. If the return is true, this value is obtained by backgroundColor().

This function was introduced in 5.62.

See also backgroundColor() and hasBackgroundColor().

[since 5.62] bool Format::hasBoldOverride() const

Returns true if the syntax definition file sets a value for the bold text attribute and, therefore, overrides the theme and the default formatting style. If the return is true, this value is obtained by isBold().

This function was introduced in 5.62.

See also isBold().

[since 5.62] bool Format::hasItalicOverride() const

Returns true if the syntax definition file sets a value for the italic text attribute and, therefore, overrides the theme and the default formatting style. If the return is true, this value is obtained by isItalic().

This function was introduced in 5.62.

See also isItalic().

[since 5.62] bool Format::hasSelectedBackgroundColorOverride() const

Returns true if the syntax definition file specifies a value for the selected background color attribute. If the return is true, this value is obtained by selectedBackgroundColor().

This function was introduced in 5.62.

See also selectedBackgroundColor().

[since 5.62] bool Format::hasSelectedTextColorOverride() const

Returns true if the syntax definition file specifies a value for the selected text color attribute. If the return is true, this value is obtained by selectedTextColor().

This function was introduced in 5.62.

See also selectedTextColor().

[since 5.62] bool Format::hasStrikeThroughOverride() const

Returns true if the syntax definition file specifies a value for the struck through text attribute. If the return is true, this value is obtained by isStrikeThrough().

This function was introduced in 5.62.

See also isStrikeThrough().

bool Format::hasTextColor(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the theme theme change the foreground color compared to the default format.

[since 5.62] bool Format::hasTextColorOverride() const

Returns true if the syntax definition file sets a value for the foreground text color attribute and, therefore, overrides the theme and the default formatting style. If the return is true, this value is obtained by textColor().

This function was introduced in 5.62.

See also textColor() and hasTextColor().

[since 5.62] bool Format::hasUnderlineOverride() const

Returns true if the syntax definition file sets a value for the underlined text attribute and, therefore, overrides the theme and the default formatting style. If the return is true, this value is obtained by isUnderline().

This function was introduced in 5.62.

See also isUnderline().

int Format::id() const

Returns a unique identifier of this format.

This is useful for efficient storing of formats in a text line. The identifier is unique per Repository instance, but will change when the repository is reloaded (which also invalidatess the corresponding Definition anyway).

bool Format::isBold(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the given theme results in bold text formatting.

bool Format::isDefaultTextStyle(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the theme theme do not change the default text format in any way.

This is useful for output formats where changing formatting implies cost, and thus benefit from optimizing the default case of not having any format applied. If you make use of this, make sure to set the default text style to what the corresponding theme sets for Theme::Normal.

bool Format::isItalic(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the given theme results in italic text formatting.

bool Format::isStrikeThrough(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the given theme results in struck through text.

bool Format::isUnderline(const KSyntaxHighlighting::Theme &theme) const

Returns true if the combination of this format and the given theme results in underlined text.

bool Format::isValid() const

Returns true if this is a valid format, ie. one that was read from a syntax definition file.

QString Format::name() const

The name of this format as used in the syntax definition file.

QColor Format::selectedBackgroundColor(const KSyntaxHighlighting::Theme &theme) const

Returns the background color of selected text of the combination of this format and the given theme.

QColor Format::selectedTextColor(const KSyntaxHighlighting::Theme &theme) const

Returns the foreground color for selected text of the combination of this format and the given theme.

bool Format::spellCheck() const

Returns whether characters with this format should be spell checked.

QColor Format::textColor(const KSyntaxHighlighting::Theme &theme) const

Returns the foreground color of the combination of this format and the given theme.

[since 5.49] KSyntaxHighlighting::Theme::TextStyle Format::textStyle() const

Returns the underlying TextStyle of this Format.

Every Theme::TextStyle is visually defined by a Theme. A Format uses one of the Theme::TextStyle%s and on top allows modifications such as setting a different foreground color etc.

This function was introduced in 5.49.

See also Theme::TextStyle.