mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-14 13:22:27 +00:00
19 lines
320 B
C
19 lines
320 B
C
|
#ifndef POPUPMANAGER_H
|
||
|
#define POPUPMANAGER_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class popupmanager
|
||
|
{
|
||
|
public:
|
||
|
popupmanager();
|
||
|
static void displayPinDialog(QString pin);
|
||
|
static void closePinDialog();
|
||
|
static QString getHostnameDialog();
|
||
|
|
||
|
private slots:
|
||
|
QMessageBox *pinMsgBox = nullptr;
|
||
|
};
|
||
|
|
||
|
#endif // POPUPMANAGER_H
|