summaryrefslogtreecommitdiff
path: root/src/add_entry_form.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-02 16:16:59 -0500
committerLouie S <louie@example.com>2024-03-02 16:16:59 -0500
commit43b2132f4d57fac69be698d26cc8f920967065e6 (patch)
treeed92c38189796e7dbb533d4685bc5743cd3d3b80 /src/add_entry_form.h
parent74c9ba962ffe142b04f77fd831438a75eec7b46b (diff)
Render entries
Diffstat (limited to 'src/add_entry_form.h')
-rw-r--r--src/add_entry_form.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/add_entry_form.h b/src/add_entry_form.h
new file mode 100644
index 0000000..863dc57
--- /dev/null
+++ b/src/add_entry_form.h
@@ -0,0 +1,23 @@
+#ifndef ADDENTRYFORM_H
+#define ADDENTRYFORM_H
+
+#include <QObject>
+
+#include "ui_add_entry_form.h"
+
+class AddEntryForm : public QDialog {
+ Q_OBJECT
+
+ public:
+ AddEntryForm(int parent_id);
+
+ private:
+ Ui::addEntryDialog ui;
+
+ int parent_id;
+
+ private slots:
+ void accept();
+};
+
+#endif