mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 15:26:09 +00:00
18 lines
331 B
C++
18 lines
331 B
C++
#ifndef POPUPMANAGER_H
|
|
#define POPUPMANAGER_H
|
|
|
|
#include <QtWidgets>
|
|
|
|
class popupmanager
|
|
{
|
|
public:
|
|
static void displayPinDialog(QString pin, QWidget* parent);
|
|
static void closePinDialog();
|
|
static QString getHostnameDialog(QWidget* parent);
|
|
|
|
private slots:
|
|
static QMessageBox *pinMsgBox;
|
|
};
|
|
|
|
#endif // POPUPMANAGER_H
|