You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
577 B
C++
34 lines
577 B
C++
#ifndef USERFORM_H
|
|
#define USERFORM_H
|
|
|
|
#include <QWidget>
|
|
#include "../autoform.h"
|
|
#include "../data/core-data.h"
|
|
|
|
namespace Ui {
|
|
class UserForm;
|
|
}
|
|
|
|
class UserForm : public AutoForm<User>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit UserForm(QWidget *parent = 0);
|
|
~UserForm();
|
|
|
|
private:
|
|
Ui::UserForm *ui;
|
|
bool m_passChanged;
|
|
|
|
// AutoForm interface
|
|
protected:
|
|
void bindOtherToUi();
|
|
bool bindOtherToData();
|
|
private slots:
|
|
void on_password_textChanged(const QString &arg1);
|
|
void on_retypePassword_textChanged(const QString &arg1);
|
|
};
|
|
|
|
#endif // USERFORM_H
|