2014-08-17 12:56:05 +00:00
|
|
|
/* Create New Profile Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
#ifndef NEWPROFILE_H
|
|
|
|
#define NEWPROFILE_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2014-04-17 04:56:04 +00:00
|
|
|
#include <QUrl>
|
2011-10-01 12:54:20 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
2014-04-17 05:52:25 +00:00
|
|
|
class NewProfile;
|
2011-10-01 12:54:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
/*! \class NewProfile
|
2024-02-01 00:14:19 +00:00
|
|
|
\author Mark Watkins
|
2011-12-18 16:39:36 +00:00
|
|
|
\brief Profile creation/editing wizard
|
|
|
|
*/
|
2011-10-01 12:54:20 +00:00
|
|
|
class NewProfile : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2017-09-02 12:01:01 +00:00
|
|
|
explicit NewProfile(QWidget *parent = 0, const QString *user = 0);
|
2011-10-01 12:54:20 +00:00
|
|
|
~NewProfile();
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief When used in edit mode, this skips the first page
|
2011-10-01 12:54:20 +00:00
|
|
|
void skipWelcomeScreen();
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \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);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private slots:
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \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();
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \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();
|
|
|
|
|
2011-11-28 12:03:43 +00:00
|
|
|
void on_heightCombo_currentIndexChanged(int index);
|
|
|
|
|
2014-04-15 04:47:23 +00:00
|
|
|
void on_textBrowser_anchorClicked(const QUrl &arg1);
|
2023-09-25 10:43:11 +00:00
|
|
|
void on_heightEdit_valueChanged(double height);
|
|
|
|
void on_heightEdit2_valueChanged(double inches);
|
2014-04-15 04:47:23 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private:
|
2014-04-15 04:47:23 +00:00
|
|
|
QString getIntroHTML();
|
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
Ui::NewProfile *ui;
|
|
|
|
bool m_editMode;
|
2023-09-25 10:43:11 +00:00
|
|
|
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;
|
2023-12-02 00:56:31 +00:00
|
|
|
QString originalProfileName;
|
|
|
|
QString newProfileName;
|
2011-10-01 12:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NEWPROFILE_H
|