summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/calculator.h
authormickeyl <mickeyl>2004-11-04 10:33:04 (UTC)
committer mickeyl <mickeyl>2004-11-04 10:33:04 (UTC)
commit7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77 (patch) (unidiff)
treee76604c6af3da9c19b69dcdcf8105d58bac63f71 /noncore/unsupported/qashmoney/calculator.h
parentcd2d50799e087fad5b56df9d7fe9aa572a313e64 (diff)
downloadopie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.zip
opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.tar.gz
opie-7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77.tar.bz2
opie-qashmoney is now unsupported
Diffstat (limited to 'noncore/unsupported/qashmoney/calculator.h') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/unsupported/qashmoney/calculator.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/noncore/unsupported/qashmoney/calculator.h b/noncore/unsupported/qashmoney/calculator.h
new file mode 100755
index 0000000..56dc1bc
--- a/dev/null
+++ b/noncore/unsupported/qashmoney/calculator.h
@@ -0,0 +1,50 @@
1#ifndef CALCULATOR_H
2#define CALCULATOR_H
3
4#include <qdialog.h>
5#include <qlayout.h>
6#include <qlineedit.h>
7
8class Calculator : public QDialog
9{
10 Q_OBJECT
11
12 public:
13
14 Calculator ( QWidget* parent );
15
16 QLineEdit* display;
17
18 private slots:
19
20 void displayOne ();
21 void displayTwo ();
22 void displayThree ();
23 void displayFour ();
24 void displayFive ();
25 void displaySix ();
26 void displaySeven ();
27 void displayEight ();
28 void displayNine ();
29 void displayZero ();
30 void displayPoint ();
31 void back ();
32
33 private:
34
35 QGridLayout *layout;
36
37};
38
39#endif
40
41
42
43
44
45
46
47
48
49
50