summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-bartender/bac.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-bartender/bac.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/bac.cpp33
1 files changed, 23 insertions, 10 deletions
diff --git a/noncore/apps/opie-bartender/bac.cpp b/noncore/apps/opie-bartender/bac.cpp
index c97a253..2e74029 100644
--- a/noncore/apps/opie-bartender/bac.cpp
+++ b/noncore/apps/opie-bartender/bac.cpp
@@ -37,5 +37,5 @@ BacDialog::BacDialog( QWidget* parent, const char* name, bool modal, WFlags fl
37 37
38 TextLabel1 = new QLabel(this, "TextLabel1" ); 38 TextLabel1 = new QLabel(this, "TextLabel1" );
39 TextLabel1->setText( tr( "Number of Drinks Consumed" ) ); 39 TextLabel1->setText( tr( "# Drinks Consumed" ) );
40 Layout1->addWidget( TextLabel1 ); 40 Layout1->addWidget( TextLabel1 );
41 Layout7->addLayout( Layout1 ); 41 Layout7->addLayout( Layout1 );
@@ -54,4 +54,13 @@ BacDialog::BacDialog( QWidget* parent, const char* name, bool modal, WFlags fl
54 Layout7->addLayout( Layout2 ); 54 Layout7->addLayout( Layout2 );
55 55
56 weightUnitsCombo =new QComboBox( FALSE, this, "unitComboBox" );
57 weightUnitsCombo->insertItem( tr( "Kilos" ) );
58 weightUnitsCombo->insertItem( tr( "Pounds" ) );
59 Layout2->addWidget( weightUnitsCombo );
60
61 weightUnitsLabel = new QLabel(this, "unitsTextLabel" );
62 weightUnitsLabel->setText( tr( "Units" ) );
63 Layout2->addWidget( weightUnitsLabel );
64
56 Layout3 = new QHBoxLayout; 65 Layout3 = new QHBoxLayout;
57 Layout3->setSpacing( 6 ); 66 Layout3->setSpacing( 6 );
@@ -115,15 +124,16 @@ BacDialog::BacDialog( QWidget* parent, const char* name, bool modal, WFlags fl
115 LCDNumber1->setPalette(palette); 124 LCDNumber1->setPalette(palette);
116 125
117
118 Layout7->addWidget( LCDNumber1 ); 126 Layout7->addWidget( LCDNumber1 );
119 127 NumberSpinBox->setFocus();
120
121} 128}
122 129
123BacDialog::~BacDialog() { 130BacDialog::~BacDialog()
124} 131{}
132
133void BacDialog::calculate()
134{
125 135
126void BacDialog::calculate() {
127 float weight,genderDiff, bac, typeDrink=0, drinkOz=0, bodyWater, milliliters, oz, gram, gramsMil, alc, metab, bac1; 136 float weight,genderDiff, bac, typeDrink=0, drinkOz=0, bodyWater, milliliters, oz, gram, gramsMil, alc, metab, bac1;
137 float weightunitDifference, massunitdiff;
128 QString estBac; 138 QString estBac;
129 139
@@ -150,5 +160,10 @@ void BacDialog::calculate() {
150 break; 160 break;
151 }; 161 };
152 weight = WeightSpinBox->value() / 2.2046; // in kilograms 162
163 if( weightUnitsCombo->currentItem() == 0 ) {
164 weight = WeightSpinBox->value(); // kilos
165 } else {
166 weight = WeightSpinBox->value() / 2.2046; // convert to kilograms
167 }
153 bodyWater = weight * genderDiff; 168 bodyWater = weight * genderDiff;
154 milliliters = bodyWater * 1000; 169 milliliters = bodyWater * 1000;
@@ -161,6 +176,4 @@ void BacDialog::calculate() {
161 bac = bac1 - metab; 176 bac = bac1 - metab;
162 177
163
164
165// weightDrink= (nDrinks * .79) / (weight * genderDiff*1000); 178// weightDrink= (nDrinks * .79) / (weight * genderDiff*1000);
166// (ounces * percent * 0.075 / weight) - (hours * 0.015); 179// (ounces * percent * 0.075 / weight) - (hours * 0.015);