aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/valgrind/callgrindtextmark.h
blob: afc29f9691e5544349fd01362d1f122969765db2 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <texteditor/textmark.h>

#include <QPersistentModelIndex>

namespace Valgrind {

namespace Callgrind { class Function; }

namespace 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;
    qreal costs() const;

    QPersistentModelIndex m_modelIndex;
};

} // namespace Internal
} // namespace Valgrind