src/EditFermentable.h

changeset 20
fcbbddcc22c1
child 250
baab61fb8bcd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/EditFermentable.h	Sat Feb 19 22:17:09 2022 +0100
@@ -0,0 +1,36 @@
+#ifndef _EDITFERMENTABLE_H
+#define _EDITFERMENTABLE_H
+
+#include <QDialog>
+
+
+namespace Ui {
+class EditFermentable;
+}
+
+class EditFermentable : public QDialog
+{
+    Q_OBJECT
+
+signals:
+    void entry_changed();
+
+public:
+    explicit EditFermentable(int id, QWidget *parent = 0);
+    ~EditFermentable();
+
+private slots:
+    void on_saveButton_clicked();
+    void on_quitButton_clicked();
+    void on_deleteButton_clicked();
+    void is_changed();
+
+private:
+    Ui::EditFermentable *ui;
+    int recno;
+    bool textIsChanged = false;
+
+    void WindowTitle();
+};
+
+#endif

mercurial