summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/calculator.h
authormickeyl <mickeyl>2004-11-04 10:33:04 (UTC)
committer mickeyl <mickeyl>2004-11-04 10:33:04 (UTC)
commit7855b19ce0241a7b7b4fc72e3a8ddd9bf73b0a77 (patch) (side-by-side diff)
treee76604c6af3da9c19b69dcdcf8105d58bac63f71 /noncore/apps/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/apps/qashmoney/calculator.h') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/calculator.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/noncore/apps/qashmoney/calculator.h b/noncore/apps/qashmoney/calculator.h
deleted file mode 100755
index 56dc1bc..0000000
--- a/noncore/apps/qashmoney/calculator.h
+++ b/dev/null
@@ -1,50 +0,0 @@
-#ifndef CALCULATOR_H
-#define CALCULATOR_H
-
-#include <qdialog.h>
-#include <qlayout.h>
-#include <qlineedit.h>
-
-class Calculator : public QDialog
-{
- Q_OBJECT
-
- public:
-
- Calculator ( QWidget* parent );
-
- QLineEdit* display;
-
- private slots:
-
- void displayOne ();
- void displayTwo ();
- void displayThree ();
- void displayFour ();
- void displayFive ();
- void displaySix ();
- void displaySeven ();
- void displayEight ();
- void displayNine ();
- void displayZero ();
- void displayPoint ();
- void back ();
-
- private:
-
- QGridLayout *layout;
-
-};
-
-#endif
-
-
-
-
-
-
-
-
-
-
-