src/DetailFermenter.h

changeset 323
d053ffbbf3e9
parent 317
f78827503fb0
child 324
c1bb6b197763
--- a/src/DetailFermenter.h	Thu Jun 30 21:01:50 2022 +0200
+++ b/src/DetailFermenter.h	Thu Jun 30 21:05:30 2022 +0200
@@ -2,6 +2,12 @@
 #define _DETAILFERMENTER_H
 
 #include <QDialog>
+#include <QDoubleSpinBox>
+#include <QCheckBox>
+#include <QComboBox>
+#include <QRadioButton>
+#include <QLineEdit>
+#include <QDialogButtonBox>
 
 
 namespace Ui {
@@ -22,12 +28,23 @@
 private slots:
     void on_quitButton_clicked();
     void refreshTable(void);
+    void lo_changed(double val);
+    void hi_changed(double val);
+    void heat_switched();
+    void cool_switched();
+    void fan_switched();
+    void mode_changed(int val);
+
+public slots:
+    void refreshFermenter(QString);
 
 private:
     Ui::DetailFermenter *ui;
+    QString _node, _alias;
     int recno;
-
-    void WindowTitle();
+    bool heat_state = false;
+    bool cool_state = false;
+    bool fan_state = false;
 };
 
 #endif

mercurial