src/InventoryEquipments.h

Sun, 20 Mar 2022 16:49:50 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 20 Mar 2022 16:49:50 +0100
changeset 70
556b4202c5e7
parent 47
160e4b407a7d
child 73
ebd2fc719b1a
permissions
-rw-r--r--

Inventory Yeasts now on the mainscreen.

#ifndef _INVENTORYEQUIPS_H
#define _INVENTORYEQUIPS_H

#include <QDialog>

namespace Ui {
class InventoryEquipments;
}

class InventoryEquipments : public QDialog
{
    Q_OBJECT

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

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::InventoryEquipments *ui;
    void edit(int recno);
};

#endif

mercurial