blob: e4d9de22d054c310ceb3e6cf7536890d8d553a6a (
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
71
72
73
74
75
76
77
78
79
|
// Copyright (C) 2023 Andre Hartmann (aha_1980@gmx.de)
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "gitclient.h"
#include <texteditor/textmark.h>
#include <utils/filepath.h>
QT_BEGIN_NAMESPACE
class QLayout;
class QTextCodec;
class QTimer;
QT_END_NAMESPACE
namespace Git::Internal {
class CommitInfo {
public:
QString hash;
QString shortAuthor;
QString author;
QString authorMail;
QDateTime authorDate;
QString subject;
QStringList oldLines; ///< the previous line contents
QString newLine; ///< the new line contents
Utils::FilePath filePath; ///< absolute file path for current file
QString originalFileName; ///< relative file path from project root for the original file
int line = -1; ///< current line number in current file
int originalLine = -1; ///< original line number in the original file
bool modified = false; ///< line is locally modified (uncommitted)
};
class BlameMark : public TextEditor::TextMark
{
public:
BlameMark(const Utils::FilePath &fileName, int lineNumber, const CommitInfo &info);
bool addToolTipContent(QLayout *target) const;
QString toolTipText(const CommitInfo &info) const;
void addOldLine(const QString &oldLine);
void addNewLine(const QString &newLine);
private:
CommitInfo m_info;
};
class InstantBlame : public QObject
{
Q_OBJECT
public:
InstantBlame();
void setup();
void once();
void force();
void stop();
void perform();
private:
bool refreshWorkingDirectory(const Utils::FilePath &workingDirectory);
void slotDocumentChanged();
Utils::FilePath m_workingDirectory;
Utils::TextCodec m_codec;
Author m_author;
int m_lastVisitedEditorLine = -1;
Core::IDocument *m_document = nullptr;
bool m_modified = false;
QTimer *m_cursorPositionChangedTimer = nullptr;
std::unique_ptr<BlameMark> m_blameMark;
QMetaObject::Connection m_blameCursorPosConn;
QMetaObject::Connection m_documentChangedConn;
};
} // Git::Internal
|