diff options
author | Louie S <louie@example.com> | 2024-03-09 17:24:54 -0500 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-03-09 17:24:54 -0500 |
commit | 10b83b465509d864d6946ef30f31ec0356fc78ff (patch) | |
tree | ff517783ad21ca98a5a1d710b2f62b8fb87fb0f3 /src/edit_group_form.h | |
parent | afcae23cbf63b31a7ce111ffcd76c027b332bdf9 (diff) |
Edit group form skeleton
Diffstat (limited to 'src/edit_group_form.h')
-rw-r--r-- | src/edit_group_form.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/edit_group_form.h b/src/edit_group_form.h new file mode 100644 index 0000000..9b0112c --- /dev/null +++ b/src/edit_group_form.h @@ -0,0 +1,25 @@ +#ifndef EDITGROUPFORM_H +#define EDITGROUPFORM_H + +#include <QDialog> + +#include "group.h" +#include "ui_group_form.h" + +// form to edit/update a group +class EditGroupForm : public QDialog { + Q_OBJECT + + public: + EditGroupForm(const Group &g); + + private: + Ui::groupDialog ui; + + Group group; + + private slots: + void accept(); +}; + +#endif |