blob: 121bd9e39f0b25f714c2c1033d9e19cabcc6d9c1 (
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
|
// 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_global.h"
#include <utils/id.h>
#include <QTextCursor>
#include <QIcon>
namespace TextEditor {
class TextEditorWidget;
struct TEXTEDITOR_EXPORT RefactorMarker;
using RefactorMarkers = QList<RefactorMarker>;
struct TEXTEDITOR_EXPORT RefactorMarker {
inline bool isValid() const { return !cursor.isNull(); }
QTextCursor cursor;
QString tooltip;
QIcon icon;
mutable QRect rect; // used to cache last drawing positin in document coordinates
std::function<void(TextEditor::TextEditorWidget *)> callback;
Utils::Id type;
QVariant data;
static RefactorMarkers filterOutType(const RefactorMarkers &markers, const Utils::Id &type);
};
class TEXTEDITOR_EXPORT RefactorOverlay : public QObject
{
Q_OBJECT
public:
explicit RefactorOverlay(TextEditor::TextEditorWidget *editor);
bool isEmpty() const { return m_markers.isEmpty(); }
void paint(QPainter *painter, const QRect &clip);
void setMarkers(const RefactorMarkers &markers) { m_markers = markers; }
RefactorMarkers markers() const { return m_markers; }
void clear() { m_markers.clear(); }
RefactorMarker markerAt(const QPoint &pos) const;
private:
void paintMarker(const RefactorMarker& marker, QPainter *painter, const QRect &clip);
RefactorMarkers m_markers;
TextEditorWidget *m_editor;
int m_maxWidth;
const QIcon m_icon;
};
} // namespace TextEditor
|