summaryrefslogtreecommitdiff
path: root/src/edit_entry_form.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/edit_entry_form.h')
-rw-r--r--src/edit_entry_form.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/edit_entry_form.h b/src/edit_entry_form.h
new file mode 100644
index 0000000..e038175
--- /dev/null
+++ b/src/edit_entry_form.h
@@ -0,0 +1,25 @@
+#ifndef EDITENTRYFORM_H
+#define EDITENTRYFORM_H
+
+#include <QDialog>
+
+#include "entry.h"
+#include "ui_entry_form.h"
+
+// form to edit/update an entry
+class EditEntryForm : public QDialog {
+ Q_OBJECT
+
+ public:
+ EditEntryForm(const Entry &e);
+
+ private:
+ Ui::entryDialog ui;
+
+ Entry e;
+
+ private slots:
+ void accept();
+};
+
+#endif