File: QHighlightBlockRule.hpp

package info (click to toggle)
qcodeeditor 1.0%2B1gitdc644d-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 528 kB
  • sloc: cpp: 2,502; xml: 731; python: 11; makefile: 9
file content (24 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

// Qt
#include <QRegularExpression>
#include <QString>

struct QHighlightBlockRule
{
    QHighlightBlockRule() :
        startPattern(),
        endPattern(),
        formatName()
    {}

    QHighlightBlockRule(QRegularExpression start, QRegularExpression end, QString format) :
        startPattern(std::move(start)),
        endPattern(std::move(end)),
        formatName(std::move(format))
    {}

    QRegularExpression startPattern;
    QRegularExpression endPattern;
    QString formatName;
};