src/InventoryFermentables.h

Tue, 08 Mar 2022 16:15:31 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 08 Mar 2022 16:15:31 +0100
changeset 51
355100088e1f
parent 42
88e827ea7172
child 68
abac28effb21
permissions
-rw-r--r--

When editing mash step cells the table is updated. The combobox changes are finally working too.

#ifndef _INVENTORYFERMENTABLES_H
#define _INVENTORYFERMENTABLES_H

#include <QDialog>

namespace Ui {
class InventoryFermentables;
}

class InventoryFermentables : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

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

#endif

mercurial