From fc00cab0368a6f76a2b1f276f3a3d8573b1fba82 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 9 Mar 2024 17:34:04 -0500 Subject: Standardize source file names --- src/editEntryForm.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/editEntryForm.h (limited to 'src/editEntryForm.h') diff --git a/src/editEntryForm.h b/src/editEntryForm.h new file mode 100644 index 0000000..6231478 --- /dev/null +++ b/src/editEntryForm.h @@ -0,0 +1,25 @@ +#ifndef EDITENTRYFORM_H +#define EDITENTRYFORM_H + +#include + +#include "entry.h" +#include "ui_entryForm.h" + +// form to edit/update an entry +class EditEntryForm : public QDialog { + Q_OBJECT + + public: + EditEntryForm(const Entry &e); + + private: + Ui::entryDialog ui; + + Entry entry; + + private slots: + void accept(); +}; + +#endif -- cgit