File: costlistitem.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 (43 lines) | stat: -rw-r--r-- 1,086 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
/*
    This file is part of KCachegrind.

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

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

#ifndef COSTLISTITEM_H
#define COSTLISTITEM_H

#include <QTreeWidget>

#include "tracedata.h"

class CostListItem: public QTreeWidgetItem
{
public:
    CostListItem(QTreeWidget* parent, TraceCostItem* cost,
                 EventType* et, int size = -1);
    // entry with multiple skipped items
    CostListItem(QTreeWidget* parent, int skipped, TraceCostItem* cost,
                 EventType* et);

    bool operator< ( const QTreeWidgetItem & other ) const override;
    TraceCostItem* costItem() { return (_skipped) ? nullptr : _costItem; }
    void setEventType(EventType* et);
    void update();
    void setSize(int s);

private:
    void updateName();

    SubCost _pure;
    EventType* _eventType;
    TraceCostItem* _costItem;
    // >0 only for last item in list, if items are skipped
    int _skipped;
    // number of items in group, is put in parenthesis after name
    int _groupSize;
};

#endif