mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 23:35:55 +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
|