KSyntaxHighlighting::Theme Class

class KSyntaxHighlighting::Theme

Color theme definition used for highlighting. More...

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

Public Types

enum TextStyle { Normal, Keyword, Function, Variable, ControlFlow, …, Others }

Properties

Public Functions

Theme()
Theme(const KSyntaxHighlighting::Theme &copy)
QRgb backgroundColor(KSyntaxHighlighting::Theme::TextStyle style) const
QRgb editorColor(KSyntaxHighlighting::Theme::EditorColorRole role) const
QString filePath() const
bool isBold(KSyntaxHighlighting::Theme::TextStyle style) const
bool isItalic(KSyntaxHighlighting::Theme::TextStyle style) const
bool isReadOnly() const
bool isStrikeThrough(KSyntaxHighlighting::Theme::TextStyle style) const
bool isUnderline(KSyntaxHighlighting::Theme::TextStyle style) const
bool isValid() const
QString name() const
QRgb selectedBackgroundColor(KSyntaxHighlighting::Theme::TextStyle style) const
QRgb selectedTextColor(KSyntaxHighlighting::Theme::TextStyle style) const
QRgb textColor(KSyntaxHighlighting::Theme::TextStyle style) const
QString translatedName() const
KSyntaxHighlighting::Theme &operator=(const KSyntaxHighlighting::Theme &other)

Detailed Description

The Theme provides a full color theme for painting the highlighted text. One Theme is defined either as a *.theme file on disk, or as a file compiled into the SyntaxHighlighting library by using Qt's resource system. Each Theme has a unique name(), including a translatedName() if put into the UI. Themes shipped by default are typically read-only, see isReadOnly().

A Theme defines two sets of colors:

  • Text colors, including foreground and background colors, colors for selected text, and properties such as bold and italic. These colors are used e.g. by the SyntaxHighlighter.
  • Editor colors, including a background color for the entire editor widget, the line number color, code folding colors, etc.

Text Colors and the Class Format

The text colors are used for syntax highlighting. // TODO: elaborate more and explain relation to Format class

theme_editor_colors Editor Colors

If you want to use the SyntaxHighlighting framework to write your own text editor, you also need to paint the background of the editing widget. In addition, the editor may support showing line numbers, a folding bar, a highlight for the current text line, and similar features. All these colors are defined in terms of the "editor colors" and accessible by calling editorColor() with the desired enum EditorColorRole.

Accessing a Theme

All available Theme%s are accessed through the Repository. These themes are typically valid themes. If you create a Theme on your own, isValid() will return false, and all colors provided by this Theme are in fact invalid and therefore unusable.

See also Format.

Member Type Documentation

enum Theme::TextStyle

Default styles that can be referenced from syntax definition XML files. Make sure to choose readable colors with good contrast especially in combination with the EditorColorRole%s.

