2008-05-25 06:30:30 -05:00
|
|
|
|
2008-05-03 09:37:10 -05:00
|
|
|
#include "portstatswindow.h"
|
|
|
|
#include "portstatsmodel.h"
|
2008-05-25 06:30:30 -05:00
|
|
|
#include "portstatsfilterdialog.h"
|
|
|
|
|
|
|
|
#include "QHeaderView"
|
2008-05-03 09:37:10 -05:00
|
|
|
|
|
|
|
PortStatsWindow::PortStatsWindow(PortGroupList *pgl, QWidget *parent)
|
2008-09-14 07:03:53 -05:00
|
|
|
: QWidget(parent)
|
2008-05-03 09:37:10 -05:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
2008-09-14 07:03:53 -05:00
|
|
|
this->pgl = pgl;
|
2008-05-25 06:30:30 -05:00
|
|
|
model = pgl->getPortStatsModel();
|
|
|
|
tvPortStats->setModel(model);
|
|
|
|
tvPortStats->horizontalHeader()->setMovable(true);
|
2008-09-28 13:01:52 -05:00
|
|
|
|
|
|
|
tvPortStats->verticalHeader()->setHighlightSections(false);
|
|
|
|
tvPortStats->verticalHeader()->setDefaultSectionSize(
|
|
|
|
tvPortStats->verticalHeader()->minimumSectionSize());
|
2008-05-03 09:37:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
PortStatsWindow::~PortStatsWindow()
|
|
|
|
{
|
|
|
|
}
|
2008-05-25 06:30:30 -05:00
|
|
|
|
2008-09-14 07:03:53 -05:00
|
|
|
/* ------------- SLOTS -------------- */
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStartTransmit_clicked()
|
|
|
|
{
|
2008-09-28 13:01:52 -05:00
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
2008-09-14 07:03:53 -05:00
|
|
|
|
2008-09-28 13:01:52 -05:00
|
|
|
// Get selected ports
|
|
|
|
model->portListFromIndex(tvPortStats->selectionModel()->selectedColumns(),
|
|
|
|
pgpl);
|
2008-09-14 07:03:53 -05:00
|
|
|
|
2008-09-28 13:01:52 -05:00
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
startTx(&pgpl[i].portList);
|
2008-09-14 07:03:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStopTransmit_clicked()
|
|
|
|
{
|
2008-09-28 13:01:52 -05:00
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
|
|
|
model->portListFromIndex(tvPortStats->selectionModel()->selectedColumns(),
|
|
|
|
pgpl);
|
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
startTx(&pgpl[i].portList);
|
|
|
|
}
|
2008-09-14 07:03:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStartCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStopCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbViewCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbClear_clicked()
|
|
|
|
{
|
2008-09-28 13:01:52 -05:00
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Get selected ports
|
|
|
|
model->portListFromIndex(tvPortStats->selectionModel()->selectedColumns(),
|
|
|
|
portList);
|
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
clearPortStats(&portList[i].portList);
|
|
|
|
}
|
2008-09-14 07:03:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbClearAll_clicked()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < pgl->numPortGroups(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(0).clearPortStats();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-25 06:30:30 -05:00
|
|
|
void PortStatsWindow::on_tbFilter_clicked()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
QList<uint> currentColumns, newColumns;
|
|
|
|
PortStatsFilterDialog dialog;
|
|
|
|
|
|
|
|
for(int i = 0; i < model->columnCount(); i++)
|
|
|
|
if (!tvPortStats->isColumnHidden(i))
|
|
|
|
currentColumns.append(i);
|
|
|
|
|
|
|
|
newColumns = dialog.getItemList(&ok, model, Qt::Horizontal, currentColumns);
|
|
|
|
|
|
|
|
if(ok)
|
|
|
|
for(int i = 0; i < model->columnCount(); i++)
|
|
|
|
tvPortStats->setColumnHidden(i, !newColumns.contains(i));
|
|
|
|
}
|