blob: 7bfaeafadf6fd95c0cd7b76c447d9fc2d5e1e39b (
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
|
// 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/textmark.h>
#include <QPersistentModelIndex>
namespace Valgrind::Callgrind { class Function; }
namespace Valgrind::Internal {
class CallgrindTextMark : public TextEditor::TextMark
{
public:
/**
* This creates a callgrind text mark for a specific Function
*
* \param index DataModel model index
* \note The index parameter must refer to one of the DataModel cost columns
*/
explicit CallgrindTextMark(const QPersistentModelIndex &index,
const Utils::FilePath &fileName, int lineNumber);
const Valgrind::Callgrind::Function *function() const;
private:
bool addToolTipContent(QLayout *target) const override;
qreal costs() const;
QPersistentModelIndex m_modelIndex;
};
} // namespace Valgrind::Internal
|