/*----------------------------------------------------------------------
Prof-It for C#
Copyright (c) 2004 Klaus Lehner, University of Linz
This program 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; either version 2, or (at your option) any
later version.
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; if not, write to the Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
----------------------------------------------------------------------*/
using System;
using System.Windows.Forms;
using System.Collections;
using at.jku.ssw.ProfIt.Components;
namespace at.jku.ssw.ProfIt.Controls{
/// <summary>
/// The listbox that contains all methods of the current solution
/// </summary>
public class ClassListView : AbstractListView {
public ClassListView() : base() {
}
protected override AbstractListViewItem createListViewItem(IBlock block, string fileName) {
return new MyListViewItem(block, fileName);
}
protected override System.Collections.ArrayList getColumnHeaders() {
ArrayList list = new ArrayList();
list.Add("Class");
list.Add("Counter");
list.Add("Statements");
list.Add("Executions");
list.Add("Coverage");
list.Add("File");
return list;
}
protected override void alignColumns() {
listView.Columns[1].TextAlign = HorizontalAlignment.Right;
listView.Columns[2].TextAlign = HorizontalAlignment.Right;
listView.Columns[3].TextAlign = HorizontalAlignment.Right;
listView.Columns[4].TextAlign = HorizontalAlignment.Right;
}
protected override Tables getTableType() {
return Tables.Classes;
}
protected override System.Collections.ArrayList getCountersToDisplay(CounterCollection file) {
return file.ClassCounters;
}
protected override ColumnType getColumnType(int column) {
switch (column) {
case 0: case 5:
return ColumnType.String;
case 1: case 2: case 3:
return ColumnType.Int;
case 4:
return ColumnType.Percentage;
default:
return ColumnType.String;
}
}
protected class MyListViewItem : AbstractListViewItem {
public MyListViewItem(IBlock block, string fileName) : base(block, fileName) {
}
protected override void CreateSubItems() {
this.Text = ((ClassCounter)Block).Name;
this.SubItems.Add(FormatString.GetString(Block.Counter));
this.SubItems.Add(FormatString.GetString(Block.Statements));
this.SubItems.Add(FormatString.GetString(Block.Executions));
this.SubItems.Add(FormatString.GetString(((ClassCounter)Block).Coverage));
this.SubItems.Add(FileUtility.ToShortFileName(FileName));
}
}
}
}
|