blob: 581e657d51ff6102ab7f183987a7f7c2272e475c (
plain)
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
70
|
// Copyright (C) 2016 Brian McGillion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "mercurialeditor.h"
#include "annotationhighlighter.h"
#include "constants.h"
#include "mercurialclient.h"
#include "mercurialtr.h"
#include <coreplugin/editormanager/editormanager.h>
#include <vcsbase/diffandloghighlighter.h>
#include <QString>
#include <QTextCursor>
#include <QTextBlock>
#include <QDebug>
using namespace Utils;
namespace Mercurial::Internal {
// use QRegularExpression::anchoredPattern() when minimum Qt is raised to 5.12+
MercurialEditorWidget::MercurialEditorWidget() :
exactIdentifier12(QString("\\A(?:") + Constants::CHANGEIDEXACT12 + QString(")\\z")),
exactIdentifier40(QString("\\A(?:") + Constants::CHANGEIDEXACT40 + QString(")\\z")),
changesetIdentifier40(Constants::CHANGESETID40)
{
setDiffFilePattern(Constants::DIFFIDENTIFIER);
setLogEntryPattern("^changeset:\\s+(\\S+)$");
setAnnotateRevisionTextFormat(Tr::tr("&Annotate %1"));
setAnnotatePreviousRevisionTextFormat(Tr::tr("Annotate &parent revision %1"));
setAnnotationEntryPattern(Constants::CHANGESETID12);
}
QString MercurialEditorWidget::changeUnderCursor(const QTextCursor &cursorIn) const
{
QTextCursor cursor = cursorIn;
cursor.select(QTextCursor::WordUnderCursor);
if (cursor.hasSelection()) {
const QString change = cursor.selectedText();
if (exactIdentifier12.match(change).hasMatch())
return change;
if (exactIdentifier40.match(change).hasMatch())
return change;
}
return {};
}
VcsBase::BaseAnnotationHighlighterCreator MercurialEditorWidget::annotationHighlighterCreator() const
{
return VcsBase::getAnnotationHighlighterCreator<MercurialAnnotationHighlighter>();
}
QString MercurialEditorWidget::decorateVersion(const QString &revision) const
{
const FilePath workingDirectory = source().absolutePath();
// Format with short summary
return mercurialClient().shortDescriptionSync(workingDirectory, revision);
}
QStringList MercurialEditorWidget::annotationPreviousVersions(const QString &revision) const
{
const FilePath filePath = source();
const FilePath workingDirectory = filePath.absolutePath();
// Retrieve parent revisions
return mercurialClient().parentRevisionsSync(workingDirectory, filePath.fileName(), revision);
}
} // Mercurial::Internal
|