summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/currency.h
authorallenforsythe <allenforsythe>2003-05-04 22:02:48 (UTC)
committer allenforsythe <allenforsythe>2003-05-04 22:02:48 (UTC)
commit4593e3cf4eca4867e34b3220007c24523cf642b6 (patch) (unidiff)
treebd8071834dec2a5008b1b270c7953f5cfd65754d /noncore/apps/qashmoney/currency.h
parent2894d0b14c0b3efa3ce259214b5aa597a6abfed1 (diff)
downloadopie-4593e3cf4eca4867e34b3220007c24523cf642b6.zip
opie-4593e3cf4eca4867e34b3220007c24523cf642b6.tar.gz
opie-4593e3cf4eca4867e34b3220007c24523cf642b6.tar.bz2
Initial revision
Diffstat (limited to 'noncore/apps/qashmoney/currency.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/currency.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/noncore/apps/qashmoney/currency.h b/noncore/apps/qashmoney/currency.h
new file mode 100755
index 0000000..08bb3c1
--- a/dev/null
+++ b/noncore/apps/qashmoney/currency.h
@@ -0,0 +1,23 @@
1#ifndef CURRENCY_H
2#define CURRENCY_H
3
4#include <qgroupbox.h>
5#include <qlabel.h>
6#include <qcombobox.h>
7#include <qpixmap.h>
8#include <qlayout.h>
9
10class Currency : public QWidget
11 {
12 Q_OBJECT
13
14 public:
15
16 Currency ( QWidget *parent );
17 QLabel *currencylabel;
18 QComboBox *currencybox;
19 QBoxLayout *layout;
20 };
21
22#endif
23