src/InventoryFermentables.h

Fri, 18 Feb 2022 15:53:02 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 18 Feb 2022 15:53:02 +0100
changeset 19
c94edc758a5b
child 42
88e827ea7172
permissions
-rw-r--r--

Added Inventory Fermentables table.

#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 refreshTable(void);

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

#endif

mercurial