File: partview.h

package info (click to toggle)
kcachegrind 4%3A25.04.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,964 kB
  • sloc: cpp: 32,149; xml: 403; perl: 325; python: 235; sh: 8; makefile: 6
file content (45 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (2)
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
/*
    This file is part of KCachegrind.

    SPDX-FileCopyrightText: 2003-2016 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>

    SPDX-License-Identifier: GPL-2.0-only
*/

/*
 * Part View
 */

#ifndef PARTVIEW_H
#define PARTVIEW_H

#include <QTreeWidget>

#include "tracedata.h"
#include "traceitemview.h"

class PartView: public QTreeWidget, public TraceItemView
{
    Q_OBJECT

public:
    explicit PartView(TraceItemView* parentView, QWidget* parent=nullptr);

    QWidget* widget() override { return this; }
    QString whatsThis() const override;

    void refresh();

private Q_SLOTS:
    void context(const QPoint &);
    void selectionChangedSlot();
    void headerClicked(int);

private:
    CostItem* canShow(CostItem*) override;
    void doUpdate(int, bool) override;

    bool _inSelectionUpdate;
};

#endif