src/InventoryHops.h

Sun, 20 Feb 2022 20:22:49 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 20 Feb 2022 20:22:49 +0100
changeset 24
684c6e74cc1b
child 44
5a9a159c2d34
permissions
-rw-r--r--

Added hops editor.

#ifndef _INVENTORYHOPS_H
#define _INVENTORYHOPS_H

#include <QDialog>

namespace Ui {
class InventoryHops;
}

class InventoryHops : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

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

#endif

mercurial