1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// 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/syntaxhighlighter.h>
#include <QRegularExpression>
namespace Git::Internal {
enum Format {
Format_Comment,
Format_Change,
Format_Description,
Format_Pick,
Format_Reword,
Format_Edit,
Format_Squash,
Format_Fixup,
Format_Exec,
Format_Break,
Format_Drop,
Format_Label,
Format_Reset,
Format_Merge,
Format_Count
};
// Highlighter for git submit messages. Make the first line bold, indicates
// comments as such (retrieving the format from the text editor) and marks up
// keywords (words in front of a colon as in 'Task: <bla>').
class GitSubmitHighlighter : public TextEditor::SyntaxHighlighter
{
public:
explicit GitSubmitHighlighter(QChar commentChar = QChar(), QTextEdit *parent = nullptr);
void highlightBlock(const QString &text) override;
QChar commentChar() const;
void setCommentChar(QChar commentChar);
private:
enum State { None = -1, Header, Other };
const QRegularExpression m_keywordPattern;
QChar m_commentChar;
};
// Highlighter for interactive rebase todo. Indicates comments as such
// (retrieving the format from the text editor) and marks up keywords
class GitRebaseHighlighter : public TextEditor::SyntaxHighlighter
{
public:
explicit GitRebaseHighlighter(QChar commentChar, QTextDocument *parent = nullptr);
void highlightBlock(const QString &text) override;
private:
class RebaseAction
{
public:
QRegularExpression exp;
Format formatCategory;
RebaseAction(const QString ®exp, const Format formatCategory);
};
const QChar m_commentChar;
const QRegularExpression m_changeNumberPattern;
QList<RebaseAction> m_actions;
};
} // Git::Internal
|