summaryrefslogtreecommitdiff
path: root/src/edit_entry_form.cpp
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-09 16:53:38 -0500
committerLouie S <louie@example.com>2024-03-09 16:53:38 -0500
commitafcae23cbf63b31a7ce111ffcd76c027b332bdf9 (patch)
treee86001041d05e13cb778ada13c5a3addccf93a8d /src/edit_entry_form.cpp
parent312ea44966ca5ee65185fc837d15143e7dd59761 (diff)
Break entry/group/rule into sub-classes
Diffstat (limited to 'src/edit_entry_form.cpp')
-rw-r--r--src/edit_entry_form.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/edit_entry_form.cpp b/src/edit_entry_form.cpp
new file mode 100644
index 0000000..6a28b6f
--- /dev/null
+++ b/src/edit_entry_form.cpp
@@ -0,0 +1,15 @@
+#include "backend/db_sqlite.h"
+#include "edit_entry_form.h"
+
+EditEntryForm::EditEntryForm(const Entry &e) :
+ e(e)
+{
+ // load uic
+ ui.setupUi(this);
+
+ // set titles
+ this->setWindowTitle("Edit Entry");
+ ui.title->setText("Edit Entry");
+
+ // widgets setup
+}