ConstantValueDescription
KSyntaxHighlighting::Theme::Normal0Default text style for normal text and source code without special highlighting.
KSyntaxHighlighting::Theme::Keyword1Text style for language keywords.
KSyntaxHighlighting::Theme::Function2Text style for function definitions and function calls.
KSyntaxHighlighting::Theme::Variable3Text style for variables, if applicable. For instance, variables in PHP typically start with a '$', so all identifiers following the pattern $foo are highlighted as variable.
KSyntaxHighlighting::Theme::ControlFlow4Text style for control flow highlighting, such as if, then, else, return, or continue.
KSyntaxHighlighting::Theme::Operator5Text style for operators such as +, -, *, / and :: etc.
KSyntaxHighlighting::Theme::BuiltIn6Text style for built-in language classes and functions.
KSyntaxHighlighting::Theme::Extension7Text style for well-known extensions, such as Qt or boost.
KSyntaxHighlighting::Theme::Preprocessor8Text style for preprocessor statements.
KSyntaxHighlighting::Theme::Attribute9Text style for attributes of functions or objects, e.g. @override in Java, or __declspec(...) and __attribute__((...)) in C++.
KSyntaxHighlighting::Theme::Char10Text style for single characters such as 'a'.
KSyntaxHighlighting::Theme::SpecialChar11Text style for escaped characters in strings, such as "hello\n".
KSyntaxHighlighting::Theme::String12Text style for strings, for instance "hello world".
KSyntaxHighlighting::Theme::VerbatimString13Text style for verbatim strings such as HERE docs.
KSyntaxHighlighting::Theme::SpecialString14Text style for special strings such as regular expressions in ECMAScript or the LaTeX math mode.
KSyntaxHighlighting::Theme::Import15Text style for includes, imports, modules, or LaTeX packages.
KSyntaxHighlighting::Theme::DataType16Text style for data types such as int, char, float etc.
KSyntaxHighlighting::Theme::DecVal17Text style for decimal values.
KSyntaxHighlighting::Theme::BaseN18Text style for numbers with base other than 10.
KSyntaxHighlighting::Theme::Float19Text style for floating point numbers.
KSyntaxHighlighting::Theme::Constant20Text style for language constants, e.g. True, False, None in Python or nullptr in C/C++.
KSyntaxHighlighting::Theme::Comment21Text style for normal comments.
KSyntaxHighlighting::Theme::Documentation22Text style for comments that reflect API documentation, such as doxygen \/** *\/ comments.
KSyntaxHighlighting::Theme::Annotation23Text style for annotations in comments, such as in Doxygen or JavaDoc.
KSyntaxHighlighting::Theme::CommentVar24Text style that refers to variables in a comment, such as after <identifier> in Doxygen or JavaDoc.
KSyntaxHighlighting::Theme::RegionMarker25Text style for region markers, typically defined by BEGIN/END.
KSyntaxHighlighting::Theme::Information26Text style for information, such as the keyword \note in Doxygen.
KSyntaxHighlighting::Theme::Warning27Text style for warnings, such as the keyword \warning in Doxygen.
KSyntaxHighlighting::Theme::Alert28Text style for comment specials such as TODO and WARNING in comments.
KSyntaxHighlighting::Theme::Error29Text style indicating wrong syntax.
KSyntaxHighlighting::Theme::Others30Text style for attributes that do not match any of the other default styles.

Property Documentation

[read-only] name : const QString

Access functions:

QString name() const

[read-only] translatedName : const QString

Access functions:

QString translatedName() const

Member Function Documentation

Theme::Theme()

Default constructor, creating an invalid Theme, see isValid().

Theme::Theme(const KSyntaxHighlighting::Theme &copy)

Copy constructor, sharing the Theme data with copy.

QRgb Theme::backgroundColor(KSyntaxHighlighting::Theme::TextStyle style) const

Returns the background color to be used for style. 0 is returned for styles that do not specify a background color, use the default background color in that case.

QRgb Theme::editorColor(KSyntaxHighlighting::Theme::EditorColorRole role) const

Returns the editor color for the requested role.

QString Theme::filePath() const

Returns the full path and file name to this Theme. Themes from the Qt resource return the Qt resource path. Themes from disk return the local path.

If the theme is invalid (isValid()), an empty string is returned.

bool Theme::isBold(KSyntaxHighlighting::Theme::TextStyle style) const

Returns whether the given style should be shown in bold.

bool Theme::isItalic(KSyntaxHighlighting::Theme::TextStyle style) const

Returns whether the given style should be shown in italic.

bool Theme::isReadOnly() const

Returns true if this Theme is read-only.

A Theme is read-only, if the filePath() points to a non-writable file. This is typically the case for Themes that are compiled into the executable as resource file, as well as for theme files that are installed in read-only system locations (e.g. /usr/share/).

bool Theme::isStrikeThrough(KSyntaxHighlighting::Theme::TextStyle style) const

Returns whether the given style should be shown struck through.

bool Theme::isUnderline(KSyntaxHighlighting::Theme::TextStyle style) const

Returns whether the given style should be shown underlined.

bool Theme::isValid() const

Returns true if this is a valid Theme. If the theme is invalid, none of the returned colors are well-defined.

QString Theme::name() const

Returns the unique name of this Theme.

Note: Getter function for property name.

See also translatedName().

QRgb Theme::selectedBackgroundColor(KSyntaxHighlighting::Theme::TextStyle style) const

Returns the background color to be used for selected text for style. 0 is returned for styles that do not specify a background color, use the default backgroundColor() in that case.

QRgb Theme::selectedTextColor(KSyntaxHighlighting::Theme::TextStyle style) const

Returns the selected text color to be used for style. 0 is returned for styles that do not specify a selected text color, use the default textColor() in that case.

QRgb Theme::textColor(KSyntaxHighlighting::Theme::TextStyle style) const

Returns the text color to be used for style. 0 is returned for styles that do not specify a text color, use the default text color in that case.

QString Theme::translatedName() const

Returns the translated name of this Theme. The translated name can be used in the user interface.

Note: Getter function for property translatedName.

KSyntaxHighlighting::Theme &Theme::operator=(const KSyntaxHighlighting::Theme &other)

Assignment operator, sharing the Theme data with other.