summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/stackitem.cpp
blob: 69494f3bc8ce78e906afdf75f9c8d8d4c9010bbf (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
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
/* This file is part of KCachegrind.
   Copyright (C) 2003 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 stack dockable.
 */

#include <tqpixmap.h>
#include <tdelocale.h>

#include "configuration.h"
#include "listutils.h"
#include "stackitem.h"
#include "stactdeselection.h"

// StackItem

StackItem::StackItem(StackSelection* ss, 
		     TQListView* parent, TraceFunction* f)
  :TQListViewItem(parent)
{
  _view = ss;
  _function = f;
  _call = 0;

  updateGroup();
  updateCost();

  setText(2, TQString("-- "));
  setText(3, f->prettyName());
}

StackItem::StackItem(StackSelection* ss,
		     TQListView* parent, TraceCall* call)
  :TQListViewItem(parent)
{
  _view = ss;
  _call = call;
  _function = call->called();

  updateGroup();
  updateCost();

  setText(3, _function->prettyName());
}


void StackItem::updateGroup()
{
  TQColor c = Configuration::functionColor(_view->groupType(),
					  _function);
  setPixmap(3, colorPixmap(10, 10, c));
}

void StackItem::updateCost()
{
  if (!_call) return;

  setText(2, _call->prettyCallCount());

  TraceCostType* ct = _view->costType();
  _sum = _call->subCost(ct);
  double total = _call->called()->data()->subCost(ct);
  if (total == 0.0) {
    setText(0, "-");
    setPixmap(0, TQPixmap());
  }
  else {
    double sum  = 100.0 * _sum / total;

    if (Configuration::showPercentage())
      setText(0, TQString("%1")
	      .arg(sum, 0, 'f', Configuration::percentPrecision()));
    else
      setText(0, _call->prettySubCost(ct));
    
    setPixmap(0, costPixmap(ct, _call, total, false));
  }

  // if _costType2 is 0, column1 is hidden, no change needed
  TraceCostType* ct2 = _view->costType2();
  if (!ct2) return;

  _sum = _call->subCost(ct2);
  total = _call->called()->data()->subCost(ct2);
  if (total == 0.0) {
    setText(1, "-");
    setPixmap(1, TQPixmap());
  }
  else {
    double sum  = 100.0 * _sum / total;

    if (Configuration::showPercentage())
      setText(1, TQString("%1")
	      .arg(sum, 0, 'f', Configuration::percentPrecision()));
    else
      setText(1, _call->prettySubCost(ct2));
    
    setPixmap(1, costPixmap(ct2, _call, total, false));
  }
}