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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/* This file is part of KCachegrind.
Copyright (c) 2003-2015 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>
KCachegrind is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, version 2.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/*
* Items of event type view.
*/
#include "eventtypeitem.h"
#include <QPixmap>
#include "globalconfig.h"
#include "listutils.h"
// EventTypeItem
EventTypeItem::EventTypeItem(TraceCostItem* costItem,
EventType* ct, ProfileContext::Type gt)
{
_costItem = costItem;
_eventType = ct;
_groupType = gt;
setTextAlignment(1, Qt::AlignRight);
setTextAlignment(2, Qt::AlignRight);
setTextAlignment(3, Qt::AlignRight);
setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
if (ct) {
setText(0, ct->longName());
setText(3, ct->name());
setText(5, ct->parsedFormula());
QString formula = ct->formula();
if (!ct->isReal()) {
setText(4, "=");
// we have a virtual type: allow editing
// FIXME: How to enable this only for columns 0,3,5 ?!
setFlags(flags() | Qt::ItemIsEditable);
}
}
else {
setText(0, QObject::tr("Unknown Type"));
}
update();
}
void EventTypeItem::setGroupType(ProfileContext::Type gt)
{
if (_groupType == gt) return;
_groupType = gt;
update();
}
void EventTypeItem::update()
{
TraceData* d = _costItem ? _costItem->data() : 0;
double total = d ? ((double)d->subCost(_eventType)) : 0.0;
if (total == 0.0) {
setText(1, "-");
setIcon(1, QIcon());
setText(2, "-");
setIcon(2, QIcon());
return;
}
TraceFunction* f = (_costItem && _costItem->type()==ProfileContext::Function) ?
(TraceFunction*)_costItem : 0;
ProfileCostArray* selfTotalCost = f ? f->data() : d;
if (f && GlobalConfig::showExpanded()) {
ProfileCostArray* parent = 0;
switch(_groupType) {
case ProfileContext::Object: parent = f->object(); break;
case ProfileContext::Class: parent = f->cls(); break;
case ProfileContext::File: parent = f->file(); break;
case ProfileContext::FunctionCycle: parent = f->cycle(); break;
default: break;
}
if (parent) selfTotalCost = parent;
}
if (_costItem && _costItem->type()==ProfileContext::FunctionCycle) {
f = (TraceFunction*)_costItem;
selfTotalCost = f->data();
}
double selfTotal = selfTotalCost->subCost(_eventType);
// for all cost items there is a self cost
_pure = _costItem ? _costItem->subCost(_eventType) : SubCost(0);
double pure = 100.0 * _pure / selfTotal;
if (GlobalConfig::showPercentage()) {
setText(2, QString("%1")
.arg(pure, 0, 'f', GlobalConfig::percentPrecision()));
}
else if (_costItem)
setText(2, _costItem->prettySubCost(_eventType));
setIcon(2, QIcon(costPixmap(_eventType, _costItem, selfTotal, false)));
if (!f) {
setText(1, "-");
setIcon(1, QIcon());
return;
}
_sum = f->inclusive()->subCost(_eventType);
double sum = 100.0 * _sum / total;
if (GlobalConfig::showPercentage()) {
setText(1, QString("%1")
.arg(sum, 0, 'f', GlobalConfig::percentPrecision()));
}
else
setText(1, _sum.pretty());
setIcon(1, QIcon(costPixmap(_eventType, f->inclusive(), total, false)));
}
bool EventTypeItem::operator<(const QTreeWidgetItem &other) const
{
int col = treeWidget()->sortColumn();
EventTypeItem* o = (EventTypeItem*) &other;
if (col==0)
return _sum < o->_sum;
if (col==1)
return _pure < o->_pure;
return QTreeWidgetItem::operator<(other);
}
QVariant EventTypeItem::data(int column, int role) const
{
if ((column == 5) && (role == Qt::EditRole))
return QVariant(_eventType->formula());
return QTreeWidgetItem::data(column, role);
}
|