2021-11-05 05:02:23 -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/>
|
|
|
|
*/
|
|
|
|
|
2021-11-06 03:51:40 -05:00
|
|
|
#ifndef _PORT_WIDGET_H
|
|
|
|
#define _PORT_WIDGET_H
|
2021-11-05 05:02:23 -05:00
|
|
|
|
2021-11-06 03:51:40 -05:00
|
|
|
#include "ui_portwidget.h"
|
2021-11-17 07:09:14 -06:00
|
|
|
#include <QModelIndex>
|
2021-11-05 05:02:23 -05:00
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class PortGroupList;
|
|
|
|
|
2021-11-06 03:51:40 -05:00
|
|
|
class PortWidget : public QWidget, private Ui::PortWidget
|
2021-11-05 05:02:23 -05:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-11-06 03:51:40 -05:00
|
|
|
PortWidget(QWidget *parent = 0);
|
|
|
|
~PortWidget();
|
2021-11-05 05:02:23 -05:00
|
|
|
|
|
|
|
void setPortGroupList(PortGroupList *portGroups);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void setCurrentPortIndex(const QModelIndex &portIndex);
|
|
|
|
|
|
|
|
private slots:
|
2021-11-06 03:51:40 -05:00
|
|
|
|
2021-11-05 05:02:23 -05:00
|
|
|
|
|
|
|
void on_startTx_clicked();
|
|
|
|
void on_stopTx_clicked();
|
2021-11-07 07:35:11 -06:00
|
|
|
void on_averageLoadPercent_editingFinished();
|
2021-11-05 05:02:23 -05:00
|
|
|
void on_averagePacketsPerSec_editingFinished();
|
|
|
|
void on_averageBitsPerSec_editingFinished();
|
|
|
|
|
2021-11-06 03:51:40 -05:00
|
|
|
void updatePortActions();
|
|
|
|
void updatePortRates();
|
|
|
|
|
2021-11-05 05:02:23 -05:00
|
|
|
private:
|
|
|
|
PortGroupList *plm{nullptr}; // FIXME: rename to portGroups_?
|
|
|
|
QModelIndex currentPortIndex_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|