You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
501 B

#ifndef ETHERNETSETTINGSTAB_H
#define ETHERNETSETTINGSTAB_H
#include <QWidget>
namespace Ui {
class EthernetSettingsTab;
}
class EthernetSettingsTab : public QWidget
{
Q_OBJECT
public:
explicit EthernetSettingsTab(QWidget *parent = nullptr);
~EthernetSettingsTab();
QVariantMap readSettings();
void loadSettings(QVariantMap settings);
private slots:
void onLinkNegotiationChanged(int index);
private:
Ui::EthernetSettingsTab *ui;
};
#endif // ETHERNETSETTINGSTAB_H