* add a bunch of parents to dialogs works on #3651 * use game as parent instead * add more parents * fix create token dialog modality * add parent to game information window * replace a bunch of nullptrs with the magic of sed * add parent to tip of the day and counters * reorder game ptr * set parent for life counter * clangify
33 lines
644 B
C++
33 lines
644 B
C++
#ifndef DLG_EDITPASSWORD_H
|
|
#define DLG_EDITPASSWORD_H
|
|
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QCheckBox;
|
|
|
|
class DlgEditPassword : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DlgEditPassword(QWidget *parent = nullptr);
|
|
QString getOldPassword() const
|
|
{
|
|
return oldPasswordEdit->text();
|
|
}
|
|
QString getNewPassword() const
|
|
{
|
|
return newPasswordEdit->text();
|
|
}
|
|
private slots:
|
|
void actOk();
|
|
|
|
private:
|
|
QLabel *oldPasswordLabel, *newPasswordLabel, *newPasswordLabel2;
|
|
QLineEdit *oldPasswordEdit, *newPasswordEdit, *newPasswordEdit2;
|
|
};
|
|
|
|
#endif
|