mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-11 06:04:21 +00:00
18 lines
345 B
C++
18 lines
345 B
C++
#ifndef POPUPMANAGER_H
|
|
#define POPUPMANAGER_H
|
|
|
|
#include <QtWidgets>
|
|
|
|
class popupmanager
|
|
{
|
|
public:
|
|
popupmanager();
|
|
static void displayPinDialog(QString pin, QWidget* parent);
|
|
static void closePinDialog();
|
|
static QString getHostnameDialog(QWidget* parent);
|
|
|
|
private:
|
|
static QMessageBox *pinMsgBox;
|
|
};
|
|
|
|
#endif // POPUPMANAGER_H
|