2015-04-16 11:50:07 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2010 Srivats P.
|
|
|
|
|
|
|
|
This file is part of "Ostinato"
|
|
|
|
|
|
|
|
This 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 3 of the License, 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, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "portstatswindow.h"
|
2015-05-06 11:10:55 -05:00
|
|
|
|
2018-11-29 09:14:03 -06:00
|
|
|
#include "icononlydelegate.h"
|
2015-04-16 11:50:07 -05:00
|
|
|
#include "portstatsfilterdialog.h"
|
2015-05-06 11:10:55 -05:00
|
|
|
#include "portstatsmodel.h"
|
|
|
|
#include "portstatsproxymodel.h"
|
2023-03-03 22:27:56 -06:00
|
|
|
#include "rowborderdelegate.h"
|
2016-11-24 10:14:38 -06:00
|
|
|
#include "streamstatsmodel.h"
|
|
|
|
#include "streamstatswindow.h"
|
2015-05-06 11:10:55 -05:00
|
|
|
#include "settings.h"
|
2015-04-16 11:50:07 -05:00
|
|
|
|
2016-11-24 10:14:38 -06:00
|
|
|
#include <QDockWidget>
|
2015-05-06 11:10:55 -05:00
|
|
|
#include <QHeaderView>
|
2016-11-24 10:14:38 -06:00
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
extern QMainWindow *mainWindow;
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
PortStatsWindow::PortStatsWindow(PortGroupList *pgl, QWidget *parent)
|
2015-05-06 11:10:55 -05:00
|
|
|
: QWidget(parent), proxyStatsModel(NULL)
|
2015-04-16 11:50:07 -05:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
|
|
|
this->pgl = pgl;
|
|
|
|
model = pgl->getPortStatsModel();
|
2015-05-06 11:10:55 -05:00
|
|
|
|
2023-03-03 23:19:35 -06:00
|
|
|
// Hide 'user' row
|
2023-11-08 01:25:39 -06:00
|
|
|
proxyStatsModel = new PortStatsProxyModel(e_INFO_USER, this);
|
2015-05-06 11:10:55 -05:00
|
|
|
if (proxyStatsModel) {
|
|
|
|
proxyStatsModel->setSourceModel(model);
|
|
|
|
tvPortStats->setModel(proxyStatsModel);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
tvPortStats->setModel(model);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
2018-02-08 07:34:29 -06:00
|
|
|
tvPortStats->setAlternatingRowColors(true);
|
2015-04-16 11:50:07 -05:00
|
|
|
tvPortStats->verticalHeader()->setHighlightSections(false);
|
|
|
|
tvPortStats->verticalHeader()->setDefaultSectionSize(
|
|
|
|
tvPortStats->verticalHeader()->minimumSectionSize());
|
2018-11-29 09:14:03 -06:00
|
|
|
|
2023-03-03 22:27:56 -06:00
|
|
|
// XXX: Set Delegates for port stats view
|
2023-03-03 23:19:35 -06:00
|
|
|
// RowBorderDelegate: Group related stats using a horizontal line
|
2023-03-03 22:27:56 -06:00
|
|
|
// IconOnlyDelegate : For status, show only icons not icons+text
|
|
|
|
tvPortStats->setItemDelegate(
|
|
|
|
new RowBorderDelegate(
|
|
|
|
QSet<int>({
|
2023-03-03 23:19:35 -06:00
|
|
|
e_STAT_FRAMES_SENT,
|
|
|
|
e_STAT_FRAME_SEND_RATE,
|
|
|
|
e_STAT_RX_DROPS}),
|
2023-03-03 22:27:56 -06:00
|
|
|
this));
|
|
|
|
|
2018-11-29 09:14:03 -06:00
|
|
|
statusDelegate = new IconOnlyDelegate(this);
|
|
|
|
#if 0
|
|
|
|
// XXX: Ideally we should use this, but it doesn't work because in
|
|
|
|
// this constructor, the port model is empty and model->index() returns
|
|
|
|
// an invalid index ...
|
|
|
|
tvPortStats->setItemDelegateForRow(
|
|
|
|
proxyStatsModel ?
|
|
|
|
proxyStatsModel->mapFromSource(model->index(e_COMBO_STATE, 0))
|
|
|
|
.row() :
|
|
|
|
e_COMBO_STATE,
|
|
|
|
statusDelegate);
|
|
|
|
#else
|
|
|
|
// ... so we use this hard-coded hack
|
2023-03-03 23:19:35 -06:00
|
|
|
tvPortStats->setItemDelegateForRow(e_COMBO_STATE, statusDelegate);
|
2018-11-29 09:14:03 -06:00
|
|
|
#endif
|
2015-04-16 11:50:07 -05:00
|
|
|
|
2017-09-08 10:43:53 -05:00
|
|
|
connect(tvPortStats->selectionModel(),
|
|
|
|
SIGNAL(selectionChanged(
|
|
|
|
const QItemSelection&, const QItemSelection&)),
|
|
|
|
SLOT(when_tvPortStats_selectionChanged(
|
|
|
|
const QItemSelection&, const QItemSelection&)));
|
|
|
|
when_tvPortStats_selectionChanged(QItemSelection(), QItemSelection());
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
PortStatsWindow::~PortStatsWindow()
|
|
|
|
{
|
2015-05-06 11:10:55 -05:00
|
|
|
delete proxyStatsModel;
|
2018-11-29 09:14:03 -06:00
|
|
|
delete statusDelegate;
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
|
2015-05-06 11:10:55 -05:00
|
|
|
/* ------------- SLOTS (public) -------------- */
|
|
|
|
|
2020-05-07 08:10:31 -05:00
|
|
|
void PortStatsWindow::clearCurrentSelection()
|
|
|
|
{
|
|
|
|
tvPortStats->selectionModel()->clearCurrentIndex();
|
|
|
|
tvPortStats->clearSelection();
|
|
|
|
}
|
|
|
|
|
2015-05-06 11:10:55 -05:00
|
|
|
void PortStatsWindow::showMyReservedPortsOnly(bool enabled)
|
|
|
|
{
|
|
|
|
if (!proxyStatsModel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
QString rx(appSettings->value(kUserKey, kUserDefaultValue).toString());
|
|
|
|
proxyStatsModel->setFilterRegExp(QRegExp::escape(rx));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
proxyStatsModel->setFilterRegExp(QRegExp(".*")); // match all
|
|
|
|
}
|
2015-04-16 11:50:07 -05:00
|
|
|
|
2015-05-06 11:10:55 -05:00
|
|
|
/* ------------- SLOTS (private) -------------- */
|
2017-09-08 10:43:53 -05:00
|
|
|
|
|
|
|
void PortStatsWindow::when_tvPortStats_selectionChanged(
|
|
|
|
const QItemSelection& /*selected*/,
|
|
|
|
const QItemSelection& /*deselected*/)
|
|
|
|
{
|
|
|
|
QModelIndexList indexList =
|
|
|
|
tvPortStats->selectionModel()->selectedColumns();
|
|
|
|
|
|
|
|
if (proxyStatsModel) {
|
|
|
|
selectedColumns.clear();
|
|
|
|
foreach(QModelIndex index, indexList)
|
|
|
|
selectedColumns.append(proxyStatsModel->mapToSource(index));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
selectedColumns = indexList;
|
|
|
|
|
|
|
|
bool isEmpty = selectedColumns.isEmpty();
|
|
|
|
|
|
|
|
tbStartTransmit->setDisabled(isEmpty);
|
|
|
|
tbStopTransmit->setDisabled(isEmpty);
|
|
|
|
|
|
|
|
tbStartCapture->setDisabled(isEmpty);
|
|
|
|
tbStopCapture->setDisabled(isEmpty);
|
|
|
|
tbViewCapture->setDisabled(isEmpty);
|
|
|
|
|
|
|
|
tbClear->setDisabled(isEmpty);
|
2017-12-06 09:17:26 -06:00
|
|
|
tbGetStreamStats->setDisabled(isEmpty);
|
2017-09-08 10:43:53 -05:00
|
|
|
|
|
|
|
tbResolveNeighbors->setDisabled(isEmpty);
|
|
|
|
tbClearNeighbors->setDisabled(isEmpty);
|
|
|
|
}
|
|
|
|
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbStartTransmit_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, pgpl);
|
2015-04-16 11:50:07 -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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStopTransmit_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
stopTx(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStartCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
startCapture(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbStopCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
stopCapture(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbViewCapture_clicked()
|
|
|
|
{
|
|
|
|
// TODO(MED)
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> pgpl;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, pgpl);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < pgpl.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(pgpl.at(i).portGroupId).
|
|
|
|
viewCapture(&pgpl[i].portList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 09:50:11 -06:00
|
|
|
void PortStatsWindow::on_tbResolveNeighbors_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, portList);
|
2016-03-09 09:50:11 -06:00
|
|
|
|
|
|
|
// Resolve ARP/ND for selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
resolveDeviceNeighbors(&portList[i].portList);
|
2019-02-02 01:56:40 -06:00
|
|
|
|
|
|
|
// Update device info for the just processed portgroup
|
|
|
|
for (int j = 0; j < portList[i].portList.size(); j++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
getDeviceInfo(portList[i].portList[j]);
|
|
|
|
}
|
2016-03-09 09:50:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PortStatsWindow::on_tbClearNeighbors_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, portList);
|
2016-03-09 09:50:11 -06:00
|
|
|
|
|
|
|
// Clear ARP/ND for ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
clearDeviceNeighbors(&portList[i].portList);
|
2019-02-02 01:56:40 -06:00
|
|
|
|
|
|
|
// Update device info for the just processed portgroup
|
|
|
|
for (int j = 0; j < portList[i].portList.size(); j++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
getDeviceInfo(portList[i].portList[j]);
|
|
|
|
}
|
2016-03-09 09:50:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbClear_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-09-08 10:43:53 -05:00
|
|
|
model->portListFromIndex(selectedColumns, portList);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// Clear selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
clearPortStats(&portList[i].portList);
|
2016-11-28 08:49:17 -06:00
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId).
|
|
|
|
clearStreamStats(&portList[i].portList);
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-07 08:26:32 -05:00
|
|
|
// 'All' => all ports currently visible, not all ports in all portgroups
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbClearAll_clicked()
|
|
|
|
{
|
2015-05-07 08:26:32 -05:00
|
|
|
QAbstractItemModel *mdl = tvPortStats->model();
|
|
|
|
QModelIndexList shownColumns;
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
|
|
|
|
// Find the 'visible' columns
|
|
|
|
for(int vi = 0; vi < mdl->columnCount(); vi++) {
|
|
|
|
int li = tvPortStats->horizontalHeader()->logicalIndex(vi);
|
|
|
|
if (!tvPortStats->isColumnHidden(li)) {
|
|
|
|
shownColumns.append(mdl->index(0, li));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-04 08:30:13 -05:00
|
|
|
if (proxyStatsModel) {
|
|
|
|
for(QModelIndex &index : shownColumns)
|
|
|
|
index = proxyStatsModel->mapToSource(index);
|
|
|
|
}
|
|
|
|
|
2015-05-07 08:26:32 -05:00
|
|
|
// Get ports corresponding to the shown columns
|
|
|
|
model->portListFromIndex(shownColumns, portList);
|
|
|
|
|
|
|
|
// Clear shown ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
2015-04-16 11:50:07 -05:00
|
|
|
{
|
2015-05-07 08:26:32 -05:00
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId)
|
|
|
|
.clearPortStats(&portList[i].portList);
|
2016-11-28 08:49:17 -06:00
|
|
|
pgl->portGroupByIndex(portList.at(i).portGroupId)
|
|
|
|
.clearStreamStats(&portList[i].portList);
|
2015-04-16 11:50:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 10:14:38 -06:00
|
|
|
void PortStatsWindow::on_tbGetStreamStats_clicked()
|
|
|
|
{
|
|
|
|
QList<PortStatsModel::PortGroupAndPortList> portList;
|
|
|
|
StreamStatsModel *streamStatsModel;
|
|
|
|
|
|
|
|
// Get selected ports
|
2017-12-03 01:29:26 -06:00
|
|
|
model->portListFromIndex(selectedColumns, portList);
|
2016-11-24 10:14:38 -06:00
|
|
|
|
|
|
|
if (portList.size()) {
|
2016-11-27 01:09:37 -06:00
|
|
|
QDockWidget *dock = new QDockWidget(mainWindow);
|
2016-11-24 10:14:38 -06:00
|
|
|
streamStatsModel = new StreamStatsModel(dock);
|
|
|
|
dock->setWidget(new StreamStatsWindow(streamStatsModel, dock));
|
2016-11-27 01:09:37 -06:00
|
|
|
dock->setWindowTitle(dock->widget()->windowTitle());
|
2016-11-24 10:14:38 -06:00
|
|
|
dock->setObjectName("streamStatsDock");
|
|
|
|
dock->setAttribute(Qt::WA_DeleteOnClose);
|
2016-11-27 01:09:37 -06:00
|
|
|
QDockWidget *statsDock = mainWindow->findChild<QDockWidget*>(
|
|
|
|
"statsDock");
|
2016-11-24 10:14:38 -06:00
|
|
|
mainWindow->addDockWidget(Qt::BottomDockWidgetArea, dock);
|
2020-12-26 23:46:39 -06:00
|
|
|
|
|
|
|
// Add stream stats tab to the immediate right of port-stats ...
|
2016-11-27 01:09:37 -06:00
|
|
|
mainWindow->tabifyDockWidget(statsDock, dock);
|
2020-12-26 23:46:39 -06:00
|
|
|
mainWindow->splitDockWidget(statsDock, dock, Qt::Horizontal);
|
|
|
|
|
|
|
|
// ... make it the currently visible tab ...
|
2016-11-27 01:09:37 -06:00
|
|
|
dock->show();
|
|
|
|
dock->raise();
|
2020-12-26 23:46:39 -06:00
|
|
|
|
|
|
|
// ... and set tab remove behaviour
|
|
|
|
// XXX: unfortunately, there's no direct way to get the TabBar
|
|
|
|
QList<QTabBar*> tabBars = mainWindow->findChildren<QTabBar*>();
|
|
|
|
foreach(QTabBar* tabBar, tabBars) {
|
|
|
|
if (tabBar->tabText(tabBar->currentIndex())
|
|
|
|
== dock->widget()->windowTitle())
|
|
|
|
tabBar->setSelectionBehaviorOnRemove(
|
|
|
|
QTabBar::SelectPreviousTab);
|
|
|
|
}
|
2016-11-24 10:14:38 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get stream stats for selected ports, portgroup by portgroup
|
|
|
|
for (int i = 0; i < portList.size(); i++)
|
|
|
|
{
|
|
|
|
PortGroup &pg = pgl->portGroupByIndex(portList.at(i).portGroupId);
|
|
|
|
if (pg.getStreamStats(&portList[i].portList)) {
|
|
|
|
connect(&pg,SIGNAL(streamStatsReceived(
|
|
|
|
quint32, const OstProto::StreamStatsList*)),
|
|
|
|
streamStatsModel, SLOT(appendStreamStatsList(
|
|
|
|
quint32, const OstProto::StreamStatsList*)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 11:50:07 -05:00
|
|
|
void PortStatsWindow::on_tbFilter_clicked()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
QList<uint> currentColumns, newColumns;
|
|
|
|
PortStatsFilterDialog dialog;
|
2015-05-07 08:26:32 -05:00
|
|
|
QAbstractItemModel *mdl = tvPortStats->model();
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
// create the input list for the filter dialog -
|
|
|
|
// list of logical-indexes ordered by their current visual indexes
|
2015-05-06 11:10:55 -05:00
|
|
|
for(int vi = 0; vi < mdl->columnCount(); vi++) {
|
2015-04-16 11:50:07 -05:00
|
|
|
int li = tvPortStats->horizontalHeader()->logicalIndex(vi);
|
|
|
|
if (!tvPortStats->isColumnHidden(li)) {
|
|
|
|
currentColumns.append(li);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return list from the filter dialog -
|
|
|
|
// list of logical-indexes ordered by their new visual indexes
|
2015-05-06 11:10:55 -05:00
|
|
|
newColumns = dialog.getItemList(&ok, mdl, Qt::Horizontal, currentColumns);
|
2015-04-16 11:50:07 -05:00
|
|
|
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
QHeaderView *hv = tvPortStats->horizontalHeader();
|
|
|
|
|
|
|
|
// hide/show sections first ...
|
2015-05-06 11:10:55 -05:00
|
|
|
for(int li = 0; li < mdl->columnCount(); li++)
|
2015-04-16 11:50:07 -05:00
|
|
|
tvPortStats->setColumnHidden(li, !newColumns.contains(li));
|
|
|
|
|
|
|
|
// ... then for the 'shown' columns, set the visual index
|
|
|
|
for(int vi = 0; vi < newColumns.size(); vi++)
|
|
|
|
hv->moveSection(hv->visualIndex(newColumns.at(vi)), vi);
|
|
|
|
}
|
|
|
|
}
|