summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/memorydialog.h
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/qashmoney/memorydialog.h') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/unsupported/qashmoney/memorydialog.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/unsupported/qashmoney/memorydialog.h b/noncore/unsupported/qashmoney/memorydialog.h
new file mode 100755
index 0000000..3491823
--- a/dev/null
+++ b/noncore/unsupported/qashmoney/memorydialog.h
@@ -0,0 +1,40 @@
+#ifndef MEMORYDIALOG_H
+#define MEMORYDIALOG_H
+
+#include <qdialog.h>
+#include <qlistbox.h>
+#include <qlineedit.h>
+#include <qpushbutton.h>
+#include <qlayout.h>
+#include <qstring.h>
+#include <qhbox.h>
+
+class MemoryDialog : public QDialog
+ {
+ Q_OBJECT
+
+ public:
+ MemoryDialog();
+ ~MemoryDialog();
+
+ private slots:
+ void addItem();
+ void editItem();
+ void deleteItem();
+
+ private:
+
+ QHBox *secondline;
+
+ QListBox* listbox;
+
+ QLineEdit* lineedit;
+
+ QPushButton* newbutton;
+ QPushButton* editbutton;
+ QPushButton* deletebutton;
+
+ QBoxLayout *layout;
+};
+
+#endif