diff options
author | Louie S <louie@example.com> | 2024-03-12 18:37:06 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-03-12 18:37:06 -0400 |
commit | c96d1c12f1fd2a34105305cb560792936c246259 (patch) | |
tree | c992dc60f8303a0c77cbbdec3b4ded932eba2c3e /src/entryLayout.h | |
parent | e9c68303aaa353f003a0c68d11d04b9c6062104b (diff) |
Implement editEntryForm
Diffstat (limited to 'src/entryLayout.h')
-rw-r--r-- | src/entryLayout.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/entryLayout.h b/src/entryLayout.h index fb4902b..1a4146b 100644 --- a/src/entryLayout.h +++ b/src/entryLayout.h @@ -15,6 +15,13 @@ class EntryLayout : public QHBoxLayout { Entry entry; EntryLayout(const Entry &e); + + private slots: + void showContextMenu(); + void editEntry(); + void setRules(); + void toggleDone(); + void removeEntry(); }; #endif |