From c96d1c12f1fd2a34105305cb560792936c246259 Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 12 Mar 2024 18:37:06 -0400 Subject: Implement editEntryForm --- src/entryLayout.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/entryLayout.h') 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 -- cgit