src/ProfileFerments.h

Mon, 09 Jan 2023 17:03:19 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 09 Jan 2023 17:03:19 +0100
changeset 452
c4c5d02131be
parent 79
e726db72da3c
permissions
-rw-r--r--

Limit mash steptime to 240 minutes. Limit mash steps to 82 degrees celsius. In estimate_fg limit total mash time to 240 minutes and increased the water/grain ration from 5.5 to 6 l/kg.

#ifndef _PROFILEFERMENT_H
#define _PROFILEFERMENT_H

#include <QDialog>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QTableWidget>

namespace Ui {
class ProfileFerments;
}

class ProfileFerments : public QDialog
{
    Q_OBJECT

public:
    explicit ProfileFerments(QWidget *parent = nullptr);
    ~ProfileFerments();

signals:
    void setStatus(QString);

private slots:
    void on_insertButton_clicked();
    void on_editButton_clicked();
    void refreshTable(void);

private:
    QGridLayout *gridLayout;
    QTableWidget *tableFerments;
    QGroupBox *groupBox;
    QHBoxLayout *horizontalLayout;
    QPushButton *quitButton;
    QPushButton *insertButton;

    void edit(int recno);
};

#endif

mercurial