src/InventoryWaters.h

Sat, 26 Feb 2022 16:34:20 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 26 Feb 2022 16:34:20 +0100
changeset 29
76846c99f827
child 46
404b79f6a681
permissions
-rw-r--r--

Added inventory water editor and table. In Yeasts table make sure the fields without a tickmark are empty. Removed Utils::Round function, not reliable.

#ifndef _INVENTORYWATERS_H
#define _INVENTORYWATERS_H

#include <QDialog>

namespace Ui {
class InventoryWaters;
}

class InventoryWaters : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

private:
    Ui::InventoryWaters *ui;
    void edit(int recno);
};

#endif

mercurial