src/InventoryFermentables.h

Mon, 28 Feb 2022 21:21:33 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 28 Feb 2022 21:21:33 +0100
changeset 31
ab17a56a47dd
parent 19
c94edc758a5b
child 42
88e827ea7172
permissions
-rw-r--r--

Setup translation system and started the Dutch translation

#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