2011-10-01 12:54:20 +00:00
|
|
|
#ifndef NEWPROFILE_H
|
|
|
|
#define NEWPROFILE_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class NewProfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
class NewProfile : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit NewProfile(QWidget *parent = 0);
|
|
|
|
~NewProfile();
|
|
|
|
void skipWelcomeScreen();
|
2011-10-02 03:38:51 +00:00
|
|
|
void edit(const QString name);
|
2011-10-01 12:54:20 +00:00
|
|
|
private slots:
|
|
|
|
void on_nextButton_clicked();
|
|
|
|
|
|
|
|
void on_backButton_clicked();
|
|
|
|
|
|
|
|
void on_cpapModeCombo_activated(int index);
|
|
|
|
|
|
|
|
void on_agreeCheckbox_clicked(bool checked);
|
|
|
|
|
2011-10-02 03:38:51 +00:00
|
|
|
void on_passwordEdit1_editingFinished();
|
|
|
|
|
|
|
|
void on_passwordEdit2_editingFinished();
|
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
private:
|
|
|
|
Ui::NewProfile *ui;
|
|
|
|
bool m_editMode;
|
|
|
|
int m_firstPage;
|
2011-10-02 03:38:51 +00:00
|
|
|
bool m_passwordHashed;
|
2011-10-01 12:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NEWPROFILE_H
|