src/InventorySuppliers.h

Sat, 05 Mar 2022 16:55:38 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 05 Mar 2022 16:55:38 +0100
changeset 43
26910c149073
parent 11
c9cdc15d3caf
child 65
2ef981980daa
permissions
-rw-r--r--

Set default homedir path and name for fermentables XML export. Intent just 1 byte.

#ifndef _INVENTORYSPUPPLIERS_H
#define _INVENTORYSPUPPLIERS_H

#include <QDialog>

namespace Ui {
class InventorySuppliers;
}

class InventorySuppliers : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

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

#endif

mercurial