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.
installer-prompt/src/connectionprogressdialog.h

27 lines
508 B

#ifndef CONNECTIONPROGRESSDIALOG_H
#define CONNECTIONPROGRESSDIALOG_H
#include <QDialog>
namespace Ui {
class ConnectionProgressDialog;
}
class ConnectionProgressDialog : public QDialog
{
Q_OBJECT
public:
explicit ConnectionProgressDialog(QWidget *parent = nullptr);
~ConnectionProgressDialog();
void setNetworkName(QString name);
protected slots:
void closeEvent(QCloseEvent *event) override;
private:
Ui::ConnectionProgressDialog *ui;
};
#endif // CONNECTIONPROGRESSDIALOG_H