summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/memorydialog.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/memorydialog.h
parent2894d0b14c0b3efa3ce259214b5aa597a6abfed1 (diff)
downloadopie-4593e3cf4eca4867e34b3220007c24523cf642b6.zip
opie-4593e3cf4eca4867e34b3220007c24523cf642b6.tar.gz
opie-4593e3cf4eca4867e34b3220007c24523cf642b6.tar.bz2
Initial revision
Diffstat (limited to 'noncore/apps/qashmoney/memorydialog.h') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/memorydialog.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/apps/qashmoney/memorydialog.h b/noncore/apps/qashmoney/memorydialog.h
new file mode 100755
index 0000000..3491823
--- a/dev/null
+++ b/noncore/apps/qashmoney/memorydialog.h
@@ -0,0 +1,40 @@
1#ifndef MEMORYDIALOG_H
2#define MEMORYDIALOG_H
3
4#include <qdialog.h>
5#include <qlistbox.h>
6#include <qlineedit.h>
7#include <qpushbutton.h>
8#include <qlayout.h>
9#include <qstring.h>
10#include <qhbox.h>
11
12class MemoryDialog : public QDialog
13 {
14 Q_OBJECT
15
16 public:
17 MemoryDialog();
18 ~MemoryDialog();
19
20 private slots:
21 void addItem();
22 void editItem();
23 void deleteItem();
24
25 private:
26
27 QHBox *secondline;
28
29 QListBox* listbox;
30
31 QLineEdit* lineedit;
32
33 QPushButton* newbutton;
34 QPushButton* editbutton;
35 QPushButton* deletebutton;
36
37 QBoxLayout *layout;
38};
39
40#endif