blob: a3b9f8c3a685b01e16f039382f230edeead750e2 (
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
|
// 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 <utils/filepath.h>
#include <QPoint>
namespace Debugger::Internal {
class DebuggerEngine;
class StackFrame;
class DebuggerToolTipContext
{
public:
bool isValid() const { return !expression.isEmpty(); }
bool matchesFrame(const StackFrame &frame) const;
bool isSame(const DebuggerToolTipContext &other) const;
QString toolTip() const;
Utils::FilePath fileName;
int position = 0;
int line = 0;
int column = 0;
int scopeFromLine = 0;
int scopeToLine = 0;
QString function; //!< Optional, informational only.
QString engineType;
QPoint mousePosition;
QString expression;
QString iname;
bool isCppEditor = true;
};
using DebuggerToolTipContexts = QList<DebuggerToolTipContext>;
class DebuggerToolTipManager
{
Q_DISABLE_COPY_MOVE(DebuggerToolTipManager)
public:
explicit DebuggerToolTipManager(DebuggerEngine *engine);
~DebuggerToolTipManager();
void deregisterEngine();
void updateToolTips();
bool hasToolTips() const;
DebuggerToolTipContexts pendingTooltips() const;
void closeAllToolTips();
void resetLocation();
private:
class DebuggerToolTipManagerPrivate *d;
};
} // Debugger::Internal
|