src/InventoryYeasts.h

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

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 21 Feb 2022 21:17:33 +0100
changeset 25
a9da2744609e
child 44
5a9a159c2d34
permissions
-rw-r--r--

Added inventory yeasts editor. Fixed resource icons location.

#ifndef _INVENTORYYEASTS_H
#define _INVENTORYYEASTS_H

#include <QDialog>

namespace Ui {
class InventoryYeasts;
}

class InventoryYeasts : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

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

#endif

mercurial