summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-bartender/bac.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-bartender/bac.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/bac.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/noncore/apps/opie-bartender/bac.h b/noncore/apps/opie-bartender/bac.h
new file mode 100644
index 0000000..9245c96
--- a/dev/null
+++ b/noncore/apps/opie-bartender/bac.h
@@ -0,0 +1,58 @@
1/****************************************************************************
2** Created: Sun Jul 21 18:59:50 2002
3** by: L.J. Potter <ljp@llornkcor.com>
4** copyright : (C) 2002 by ljp
5 email : ljp@llornkcor.com
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 ***************************************************************************/
11#ifndef BACDIALOG_H
12#define BACDIALOG_H
13
14#include <qvariant.h>
15#include <qdialog.h>
16class QVBoxLayout;
17class QHBoxLayout;
18class QGridLayout;
19class QComboBox;
20class QLCDNumber;
21class QLabel;
22class QPushButton;
23class QSpinBox;
24
25class BacDialog : public QDialog
26{
27 Q_OBJECT
28
29public:
30 BacDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
31 ~BacDialog();
32
33 QSpinBox* NumberSpinBox;
34 QLabel* TextLabel1;
35 QSpinBox* WeightSpinBox;
36 QLabel* TextLabel2;
37 QSpinBox* TimeSpinBox;
38 QLabel* TextLabel3;
39 QComboBox* GenderComboBox;
40 QLabel* TextLabel4;
41 QComboBox* TypeDrinkComboBox;
42 QLabel* TextLabel1_2;
43 QPushButton* PushButton1;
44 QLCDNumber* LCDNumber1;
45
46protected:
47 QVBoxLayout* Layout7;
48 QHBoxLayout* Layout1;
49 QHBoxLayout* Layout2;
50 QHBoxLayout* Layout3;
51 QHBoxLayout* Layout4;
52 QHBoxLayout* Layout6;
53protected slots:
54 void calculate();
55
56};
57
58#endif // BACDIALOG_H