summaryrefslogtreecommitdiff
path: root/noncore/apps
Unidiff
Diffstat (limited to 'noncore/apps') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/bac.cpp33
-rw-r--r--noncore/apps/opie-bartender/bac.h4
2 files changed, 26 insertions, 11 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
@@ -36,7 +36,7 @@ BacDialog::BacDialog( QWidget* parent, const char* name, bool modal, WFlags fl
36 Layout1->addWidget( NumberSpinBox ); 36 Layout1->addWidget( NumberSpinBox );
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 );
42 42
@@ -53,6 +53,15 @@ BacDialog::BacDialog( QWidget* parent, const char* name, bool modal, WFlags fl
53 Layout2->addWidget( TextLabel2 ); 53 Layout2->addWidget( TextLabel2 );
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 );
58 Layout3->setMargin( 0 ); 67 Layout3->setMargin( 0 );
@@ -114,17 +123,18 @@ BacDialog::BacDialog( QWidget* parent, const char* name, bool modal, WFlags fl
114 palette.setColor(QPalette::Normal, QColorGroup::Dark, Qt::darkGreen); 123 palette.setColor(QPalette::Normal, QColorGroup::Dark, Qt::darkGreen);
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
130 if( GenderComboBox->currentItem()==0) 140 if( GenderComboBox->currentItem()==0)
@@ -149,7 +159,12 @@ void BacDialog::calculate() {
149 } 159 }
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;
155 oz = 23.36/milliliters; 170 oz = 23.36/milliliters;
@@ -160,8 +175,6 @@ void BacDialog::calculate() {
160 bac1 = gramsMil * alc; 175 bac1 = gramsMil * alc;
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);
167// bac = (((weightDrink * .806) * 100) * .54);// - (time * .012); // assuming beer of 4.5% 180// bac = (((weightDrink * .806) * 100) * .54);// - (time * .012); // assuming beer of 4.5%
diff --git a/noncore/apps/opie-bartender/bac.h b/noncore/apps/opie-bartender/bac.h
index 9245c96..43c7035 100644
--- a/noncore/apps/opie-bartender/bac.h
+++ b/noncore/apps/opie-bartender/bac.h
@@ -42,7 +42,8 @@ public:
42 QLabel* TextLabel1_2; 42 QLabel* TextLabel1_2;
43 QPushButton* PushButton1; 43 QPushButton* PushButton1;
44 QLCDNumber* LCDNumber1; 44 QLCDNumber* LCDNumber1;
45 45 QComboBox *weightUnitsCombo;
46 QLabel *weightUnitsLabel;
46protected: 47protected:
47 QVBoxLayout* Layout7; 48 QVBoxLayout* Layout7;
48 QHBoxLayout* Layout1; 49 QHBoxLayout* Layout1;
@@ -50,6 +51,7 @@ protected:
50 QHBoxLayout* Layout3; 51 QHBoxLayout* Layout3;
51 QHBoxLayout* Layout4; 52 QHBoxLayout* Layout4;
52 QHBoxLayout* Layout6; 53 QHBoxLayout* Layout6;
54
53protected slots: 55protected slots:
54 void calculate(); 56 void calculate();
55 57