2023-10-23 21:50:26 -05:00
|
|
|
#ifndef NETWORKCREATOR_H
|
|
|
|
#define NETWORKCREATOR_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class NetworkCreator;
|
|
|
|
}
|
|
|
|
|
|
|
|
class NetworkCreator : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NetworkCreator(QWidget *parent = nullptr);
|
|
|
|
~NetworkCreator();
|
|
|
|
|
2023-11-28 23:32:58 -06:00
|
|
|
private slots:
|
|
|
|
void onOkButtonClicked();
|
|
|
|
void onCancelButtonClicked();
|
|
|
|
void createReplyFinished();
|
|
|
|
|
2023-10-23 21:50:26 -05:00
|
|
|
private:
|
|
|
|
Ui::NetworkCreator *ui;
|
2023-11-28 23:32:58 -06:00
|
|
|
QDialog *dialogWindow;
|
2023-10-23 21:50:26 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NETWORKCREATOR_H
|