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.
38 lines
726 B
38 lines
726 B
#ifndef WIFISETTINGS_H
|
|
#define WIFISETTINGS_H
|
|
|
|
#include "connectionsettingsengine.h"
|
|
#include "generalsettingstab.h"
|
|
#include "security802_1xtab.h"
|
|
#include "ipv4settingstab.h"
|
|
#include "ipv6settingstab.h"
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class GenericSettings;
|
|
}
|
|
|
|
class WifiSettings : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WifiSettings(QString connUuidStr, QWidget *parent = nullptr);
|
|
~WifiSettings();
|
|
|
|
private slots:
|
|
void onCancelButtonClicked();
|
|
void onSaveButtonClicked();
|
|
|
|
private:
|
|
Ui::GenericSettings *ui;
|
|
|
|
QString targetConnUuidStr;
|
|
GeneralSettingsTab *generalSettingsTab;
|
|
Ipv4SettingsTab *ipv4SettingsTab;
|
|
Ipv6SettingsTab *ipv6SettingsTab;
|
|
};
|
|
|
|
#endif // WIFISETTINGS_H
|