OSCAR-code/oscar/newprofile.h

73 lines
1.7 KiB
C
Raw Permalink Normal View History

2014-08-17 12:56:05 +00:00
/* Create New Profile Header
*
* Copyright (c) 2019-2024 The OSCAR Team
* Copyright (C) 2011-2018 Mark Watkins
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
2011-10-01 12:54:20 +00:00
#ifndef NEWPROFILE_H
#define NEWPROFILE_H
#include <QDialog>
#include <QUrl>
2011-10-01 12:54:20 +00:00
namespace Ui {
class NewProfile;
2011-10-01 12:54:20 +00:00
}
/*! \class NewProfile
\author Mark Watkins
\brief Profile creation/editing wizard
*/
2011-10-01 12:54:20 +00:00
class NewProfile : public QDialog
{
Q_OBJECT
public:
explicit NewProfile(QWidget *parent = 0, const QString *user = 0);
2011-10-01 12:54:20 +00:00
~NewProfile();
//! \brief When used in edit mode, this skips the first page
2011-10-01 12:54:20 +00:00
void skipWelcomeScreen();
//! \brief Open profile named 'name' for editing, loading all it's content
2011-10-02 03:38:51 +00:00
void edit(const QString name);
private slots:
//! \brief Validate each step and move to the next page, saving at the end if requested.
2011-10-01 12:54:20 +00:00
void on_nextButton_clicked();
//! \brief Go back to the previous wizard page
2011-10-01 12:54:20 +00:00
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();
void on_heightCombo_currentIndexChanged(int index);
void on_textBrowser_anchorClicked(const QUrl &arg1);
void on_heightEdit_valueChanged(double height);
void on_heightEdit2_valueChanged(double inches);
private:
QString getIntroHTML();
2011-10-01 12:54:20 +00:00
Ui::NewProfile *ui;
bool m_editMode;
bool m_height_modified;
double m_tmp_height_cm;
2011-10-01 12:54:20 +00:00
int m_firstPage;
2011-10-02 03:38:51 +00:00
bool m_passwordHashed;
QString originalProfileName;
QString newProfileName;
2011-10-01 12:54:20 +00:00
};
#endif // NEWPROFILE_H