src/EditProfileWater.h

Fri, 18 Nov 2022 16:57:02 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 18 Nov 2022 16:57:02 +0100
changeset 443
3c195eb4e7a1
parent 385
09af9f46518f
permissions
-rw-r--r--

Details CO2 monitor shows the style limits for the specific beer. Adjust the scale of the pressure widget to the beer limits. Moved more functions to the global Utils. Fix expected pressure in the package screen for other priming sugars. Disabled some debug log messages.

#ifndef _EDITPROFILEWATER_H
#define _EDITPROFILEWATER_H

#include <QDialog>


namespace Ui {
class EditProfileWater;
}

class EditProfileWater : public QDialog
{
    Q_OBJECT

signals:
    void entry_changed();

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

private slots:
    void on_saveButton_clicked();
    void on_cloneButton_clicked();
    void on_quitButton_clicked();
    void on_deleteButton_clicked();
    void is_changed();
    void water_changed();
    void calcium_changed(double val);
    void total_alkalinity_changed(double val);
    void sulfate_changed(double val);
    void chloride_changed(double val);
    void sodium_changed(double val);
    void magnesium_changed(double val);
    void ph_changed(double val);

private:
    Ui::EditProfileWater *ui;
    int recno;
    bool textIsChanged = false;
    double calcium, bicarbonate, sulfate, chloride, sodium, magnesium, ph, total_alkalinity;

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

#endif

mercurial