src/EditWater.h

Thu, 21 Apr 2022 17:22:01 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 21 Apr 2022 17:22:01 +0200
changeset 151
b5b2483f3a3f
parent 29
76846c99f827
child 353
324a7268796b
permissions
-rw-r--r--

New recipe, calculate the boil_size. Lot's of ignoreChanges removeals and where needed QSignalBlocker is used. Bottle priming calculation added. In fermentables editor block and release to100 settings only in mash to fermentation steps, bottle and kegging are ignored. Update the IBU slider after hop changes. Set the mash name when another mash profile is selected. Don't backup initial infuse amount if there was no mash table. A small cosmetic layout change on the mash tab.

#ifndef _EDITWATER_H
#define _EDITWATER_H

#include <QDialog>


namespace Ui {
class EditWater;
}

class EditWater : public QDialog
{
    Q_OBJECT

signals:
    void entry_changed();

public:
    explicit EditWater(int id, QWidget *parent = 0);
    ~EditWater();

private slots:
    void on_saveButton_clicked();
    void on_quitButton_clicked();
    void on_deleteButton_clicked();
    void is_changed();
    void water_changed();
    void hco_changed();
    void alkalinity_changed();

private:
    Ui::EditWater *ui;
    int recno;
    bool textIsChanged = false;

    void WindowTitle();
    void WaterSet();
};

#endif

mercurial