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.
28 lines
479 B
28 lines
479 B
11 months ago
|
#ifndef WIFISETTINGSTAB_H
|
||
|
#define WIFISETTINGSTAB_H
|
||
|
|
||
|
#include "connectionsettingsengine.h"
|
||
|
#include <QWidget>
|
||
|
#include <NetworkManagerQt/Utils>
|
||
|
|
||
|
namespace Ui {
|
||
|
class WifiSettingsTab;
|
||
|
}
|
||
|
|
||
|
class WifiSettingsTab : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit WifiSettingsTab(QWidget *parent = nullptr);
|
||
|
~WifiSettingsTab();
|
||
|
|
||
|
QVariantMap readSettings();
|
||
|
void loadSettings(QVariantMap settings);
|
||
|
|
||
|
private:
|
||
|
Ui::WifiSettingsTab *ui;
|
||
|
};
|
||
|
|
||
|
#endif // WIFISETTINGSTAB_H
|