mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
29 lines
486 B
C++
29 lines
486 B
C++
#ifndef CHALLENGEDIALOG_H
|
|
#define CHALLENGEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class ChallengeDialog;
|
|
}
|
|
|
|
class ChallengeDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ChallengeDialog(QWidget *parent = nullptr);
|
|
~ChallengeDialog();
|
|
|
|
void setMessage(const QString &message);
|
|
const QString getChallenge();
|
|
|
|
private slots:
|
|
void on_challengeInput_textChanged(const QString &arg1);
|
|
|
|
private:
|
|
Ui::ChallengeDialog *ui;
|
|
};
|
|
|
|
#endif // CHALLENGEDIALOG_H
|