/* This file is part of KCachegrind. Copyright (C) 2003 Josef Weidendorfer 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. */ /* * Cost Type View */ #include #include #include #include "configuration.h" #include "costtypeitem.h" #include "costtypeview.h" #include "toplevel.h" // // CostTypeView // CostTypeView::CostTypeView(TraceItemView* parentView, TQWidget* parent, const char* name) : TQListView(parent, name), TraceItemView(parentView) { addColumn( i18n( "Event Type" ) ); addColumn( i18n( "Incl." ) ); addColumn( i18n( "Self" ) ); addColumn( i18n( "Short" ) ); addColumn( TQString() ); addColumn( i18n( "Formula" ) ); setSorting(-1); setAllColumnsShowFocus(true); setColumnAlignment(1, TQt::AlignRight); setColumnAlignment(2, TQt::AlignRight); setColumnAlignment(3, TQt::AlignRight); setMinimumHeight(50); connect( this, TQT_SIGNAL( selectionChanged(TQListViewItem*) ), TQT_SLOT( selectedSlot(TQListViewItem*) ) ); connect( this, TQT_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)), TQT_SLOT(context(TQListViewItem*, const TQPoint &, int))); connect(this, TQT_SIGNAL(doubleClicked(TQListViewItem*)), TQT_SLOT(activatedSlot(TQListViewItem*))); connect(this, TQT_SIGNAL(returnPressed(TQListViewItem*)), TQT_SLOT(activatedSlot(TQListViewItem*))); connect(this, TQT_SIGNAL(itemRenamed(TQListViewItem*,int,const TQString&)), TQT_SLOT(renamedSlot(TQListViewItem*,int,const TQString&))); TQWhatsThis::add( this, whatsThis() ); } TQString CostTypeView::whatsThis() const { return i18n( "Cost Types List" "

This list shows all cost types available " "and what the self/inclusive cost of the " "current selected function is for that cost type.

" "

By choosing a cost type from the list, " "you change the cost type of costs shown " "all over KCachegrind to be the selected one.

"); } void CostTypeView::context(TQListViewItem* i, const TQPoint & p, int) { TQPopupMenu popup; TraceCostType* ct = i ? ((CostTypeItem*) i)->costType() : 0; if (ct) popup.insertItem(i18n("Set Secondary Event Type"), 99); if (_costType2) popup.insertItem(i18n("Remove Secondary Event Type"), 98); if (popup.count()>0) popup.insertSeparator(); if (ct && !ct->isReal()) { popup.insertItem(i18n("Edit Long Name"), 93); popup.insertItem(i18n("Edit Short Name"), 94); popup.insertItem(i18n("Edit Formula"), 95); popup.insertItem(i18n("Remove"), 96); popup.insertSeparator(); } addGoMenu(&popup); popup.insertSeparator(); popup.insertItem(i18n("New Cost Type ..."), 97); int r = popup.exec(p); if (r == 98) selectedCostType2(0); else if (r == 99) selectedCostType2(ct); else if (r == 93) i->startRename(0); else if (r == 94) i->startRename(3); else if (r == 95) i->startRename(5); else if (r == 96) { // search for a previous type TraceCostType* prev = 0, *ct = 0; TraceCostMapping* m = _data->mapping(); for (int i=0;irealCount();i++) { ct = m->realType(i); if (ct) prev = ct; } for (int i=0;ivirtualCount();i++) { ct = m->virtualType(i); if (ct == _costType) break; if (ct) prev = ct; } if (_data->mapping()->remove(ct)) { // select previous cost type selectedCostType(prev); if (_costType2 == ct) selectedCostType2(prev); refresh(); } } else if (r == 97) { int i = 1; while(1) { if (!TraceCostType::knownVirtualType(i18n("New%1").arg(i))) break; i++; } // add same new cost type to this mapping and to known types TQString shortName = i18n("New%1").arg(i); TQString longName = i18n("New Cost Type %1").arg(i); TraceCostType::add(new TraceCostType(shortName, longName, "0")); _data->mapping()->add(new TraceCostType(shortName, longName, "0")); refresh(); } } void CostTypeView::selectedSlot(TQListViewItem * i) { TraceCostType* ct = i ? ((CostTypeItem*) i)->costType() : 0; if (ct) selectedCostType(ct); } void CostTypeView::activatedSlot(TQListViewItem * i) { TraceCostType* ct = i ? ((CostTypeItem*) i)->costType() : 0; if (ct) selectedCostType2(ct); } TraceItem* CostTypeView::canShow(TraceItem* i) { if (!i) return 0; switch(i->type()) { case TraceCost::Object: case TraceCost::Class: case TraceCost::File: case TraceCost::Call: case TraceCost::FunctionCycle: case TraceCost::Function: break; default: return 0; } return i; } void CostTypeView::doUpdate(int changeType) { // Special case ? if (changeType == selectedItemChanged) return; if (changeType == costType2Changed) return; if (changeType == groupTypeChanged) { TQListViewItem *item; for (item = firstChild();item;item = item->nextSibling()) ((CostTypeItem*)item)->setGroupType(_groupType); return; } if (changeType == costTypeChanged) { TQListViewItem *item; for (item = firstChild();item;item = item->nextSibling()) if ( ((CostTypeItem*)item)->costType() == _costType) { setSelected(item, true); ensureItemVisible(item); break; } return; } if (changeType == partsChanged) { TQListViewItem *item; for (item = firstChild();item;item = item->nextSibling()) ((CostTypeItem*)item)->update(); return; } refresh(); } void CostTypeView::refresh() { clear(); setColumnWidth(1, 50); setColumnWidth(2, 50); if (!_data || !_activeItem) return; switch(_activeItem->type()) { case TraceCost::Object: case TraceCost::Class: case TraceCost::File: case TraceCost::FunctionCycle: case TraceCost::Function: break; default: return; } TraceCostItem* c = (TraceCostItem*) _activeItem; TraceCostType* ct =0 ; TQListViewItem* item = 0; TQString sumStr, pureStr; TQListViewItem* costItem=0; TraceCostMapping* m = _data->mapping(); for (int i=m->virtualCount()-1;i>=0;i--) { ct = m->virtualType(i); if (!ct) continue; item = new CostTypeItem(this, c, ct, _groupType); if (ct == _costType) costItem = item; } for (int i=m->realCount()-1;i>=0;i--) { ct = m->realType(i); item = new CostTypeItem(this, c, ct, _groupType); if (ct == _costType) costItem = item; } if (costItem) { setSelected(costItem, true); ensureItemVisible(costItem); } if (item) setMinimumHeight(3*item->height()); } void CostTypeView::renamedSlot(TQListViewItem* item,int c,const TQString& t) { TraceCostType* ct = item ? ((CostTypeItem*) item)->costType() : 0; if (!ct || ct->isReal()) return; // search for matching known Type int knownCount = TraceCostType::knownTypeCount(); TraceCostType* known = 0; for (int i=0; iname() == ct->name()) break; } if (c == 0) { ct->setLongName(t); if (known) known->setLongName(t); } else if (c == 3) { ct->setName(t); if (known) known->setName(t); } else if (c == 5) { ct->setFormula(t); if (known) known->setFormula(t); } else return; if (_topLevel) _topLevel->configChanged(); refresh(); } #include "costtypeview.moc"