Profile: Height Metric - English converison

This commit is contained in:
LoudSnorer 2024-08-27 20:48:40 -04:00
parent 91fd2b30fa
commit a9ad89cd19

View File

@ -56,7 +56,7 @@ NewProfile::NewProfile(QWidget *parent, const QString *user) :
m_passwordHashed = false; m_passwordHashed = false;
ui->heightEdit2->setVisible(false); ui->heightEdit2->setVisible(false);
ui->heightEdit->setDecimals(0); ui->heightEdit->setDecimals(0);
ui->heightEdit->setSuffix(STR_UNIT_CM); ui->heightEdit->setSuffix(QString(" %1").arg(STR_UNIT_CM));
{ {
// process countries list // process countries list
@ -141,10 +141,10 @@ QString NewProfile::getIntroHTML()
"</body>" "</body>"
"</html>"; "</html>";
} }
#include <cmath>
int cmToFeetInch( double cm, double& inches ) { int cmToFeetInch( double cm, double& inches ) {
inches = cm * inches_per_cm; inches = cm * inches_per_cm;
int feet = inches / 12; int feet = std::round(inches / 12);
inches -= (double)(feet *12); inches -= (double)(feet *12);
return feet; return feet;
} }
@ -448,15 +448,15 @@ void NewProfile::on_heightCombo_currentIndexChanged(int index)
if (index == 0) { if (index == 0) {
//metric //metric
ui->heightEdit->setDecimals(1); ui->heightEdit->setDecimals(1);
ui->heightEdit->setSuffix(STR_UNIT_CM); ui->heightEdit->setSuffix(QString(" %1").arg(STR_UNIT_CM));
ui->heightEdit->setValue(m_tmp_height_cm); ui->heightEdit->setValue(m_tmp_height_cm);
ui->heightEdit2->setVisible(false); ui->heightEdit2->setVisible(false);
} else { //evil } else { //english
ui->heightEdit->setDecimals(0); // feet are always a whole number. ui->heightEdit->setDecimals(0); // feet are always a whole number.
ui->heightEdit2->setDecimals(1); // inches can be seen as double. ui->heightEdit2->setDecimals(1); // inches can be seen as double.
ui->heightEdit->setSuffix(STR_UNIT_FOOT); ui->heightEdit->setSuffix(QString(" %1").arg(STR_UNIT_FOOT));
ui->heightEdit2->setVisible(true); ui->heightEdit2->setVisible(true);
ui->heightEdit2->setSuffix(STR_UNIT_INCH); ui->heightEdit2->setSuffix(QString(" %1").arg(STR_UNIT_INCH));
double inches=0; double inches=0;
ui->heightEdit->setValue(cmToFeetInch(m_tmp_height_cm,inches)); ui->heightEdit->setValue(cmToFeetInch(m_tmp_height_cm,inches));
ui->heightEdit2->setValue(inches); ui->heightEdit2->setValue(inches);