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.
|
|
|
#ifndef NETWORKCREATOR_H
|
|
|
|
#define NETWORKCREATOR_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QUuid>
|
|
|
|
#include <NetworkManagerQt/Settings>
|
|
|
|
#include <NetworkManagerQt/ConnectionSettings>
|
|
|
|
#include <NetworkManagerQt/WiredSetting>
|
|
|
|
#include <NetworkManagerQt/WirelessSetting>
|
|
|
|
#include <QDBusPendingReply>
|
|
|
|
#include <QDBusPendingCallWatcher>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class NetworkCreator;
|
|
|
|
}
|
|
|
|
|
|
|
|
class NetworkCreator : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NetworkCreator(QWidget *parent = nullptr);
|
|
|
|
~NetworkCreator();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onOkButtonClicked();
|
|
|
|
void onCancelButtonClicked();
|
|
|
|
void createReplyFinished();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::NetworkCreator *ui;
|
|
|
|
QDialog *dialogWindow;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NETWORKCREATOR_H
|