2014-04-09 21:01:57 +00:00
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim : set ts = 8 sts = 4 et sw = 4 tw = 99 :
*
* Create New Profile Implementation
*
* Copyright ( c ) 2011 - 2014 Mark Watkins < jedimark @ users . sourceforge . net >
*
* 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 Linux
* distribution for more details . */
2011-11-26 04:00:31 +00:00
2011-10-01 12:54:20 +00:00
# include <QMessageBox>
2011-11-28 12:03:43 +00:00
# include <QFile>
# include <QTextStream>
2011-10-01 12:54:20 +00:00
# include <QCryptographicHash>
2012-05-16 20:28:09 +00:00
# include <QFileDialog>
2014-04-15 04:47:23 +00:00
# include <QFile>
# include <QDesktopServices>
2012-05-16 20:28:09 +00:00
# include <QSettings>
2011-10-01 12:54:20 +00:00
# include "SleepLib/profiles.h"
# include "newprofile.h"
# include "ui_newprofile.h"
2011-12-02 13:48:05 +00:00
# include "mainwindow.h"
extern MainWindow * mainwin ;
2011-10-01 12:54:20 +00:00
2011-12-21 12:47:47 +00:00
2011-10-01 12:54:20 +00:00
NewProfile : : NewProfile ( QWidget * parent ) :
QDialog ( parent ) ,
ui ( new Ui : : NewProfile )
{
ui - > setupUi ( this ) ;
ui - > userNameEdit - > setText ( getUserName ( ) ) ;
QLocale locale = QLocale : : system ( ) ;
QString shortformat = locale . dateFormat ( QLocale : : ShortFormat ) ;
if ( ! shortformat . toLower ( ) . contains ( " yyyy " ) ) {
shortformat . replace ( " yy " , " yyyy " ) ;
}
ui - > dobEdit - > setDisplayFormat ( shortformat ) ;
ui - > dateDiagnosedEdit - > setDisplayFormat ( shortformat ) ;
m_firstPage = 0 ;
ui - > backButton - > setEnabled ( false ) ;
ui - > nextButton - > setEnabled ( false ) ;
ui - > stackedWidget - > setCurrentIndex ( 0 ) ;
on_cpapModeCombo_activated ( 0 ) ;
2011-10-02 03:38:51 +00:00
m_passwordHashed = false ;
2011-11-28 12:03:43 +00:00
ui - > heightEdit2 - > setVisible ( false ) ;
ui - > heightEdit - > setDecimals ( 2 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_CM ) ;
2011-11-28 12:03:43 +00:00
{ // process countries list
QFile f ( " :/docs/countries.txt " ) ;
f . open ( QFile : : ReadOnly ) ;
QTextStream cnt ( & f ) ;
QString a ;
ui - > countryCombo - > clear ( ) ;
2011-12-18 16:39:36 +00:00
ui - > countryCombo - > addItem ( tr ( " Select Country " ) ) ;
2011-11-28 12:03:43 +00:00
do {
a = cnt . readLine ( ) ;
if ( a . isEmpty ( ) ) break ;
ui - > countryCombo - > addItem ( a ) ;
} while ( 1 ) ;
f . close ( ) ;
}
{ // timezone list
QFile f ( " :/docs/tz.txt " ) ;
f . open ( QFile : : ReadOnly ) ;
QTextStream cnt ( & f ) ;
QString a ;
ui - > timezoneCombo - > clear ( ) ;
//ui->countryCombo->addItem("Select TimeZone");
do {
a = cnt . readLine ( ) ;
if ( a . isEmpty ( ) ) break ;
QStringList l ;
l = a . split ( " = " ) ;
ui - > timezoneCombo - > addItem ( l [ 1 ] , l [ 0 ] ) ;
} while ( 1 ) ;
f . close ( ) ;
}
2011-12-22 10:29:12 +00:00
ui - > AppTitle - > setText ( " SleepyHead v " + VersionString ) ;
ui - > releaseStatus - > setText ( ReleaseStatus ) ;
2011-11-28 12:03:43 +00:00
2014-04-15 04:47:23 +00:00
ui - > textBrowser - > setHtml ( getIntroHTML ( ) ) ;
2011-10-01 12:54:20 +00:00
}
NewProfile : : ~ NewProfile ( )
{
delete ui ;
}
2014-04-15 04:47:23 +00:00
QString NewProfile : : getIntroHTML ( )
{
return " <html> "
" <body> "
" <div align=center><h1> " + tr ( " Welcome to SleepyHead " ) + " </h1></div> "
" <p> " + tr ( " This software is being designed to assist you in reviewing the data produced by your CPAP machines and related equipment. " ) + " </p> "
" <p> " + tr ( " SleepyHead has been released freely under the <a href='qrc:/COPYING'>GNU Public License</a>, and comes with no warranty, and without ANY claims to fitness for any purpose. " ) + " </p> "
" <div align=center><font color= \" red \" ><h2> " + tr ( " PLEASE READ CAREFULLY " ) + " </h2></font></div> "
" <p> " + tr ( " SleepyHead is intended merely as a data viewer, and definitely not a substitute for competent medical guidance from your Doctor. " ) + " </p> "
" <p> " + tr ( " Accuracy of any data displayed is not and can not be guaranteed. " ) + " </p> "
" <p> " + tr ( " Any reports generated are for PERSONAL USE ONLY, and NOT IN ANY WAY fit for compliance or medical diagnostic purposes. " ) + " </p> "
" <p> " + tr ( " The author will not be held liable for <u>anything</u> related to the use or misuse of this software. " ) + " </p> "
" <div align=center> "
" <p><b><font size=+1> " + tr ( " Use of this software is entirely at your own risk. " ) + " </font></b></p> "
" <p><i> " + tr ( " SleepyHead is copyright ©2011-2014 Mark Watkins " ) + " <i></p> "
" </div> "
" </body> "
" </html> " ;
}
2011-10-01 12:54:20 +00:00
void NewProfile : : on_nextButton_clicked ( )
{
2012-05-16 20:28:09 +00:00
const QString xmlext = " .xml " ;
2013-10-18 04:56:44 +00:00
QSettings settings ( getDeveloperName ( ) , getAppName ( ) ) ;
2011-10-01 12:54:20 +00:00
int index = ui - > stackedWidget - > currentIndex ( ) ;
switch ( index ) {
2012-05-16 20:28:09 +00:00
case 0 :
2013-10-16 12:40:38 +00:00
if ( ! ui - > agreeCheckbox - > isChecked ( ) )
return ;
2012-05-16 20:28:09 +00:00
// Reload Preferences object
break ;
2011-10-01 12:54:20 +00:00
case 1 :
if ( ui - > userNameEdit - > text ( ) . isEmpty ( ) ) {
2011-12-21 12:47:47 +00:00
QMessageBox : : information ( this , STR_MESSAGE_ERROR , tr ( " Empty Username " ) , QMessageBox : : Ok ) ;
2011-10-01 12:54:20 +00:00
return ;
}
if ( ui - > genderCombo - > currentIndex ( ) = = 0 ) {
2011-12-18 16:39:36 +00:00
//QMessageBox::information(this,tr("Notice"),tr("You did not specify Gender."),QMessageBox::Ok);
2011-10-01 12:54:20 +00:00
}
if ( ui - > passwordGroupBox - > isChecked ( ) ) {
if ( ui - > passwordEdit1 - > text ( ) ! = ui - > passwordEdit2 - > text ( ) ) {
2011-12-21 12:47:47 +00:00
QMessageBox : : information ( this , STR_MESSAGE_ERROR , tr ( " Passwords don't match " ) , QMessageBox : : Ok ) ;
2011-10-01 12:54:20 +00:00
return ;
}
if ( ui - > passwordEdit1 - > text ( ) . isEmpty ( ) )
ui - > passwordGroupBox - > setChecked ( false ) ;
}
break ;
case 2 :
break ;
case 3 :
break ;
default :
break ;
}
int max_pages = ui - > stackedWidget - > count ( ) - 1 ;
if ( index < max_pages ) {
index + + ;
ui - > stackedWidget - > setCurrentIndex ( index ) ;
} else {
// Finish button clicked.
2011-12-21 17:00:19 +00:00
QString username = ui - > userNameEdit - > text ( ) ;
2011-12-18 16:39:36 +00:00
if ( QMessageBox : : question ( this , tr ( " Profile Changes " ) , tr ( " Accept and save this information? " ) , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2011-12-21 17:00:19 +00:00
Profile * profile = Profiles : : Get ( username ) ;
2011-10-01 12:54:20 +00:00
if ( ! profile ) { // No profile, create one.
2011-12-21 17:00:19 +00:00
profile = Profiles : : Create ( username ) ;
2011-10-01 12:54:20 +00:00
}
Profile & prof = * profile ;
2011-12-21 12:47:47 +00:00
profile - > user - > setFirstName ( ui - > firstNameEdit - > text ( ) ) ;
profile - > user - > setLastName ( ui - > lastNameEdit - > text ( ) ) ;
profile - > user - > setDOB ( ui - > dobEdit - > date ( ) ) ;
profile - > user - > setEmail ( ui - > emailEdit - > text ( ) ) ;
profile - > user - > setPhone ( ui - > phoneEdit - > text ( ) ) ;
profile - > user - > setAddress ( ui - > addressEdit - > toPlainText ( ) ) ;
2011-10-01 12:54:20 +00:00
if ( ui - > passwordGroupBox - > isChecked ( ) ) {
2011-10-02 03:38:51 +00:00
if ( ! m_passwordHashed ) {
2011-12-21 12:47:47 +00:00
profile - > user - > setPassword ( ui - > passwordEdit1 - > text ( ) . toUtf8 ( ) ) ;
2011-10-02 03:38:51 +00:00
}
} else {
2011-12-21 12:47:47 +00:00
2012-01-05 04:37:22 +00:00
prof . Erase ( STR_UI_Password ) ;
2011-10-01 12:54:20 +00:00
}
2011-12-21 12:47:47 +00:00
profile - > user - > setGender ( ( Gender ) ui - > genderCombo - > currentIndex ( ) ) ;
profile - > cpap - > setDateDiagnosed ( ui - > dateDiagnosedEdit - > date ( ) ) ;
profile - > cpap - > setUntreatedAHI ( ui - > untreatedAHIEdit - > value ( ) ) ;
profile - > cpap - > setMode ( ( CPAPMode ) ui - > cpapModeCombo - > currentIndex ( ) ) ;
profile - > cpap - > setMinPressure ( ui - > minPressureEdit - > value ( ) ) ;
profile - > cpap - > setMaxPressure ( ui - > maxPressureEdit - > value ( ) ) ;
profile - > cpap - > setNotes ( ui - > cpapNotes - > toPlainText ( ) ) ;
profile - > doctor - > setName ( ui - > doctorNameEdit - > text ( ) ) ;
profile - > doctor - > setPracticeName ( ui - > doctorPracticeEdit - > text ( ) ) ;
profile - > doctor - > setAddress ( ui - > doctorAddressEdit - > toPlainText ( ) ) ;
profile - > doctor - > setPhone ( ui - > doctorPhoneEdit - > text ( ) ) ;
profile - > doctor - > setEmail ( ui - > doctorEmailEdit - > text ( ) ) ;
2012-01-01 17:10:37 +00:00
profile - > doctor - > setPatientID ( ui - > doctorPatientIDEdit - > text ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > user - > setTimeZone ( ui - > timezoneCombo - > itemData ( ui - > timezoneCombo - > currentIndex ( ) ) . toString ( ) ) ;
profile - > user - > setCountry ( ui - > countryCombo - > currentText ( ) ) ;
profile - > user - > setDaylightSaving ( ui - > DSTcheckbox - > isChecked ( ) ) ;
UnitSystem us ;
if ( ui - > heightCombo - > currentIndex ( ) = = 0 ) us = US_Metric ;
else if ( ui - > heightCombo - > currentIndex ( ) = = 1 ) us = US_Archiac ;
else us = US_Metric ;
if ( profile - > general - > unitSystem ( ) ! = us ) {
profile - > general - > setUnitSystem ( us ) ;
2011-12-03 05:10:23 +00:00
if ( mainwin & & mainwin - > getDaily ( ) ) mainwin - > getDaily ( ) - > UnitsChanged ( ) ;
2011-12-02 13:48:05 +00:00
}
2011-12-21 12:47:47 +00:00
2011-11-28 12:03:43 +00:00
double v = 0 ;
2011-12-21 12:47:47 +00:00
if ( us = = US_Archiac ) {
2011-11-28 12:03:43 +00:00
// convert to metric
v = ( ui - > heightEdit - > value ( ) * 30.48 ) ;
v + = ui - > heightEdit2 - > value ( ) * 2.54 ;
} else {
v = ui - > heightEdit - > value ( ) ;
}
2011-12-21 12:47:47 +00:00
profile - > user - > setHeight ( v ) ;
2011-10-01 12:54:20 +00:00
2011-12-21 17:00:19 +00:00
//profile->user->setUserName(username);
PREF [ STR_GEN_Profile ] = username ;
2011-10-01 12:54:20 +00:00
this - > accept ( ) ;
}
}
if ( index > = max_pages ) {
2011-12-18 16:39:36 +00:00
ui - > nextButton - > setText ( tr ( " &Finish " ) ) ;
2011-10-01 12:54:20 +00:00
} else {
2011-12-18 16:39:36 +00:00
ui - > nextButton - > setText ( tr ( " &Next " ) ) ;
2011-10-01 12:54:20 +00:00
}
ui - > backButton - > setEnabled ( true ) ;
}
void NewProfile : : on_backButton_clicked ( )
{
2011-12-18 16:39:36 +00:00
ui - > nextButton - > setText ( tr ( " &Next " ) ) ;
2011-10-01 12:54:20 +00:00
if ( ui - > stackedWidget - > currentIndex ( ) > m_firstPage ) {
ui - > stackedWidget - > setCurrentIndex ( ui - > stackedWidget - > currentIndex ( ) - 1 ) ;
}
if ( ui - > stackedWidget - > currentIndex ( ) = = m_firstPage ) {
ui - > backButton - > setEnabled ( false ) ;
} else {
ui - > backButton - > setEnabled ( true ) ;
}
}
void NewProfile : : on_cpapModeCombo_activated ( int index )
{
if ( index = = 0 ) {
ui - > maxPressureEdit - > setVisible ( false ) ;
} else {
ui - > maxPressureEdit - > setVisible ( true ) ;
}
}
void NewProfile : : on_agreeCheckbox_clicked ( bool checked )
{
ui - > nextButton - > setEnabled ( checked ) ;
}
void NewProfile : : skipWelcomeScreen ( )
{
ui - > agreeCheckbox - > setChecked ( true ) ;
ui - > stackedWidget - > setCurrentIndex ( m_firstPage = 1 ) ;
ui - > backButton - > setEnabled ( false ) ;
ui - > nextButton - > setEnabled ( true ) ;
}
2011-10-02 03:38:51 +00:00
void NewProfile : : edit ( const QString name )
{
skipWelcomeScreen ( ) ;
Profile * profile = Profiles : : Get ( name ) ;
if ( ! profile ) {
2011-12-19 15:33:01 +00:00
profile = Profiles : : Create ( name ) ;
2011-10-02 03:38:51 +00:00
}
ui - > userNameEdit - > setText ( name ) ;
ui - > userNameEdit - > setReadOnly ( true ) ;
2011-12-21 12:47:47 +00:00
ui - > firstNameEdit - > setText ( profile - > user - > firstName ( ) ) ;
ui - > lastNameEdit - > setText ( profile - > user - > lastName ( ) ) ;
2012-01-05 04:37:22 +00:00
if ( profile - > contains ( STR_UI_Password ) & & ! profile - > p_preferences [ STR_UI_Password ] . toString ( ) . isEmpty ( ) ) {
2011-10-02 03:38:51 +00:00
// leave the password box blank..
2011-12-21 12:47:47 +00:00
QString a = " ****** " ;
ui - > passwordEdit1 - > setText ( a ) ;
ui - > passwordEdit2 - > setText ( a ) ;
2011-10-02 03:38:51 +00:00
ui - > passwordGroupBox - > setChecked ( true ) ;
m_passwordHashed = true ;
}
2011-12-21 12:47:47 +00:00
ui - > dobEdit - > setDate ( profile - > user - > DOB ( ) ) ;
if ( profile - > user - > gender ( ) = = Male ) {
2011-10-02 03:38:51 +00:00
ui - > genderCombo - > setCurrentIndex ( 1 ) ;
2011-12-21 12:47:47 +00:00
} else if ( profile - > user - > gender ( ) = = Female ) {
2011-10-02 03:38:51 +00:00
ui - > genderCombo - > setCurrentIndex ( 2 ) ;
} else ui - > genderCombo - > setCurrentIndex ( 0 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setValue ( profile - > user - > height ( ) ) ;
ui - > addressEdit - > setText ( profile - > user - > address ( ) ) ;
ui - > emailEdit - > setText ( profile - > user - > email ( ) ) ;
ui - > phoneEdit - > setText ( profile - > user - > phone ( ) ) ;
ui - > dateDiagnosedEdit - > setDate ( profile - > cpap - > dateDiagnosed ( ) ) ;
2011-10-02 03:38:51 +00:00
ui - > cpapNotes - > clear ( ) ;
2011-12-21 12:47:47 +00:00
ui - > cpapNotes - > appendPlainText ( profile - > cpap - > notes ( ) ) ;
ui - > minPressureEdit - > setValue ( profile - > cpap - > minPressure ( ) ) ;
ui - > maxPressureEdit - > setValue ( profile - > cpap - > maxPressure ( ) ) ;
ui - > untreatedAHIEdit - > setValue ( profile - > cpap - > untreatedAHI ( ) ) ;
ui - > cpapModeCombo - > setCurrentIndex ( ( int ) profile - > cpap - > mode ( ) ) ;
ui - > doctorNameEdit - > setText ( profile - > doctor - > name ( ) ) ;
ui - > doctorPracticeEdit - > setText ( profile - > doctor - > practiceName ( ) ) ;
ui - > doctorPhoneEdit - > setText ( profile - > doctor - > phone ( ) ) ;
ui - > doctorEmailEdit - > setText ( profile - > doctor - > email ( ) ) ;
ui - > doctorAddressEdit - > setText ( profile - > doctor - > address ( ) ) ;
2012-01-01 17:10:37 +00:00
ui - > doctorPatientIDEdit - > setText ( profile - > doctor - > patientID ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > DSTcheckbox - > setChecked ( profile - > user - > daylightSaving ( ) ) ;
int i = ui - > timezoneCombo - > findData ( profile - > user - > timeZone ( ) ) ;
2011-11-28 12:03:43 +00:00
ui - > timezoneCombo - > setCurrentIndex ( i ) ;
2011-12-21 12:47:47 +00:00
i = ui - > countryCombo - > findText ( profile - > user - > country ( ) ) ;
2011-11-28 12:03:43 +00:00
ui - > countryCombo - > setCurrentIndex ( i ) ;
2011-12-21 12:47:47 +00:00
UnitSystem us = profile - > general - > unitSystem ( ) ;
i = ( int ) us - 1 ;
2011-11-28 12:03:43 +00:00
if ( i < 0 ) i = 0 ;
ui - > heightCombo - > setCurrentIndex ( i ) ;
2011-12-21 12:47:47 +00:00
double v = profile - > user - > height ( ) ;
2011-11-28 12:03:43 +00:00
2011-12-21 12:47:47 +00:00
if ( us = = US_Archiac ) { // evil non-metric
2011-11-28 12:03:43 +00:00
int ti = v / 2.54 ;
int feet = ti / 12 ;
int inches = ti % 12 ;
ui - > heightEdit - > setValue ( feet ) ;
ui - > heightEdit2 - > setValue ( inches ) ;
ui - > heightEdit2 - > setVisible ( true ) ;
ui - > heightEdit - > setDecimals ( 0 ) ;
ui - > heightEdit2 - > setDecimals ( 0 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_FOOT ) ; // foot
ui - > heightEdit2 - > setSuffix ( STR_UNIT_INCH ) ; // inches
2011-11-28 12:03:43 +00:00
} else { // good wholesome metric
ui - > heightEdit - > setValue ( v ) ;
ui - > heightEdit2 - > setVisible ( false ) ;
ui - > heightEdit - > setDecimals ( 2 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_CM ) ;
2011-11-28 12:03:43 +00:00
}
2011-10-02 03:38:51 +00:00
}
void NewProfile : : on_passwordEdit1_editingFinished ( )
{
m_passwordHashed = false ;
}
void NewProfile : : on_passwordEdit2_editingFinished ( )
{
m_passwordHashed = false ;
}
2011-11-28 12:03:43 +00:00
void NewProfile : : on_heightCombo_currentIndexChanged ( int index )
{
if ( index = = 0 ) {
//metric
ui - > heightEdit2 - > setVisible ( false ) ;
ui - > heightEdit - > setDecimals ( 2 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_CM ) ;
2011-11-28 12:03:43 +00:00
double v = ui - > heightEdit - > value ( ) * 30.48 ;
v + = ui - > heightEdit2 - > value ( ) * 2.54 ;
ui - > heightEdit - > setValue ( v ) ;
} else { //evil
ui - > heightEdit - > setDecimals ( 0 ) ;
ui - > heightEdit2 - > setDecimals ( 0 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_FOOT ) ;
2011-11-28 12:03:43 +00:00
ui - > heightEdit2 - > setVisible ( true ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit2 - > setSuffix ( STR_UNIT_INCH ) ;
2011-11-28 12:03:43 +00:00
int v = ui - > heightEdit - > value ( ) / 2.54 ;
int feet = v / 12 ;
int inches = v % 12 ;
ui - > heightEdit - > setValue ( feet ) ;
ui - > heightEdit2 - > setValue ( inches ) ;
}
}
2014-04-15 04:47:23 +00:00
void NewProfile : : on_textBrowser_anchorClicked ( const QUrl & arg1 )
{
QDialog * dlg = new QDialog ( this ) ;
dlg - > setMinimumWidth ( 600 ) ;
dlg - > setMinimumHeight ( 500 ) ;
QVBoxLayout * layout = new QVBoxLayout ( ) ;
dlg - > setLayout ( layout ) ;
QTextBrowser * browser = new QTextBrowser ( this ) ;
dlg - > layout ( ) - > addWidget ( browser ) ;
QPushButton * button = new QPushButton ( tr ( " &Close this window " ) , browser ) ;
QFile f ( arg1 . toString ( ) . replace ( " qrc: " , " : " ) ) ;
f . open ( QIODevice : : ReadOnly ) ;
QTextStream ts ( & f ) ;
QString text = ts . readAll ( ) ;
connect ( button , SIGNAL ( clicked ( ) ) , dlg , SLOT ( close ( ) ) ) ;
dlg - > layout ( ) - > addWidget ( button ) ;
browser - > setPlainText ( text ) ;
dlg - > exec ( ) ;
delete dlg ;
}