2020-01-15 18:18:00 +00:00
/* Create New Profile Implementation
2014-04-09 21:01:57 +00:00
*
2021-11-02 20:34:12 +00:00
* Copyright ( c ) 2019 - 2022 The OSCAR Team
2018-03-28 07:10:52 +00:00
* Copyright ( c ) 2011 - 2018 Mark Watkins < mark @ jedimark . net >
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
# 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"
2020-01-15 21:34:28 +00:00
# include "version.h"
2011-12-02 13:48:05 +00:00
extern MainWindow * mainwin ;
2011-10-01 12:54:20 +00:00
2011-12-21 12:47:47 +00:00
2017-09-02 12:01:01 +00:00
NewProfile : : NewProfile ( QWidget * parent , const QString * user ) :
2019-03-10 16:03:19 +00:00
QDialog ( parent , Qt : : WindowTitleHint | Qt : : WindowCloseButtonHint ) ,
2011-10-01 12:54:20 +00:00
ui ( new Ui : : NewProfile )
{
ui - > setupUi ( this ) ;
2017-09-02 12:01:01 +00:00
if ( user )
ui - > userNameEdit - > setText ( * user ) ;
2014-07-02 05:33:27 +00:00
// ui->userNameEdit->setText(getUserName());
2014-04-17 05:52:25 +00:00
QLocale locale = QLocale : : system ( ) ;
QString shortformat = locale . dateFormat ( QLocale : : ShortFormat ) ;
2011-10-01 12:54:20 +00:00
if ( ! shortformat . toLower ( ) . contains ( " yyyy " ) ) {
2014-04-17 05:52:25 +00:00
shortformat . replace ( " yy " , " yyyy " ) ;
2011-10-01 12:54:20 +00:00
}
2014-04-17 05:52:25 +00:00
2011-10-01 12:54:20 +00:00
ui - > dobEdit - > setDisplayFormat ( shortformat ) ;
ui - > dateDiagnosedEdit - > setDisplayFormat ( shortformat ) ;
2014-04-17 05:52:25 +00:00
m_firstPage = 0 ;
2011-10-01 12:54:20 +00:00
ui - > backButton - > setEnabled ( false ) ;
ui - > nextButton - > setEnabled ( false ) ;
ui - > stackedWidget - > setCurrentIndex ( 0 ) ;
on_cpapModeCombo_activated ( 0 ) ;
2014-04-17 05:52:25 +00:00
m_passwordHashed = false ;
2011-11-28 12:03:43 +00:00
ui - > heightEdit2 - > setVisible ( false ) ;
2019-07-25 13:23:24 +00:00
ui - > heightEdit - > setDecimals ( 0 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_CM ) ;
2011-11-28 12:03:43 +00:00
2014-04-17 05:52:25 +00:00
{
// process countries list
QFile f ( " :/docs/countries.txt " ) ;
f . open ( QFile : : ReadOnly ) ;
QTextStream cnt ( & f ) ;
QString a ;
ui - > countryCombo - > clear ( ) ;
ui - > countryCombo - > addItem ( tr ( " Select Country " ) ) ;
do {
a = cnt . readLine ( ) ;
if ( a . isEmpty ( ) ) { break ; }
ui - > countryCombo - > addItem ( a ) ;
} while ( 1 ) ;
f . close ( ) ;
2011-11-28 12:03:43 +00:00
}
2014-04-17 05:52:25 +00:00
{
// 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-11-28 12:03:43 +00:00
}
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
ui - > versionLabel - > setText ( " " ) ;
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> "
2014-04-17 05:52:25 +00:00
" <body> "
2019-03-10 16:03:19 +00:00
" <div align=center><h1> " + tr ( " Welcome to the Open Source CPAP Analysis Reporter " ) + " </h1></div> "
2014-04-15 04:47:23 +00:00
2014-04-17 05:52:25 +00:00
" <p> " + tr ( " This software is being designed to assist you in reviewing the data produced by your CPAP machines and related equipment. " )
+ " </p> "
2014-04-15 04:47:23 +00:00
2019-02-24 00:58:25 +00:00
" <p> " + tr ( " OSCAR has been released freely under the <a href='qrc:/COPYING'>GNU Public License v3</a>, and comes with no warranty, and without ANY claims to fitness for any purpose. " )
2014-04-17 05:52:25 +00:00
+ " </p> "
" <div align=center><font color= \" red \" ><h2> " + tr ( " PLEASE READ CAREFULLY " ) + " </h2></font></div> "
2019-02-24 00:58:25 +00:00
" <p> " + tr ( " OSCAR is intended merely as a data viewer, and definitely not a substitute for competent medical guidance from your Doctor. " )
2014-04-17 05:52:25 +00:00
+ " </p> "
2014-04-15 04:47:23 +00:00
2014-04-17 05:52:25 +00:00
" <p> " + tr ( " Accuracy of any data displayed is not and can not be guaranteed. " ) + " </p> "
2014-04-15 04:47:23 +00:00
2014-04-17 05:52:25 +00:00
" <p> " + tr ( " Any reports generated are for PERSONAL USE ONLY, and NOT IN ANY WAY fit for compliance or medical diagnostic purposes. " )
+ " </p> "
2014-04-15 04:47:23 +00:00
2019-02-13 18:22:54 +00:00
" <p> " + tr ( " The authors will not be held liable for <u>anything</u> related to the use or misuse of this software. " )
2014-04-17 05:52:25 +00:00
+ " </p> "
2014-04-15 04:47:23 +00:00
2014-04-17 05:52:25 +00:00
" <div align=center> "
" <p><b><font size=+1> " + tr ( " Use of this software is entirely at your own risk. " ) +
" </font></b></p> "
2014-04-15 04:47:23 +00:00
2021-11-02 20:34:12 +00:00
" <p><i> " + tr ( " OSCAR is copyright ©2011-2018 Mark Watkins and portions ©2019-2022 The OSCAR Team " ) + " <i></p> "
2014-04-17 05:52:25 +00:00
" </div> "
" </body> "
" </html> " ;
2014-04-15 04:47:23 +00:00
}
2011-10-01 12:54:20 +00:00
void NewProfile : : on_nextButton_clicked ( )
{
2014-04-17 05:52:25 +00:00
const QString xmlext = " .xml " ;
2012-05-16 20:28:09 +00:00
2014-04-17 05:52:25 +00:00
int index = ui - > stackedWidget - > currentIndex ( ) ;
switch ( index ) {
2012-05-16 20:28:09 +00:00
case 0 :
2014-04-17 05:52:25 +00:00
if ( ! ui - > agreeCheckbox - > isChecked ( ) ) {
2013-10-16 12:40:38 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2012-05-16 20:28:09 +00:00
// Reload Preferences object
break ;
2014-04-17 05:52:25 +00:00
2011-10-01 12:54:20 +00:00
case 1 :
2019-08-27 06:10:58 +00:00
if ( ui - > userNameEdit - > text ( ) . trimmed ( ) . isEmpty ( ) ) {
2014-07-02 05:33:27 +00:00
QMessageBox : : information ( this , STR_MessageBox_Error , tr ( " Please provide a username for this profile " ) , QMessageBox : : Ok ) ;
2011-10-01 12:54:20 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
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
}
2014-04-17 05:52:25 +00:00
2011-10-01 12:54:20 +00:00
if ( ui - > passwordGroupBox - > isChecked ( ) ) {
2014-04-17 05:52:25 +00:00
if ( ui - > passwordEdit1 - > text ( ) ! = ui - > passwordEdit2 - > text ( ) ) {
2014-05-17 05:04:40 +00:00
QMessageBox : : information ( this , STR_MessageBox_Error , tr ( " Passwords don't match " ) , QMessageBox : : Ok ) ;
2011-10-01 12:54:20 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
if ( ui - > passwordEdit1 - > text ( ) . isEmpty ( ) ) {
2011-10-01 12:54:20 +00:00
ui - > passwordGroupBox - > setChecked ( false ) ;
2014-04-17 05:52:25 +00:00
}
2011-10-01 12:54:20 +00:00
}
break ;
2014-04-17 05:52:25 +00:00
2011-10-01 12:54:20 +00:00
case 2 :
break ;
2014-04-17 05:52:25 +00:00
2011-10-01 12:54:20 +00:00
case 3 :
break ;
2014-04-17 05:52:25 +00:00
2011-10-01 12:54:20 +00:00
default :
break ;
}
2014-04-17 05:52:25 +00:00
int max_pages = ui - > stackedWidget - > count ( ) - 1 ;
if ( index < max_pages ) {
2011-10-01 12:54:20 +00:00
index + + ;
ui - > stackedWidget - > setCurrentIndex ( index ) ;
} else {
// Finish button clicked.
2019-08-27 06:10:58 +00:00
QString username = ui - > userNameEdit - > text ( ) . trimmed ( ) ;
2014-04-17 05:52:25 +00:00
if ( QMessageBox : : question ( this , tr ( " Profile Changes " ) , tr ( " Accept and save this information? " ) ,
QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
Profile * profile = Profiles : : Get ( username ) ;
2011-10-01 12:54:20 +00:00
if ( ! profile ) { // No profile, create one.
2014-04-17 05:52:25 +00:00
profile = Profiles : : Create ( username ) ;
2011-10-01 12:54:20 +00:00
}
2014-04-17 05:52:25 +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 ( ) ) ;
2014-04-17 05:52:25 +00:00
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 ( ) ) ;
2014-04-17 05:52:25 +00:00
profile - > user - > setTimeZone ( ui - > timezoneCombo - > itemData (
ui - > timezoneCombo - > currentIndex ( ) ) . toString ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > user - > setCountry ( ui - > countryCombo - > currentText ( ) ) ;
profile - > user - > setDaylightSaving ( ui - > DSTcheckbox - > isChecked ( ) ) ;
UnitSystem us ;
2014-04-17 05:52:25 +00:00
if ( ui - > heightCombo - > currentIndex ( ) = = 0 ) { us = US_Metric ; }
2019-05-01 16:05:01 +00:00
else if ( ui - > heightCombo - > currentIndex ( ) = = 1 ) { us = US_English ; }
2014-04-17 05:52:25 +00:00
else { us = US_Metric ; }
2011-12-21 12:47:47 +00:00
if ( profile - > general - > unitSystem ( ) ! = us ) {
profile - > general - > setUnitSystem ( us ) ;
2014-04-17 05:52:25 +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
2014-04-17 05:52:25 +00:00
double v = 0 ;
2019-05-01 16:05:01 +00:00
if ( us = = US_English ) {
2011-11-28 12:03:43 +00:00
// convert to metric
2014-04-17 05:52:25 +00:00
v = ( ui - > heightEdit - > value ( ) * 30.48 ) ;
v + = ui - > heightEdit2 - > value ( ) * 2.54 ;
2011-11-28 12:03:43 +00:00
} else {
2014-04-17 05:52:25 +00:00
v = ui - > heightEdit - > value ( ) ;
2011-11-28 12:03:43 +00:00
}
2014-04-17 05:52:25 +00:00
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);
2018-04-22 12:06:48 +00:00
AppSetting - > setProfileName ( username ) ;
2011-10-01 12:54:20 +00:00
2018-05-06 22:10:17 +00:00
profile - > Save ( ) ;
2021-12-22 01:49:50 +00:00
if ( mainwin )
mainwin - > GenerateStatistics ( ) ;
2011-10-01 12:54:20 +00:00
this - > accept ( ) ;
}
}
2014-04-17 05:52:25 +00:00
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
}
2014-04-17 05:52:25 +00:00
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 " ) ) ;
2014-04-17 05:52:25 +00:00
if ( ui - > stackedWidget - > currentIndex ( ) > m_firstPage ) {
ui - > stackedWidget - > setCurrentIndex ( ui - > stackedWidget - > currentIndex ( ) - 1 ) ;
2011-10-01 12:54:20 +00:00
}
2014-04-17 05:52:25 +00:00
if ( ui - > stackedWidget - > currentIndex ( ) = = m_firstPage ) {
2011-10-01 12:54:20 +00:00
ui - > backButton - > setEnabled ( false ) ;
} else {
ui - > backButton - > setEnabled ( true ) ;
}
}
void NewProfile : : on_cpapModeCombo_activated ( int index )
{
2014-04-17 05:52:25 +00:00
if ( index = = 0 ) {
2011-10-01 12:54:20 +00:00
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 ) ;
2014-04-17 05:52:25 +00:00
ui - > stackedWidget - > setCurrentIndex ( m_firstPage = 1 ) ;
2011-10-01 12:54:20 +00:00
ui - > backButton - > setEnabled ( false ) ;
ui - > nextButton - > setEnabled ( true ) ;
}
2011-10-02 03:38:51 +00:00
void NewProfile : : edit ( const QString name )
{
skipWelcomeScreen ( ) ;
2014-04-17 05:52:25 +00:00
Profile * profile = Profiles : : Get ( name ) ;
2011-10-02 03:38:51 +00:00
if ( ! profile ) {
2014-04-17 05:52:25 +00:00
profile = Profiles : : Create ( name ) ;
2011-10-02 03:38:51 +00:00
}
2014-04-17 05:52:25 +00:00
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 ( ) ) ;
2014-04-17 05:52:25 +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..
2014-04-17 05:52:25 +00:00
QString a = " ****** " ;
2011-12-21 12:47:47 +00:00
ui - > passwordEdit1 - > setText ( a ) ;
ui - > passwordEdit2 - > setText ( a ) ;
2011-10-02 03:38:51 +00:00
ui - > passwordGroupBox - > setChecked ( true ) ;
2014-04-17 05:52:25 +00:00
m_passwordHashed = true ;
2011-10-02 03:38:51 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-21 12:47:47 +00:00
ui - > dobEdit - > setDate ( profile - > user - > DOB ( ) ) ;
2014-04-17 05:52:25 +00:00
if ( profile - > user - > gender ( ) = = Male ) {
2011-10-02 03:38:51 +00:00
ui - > genderCombo - > setCurrentIndex ( 1 ) ;
2014-04-17 05:52:25 +00:00
} else if ( profile - > user - > gender ( ) = = Female ) {
2011-10-02 03:38:51 +00:00
ui - > genderCombo - > setCurrentIndex ( 2 ) ;
2014-04-17 05:52:25 +00:00
} 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 ( ) ) ;
2021-09-19 04:02:51 +00:00
on_cpapModeCombo_activated ( profile - > cpap - > mode ( ) ) ;
2011-12-21 12:47:47 +00:00
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 ( ) ) ;
2014-04-17 05:52:25 +00:00
int i = ui - > timezoneCombo - > findData ( profile - > user - > timeZone ( ) ) ;
2011-11-28 12:03:43 +00:00
ui - > timezoneCombo - > setCurrentIndex ( i ) ;
2014-04-17 05:52:25 +00:00
i = ui - > countryCombo - > findText ( profile - > user - > country ( ) ) ;
2011-11-28 12:03:43 +00:00
ui - > countryCombo - > setCurrentIndex ( i ) ;
2014-04-17 05:52:25 +00:00
UnitSystem us = profile - > general - > unitSystem ( ) ;
i = ( int ) us - 1 ;
if ( i < 0 ) { i = 0 ; }
2011-11-28 12:03:43 +00:00
ui - > heightCombo - > setCurrentIndex ( i ) ;
2014-04-17 05:52:25 +00:00
double v = profile - > user - > height ( ) ;
2011-11-28 12:03:43 +00:00
2019-05-01 16:05:01 +00:00
if ( us = = US_English ) { // evil non-metric
2014-04-17 05:52:25 +00:00
int ti = v / 2.54 ;
int feet = ti / 12 ;
int inches = ti % 12 ;
2011-11-28 12:03:43 +00:00
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 ) ;
2019-07-25 13:23:24 +00:00
ui - > heightEdit - > setDecimals ( 0 ) ;
2019-07-24 16:14:13 +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 ( )
{
2014-04-17 05:52:25 +00:00
m_passwordHashed = false ;
2011-10-02 03:38:51 +00:00
}
void NewProfile : : on_passwordEdit2_editingFinished ( )
{
2014-04-17 05:52:25 +00:00
m_passwordHashed = false ;
2011-10-02 03:38:51 +00:00
}
2011-11-28 12:03:43 +00:00
void NewProfile : : on_heightCombo_currentIndexChanged ( int index )
{
2014-04-17 05:52:25 +00:00
if ( index = = 0 ) {
2011-11-28 12:03:43 +00:00
//metric
ui - > heightEdit2 - > setVisible ( false ) ;
2019-07-25 13:23:24 +00:00
ui - > heightEdit - > setDecimals ( 0 ) ;
2011-12-21 12:47:47 +00:00
ui - > heightEdit - > setSuffix ( STR_UNIT_CM ) ;
2014-04-17 05:52:25 +00:00
double v = ui - > heightEdit - > value ( ) * 30.48 ;
v + = ui - > heightEdit2 - > value ( ) * 2.54 ;
2011-11-28 12:03:43 +00:00
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 ) ;
2014-04-17 05:52:25 +00:00
int v = ui - > heightEdit - > value ( ) / 2.54 ;
int feet = v / 12 ;
int inches = v % 12 ;
2011-11-28 12:03:43 +00:00
ui - > heightEdit - > setValue ( feet ) ;
ui - > heightEdit2 - > setValue ( inches ) ;
}
}
2014-04-15 04:47:23 +00:00
void NewProfile : : on_textBrowser_anchorClicked ( const QUrl & arg1 )
{
2014-04-17 05:52:25 +00:00
QDialog * dlg = new QDialog ( this ) ;
2014-04-15 04:47:23 +00:00
dlg - > setMinimumWidth ( 600 ) ;
dlg - > setMinimumHeight ( 500 ) ;
2014-04-17 05:52:25 +00:00
QVBoxLayout * layout = new QVBoxLayout ( ) ;
2014-04-15 04:47:23 +00:00
dlg - > setLayout ( layout ) ;
2014-04-17 05:52:25 +00:00
QTextBrowser * browser = new QTextBrowser ( this ) ;
2014-04-15 04:47:23 +00:00
dlg - > layout ( ) - > addWidget ( browser ) ;
2014-04-17 05:52:25 +00:00
QPushButton * button = new QPushButton ( tr ( " &Close this window " ) , browser ) ;
2014-04-15 04:47:23 +00:00
2014-04-17 05:52:25 +00:00
QFile f ( arg1 . toString ( ) . replace ( " qrc: " , " : " ) ) ;
2014-04-15 04:47:23 +00:00
f . open ( QIODevice : : ReadOnly ) ;
QTextStream ts ( & f ) ;
2014-04-17 05:52:25 +00:00
QString text = ts . readAll ( ) ;
2014-04-15 04:47:23 +00:00
connect ( button , SIGNAL ( clicked ( ) ) , dlg , SLOT ( close ( ) ) ) ;
dlg - > layout ( ) - > addWidget ( button ) ;
browser - > setPlainText ( text ) ;
dlg - > exec ( ) ;
delete dlg ;
}