29 lines
872 B
C++
29 lines
872 B
C++
#ifndef DLG_EDITUSER_H
|
|
#define DLG_EDITUSER_H
|
|
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
#include <QComboBox>
|
|
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QCheckBox;
|
|
|
|
class DlgEditUser : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
DlgEditUser(QWidget *parent = 0, QString email = QString(), QString country = QString(), QString realName = QString());
|
|
QString getEmail() const { return emailEdit->text(); }
|
|
int getGender() const { return -1; } //This will return GenderUnknown for protocol purposes.
|
|
QString getCountry() const { return countryEdit->currentIndex() == 0 ? "" : countryEdit->currentText(); }
|
|
QString getRealName() const { return realnameEdit->text(); }
|
|
private slots:
|
|
void actOk();
|
|
void actCancel();
|
|
private:
|
|
QLabel *emailLabel, *countryLabel, *realnameLabel;
|
|
QLineEdit *emailEdit, *realnameEdit;
|
|
QComboBox *countryEdit;
|
|
};
|
|
|
|
#endif
|