mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-14 10:04:46 -07:00
* Regroup a whole bunch of files. Took 1 hour 38 minutes * Reorder the structure. Took 15 minutes * Link some more things. Took 18 minutes * More links. Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/**
|
|
* @file dlg_forgot_password_reset.h
|
|
* @ingroup AccountDialogs
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef DLG_FORGOTPASSWORDRESET_H
|
|
#define DLG_FORGOTPASSWORDRESET_H
|
|
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QCheckBox;
|
|
|
|
class DlgForgotPasswordReset : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DlgForgotPasswordReset(QWidget *parent = nullptr);
|
|
QString getHost() const
|
|
{
|
|
return hostEdit->text();
|
|
}
|
|
int getPort() const
|
|
{
|
|
return portEdit->text().toInt();
|
|
}
|
|
QString getPlayerName() const
|
|
{
|
|
return playernameEdit->text();
|
|
}
|
|
QString getToken() const
|
|
{
|
|
return tokenEdit->text();
|
|
}
|
|
QString getPassword() const
|
|
{
|
|
return newpasswordEdit->text();
|
|
}
|
|
private slots:
|
|
void actOk();
|
|
|
|
private:
|
|
QLabel *infoLabel, *hostLabel, *portLabel, *playernameLabel, *tokenLabel, *newpasswordLabel,
|
|
*newpasswordverifyLabel;
|
|
QLineEdit *hostEdit, *portEdit, *playernameEdit, *tokenEdit, *newpasswordEdit, *newpasswordverifyEdit;
|
|
};
|
|
|
|
#endif
|