diff -r 1ac3fb2569c1 -r 684c6e74cc1b src/InventoryHops.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/InventoryHops.h Sun Feb 20 20:22:49 2022 +0100 @@ -0,0 +1,32 @@ +#ifndef _INVENTORYHOPS_H +#define _INVENTORYHOPS_H + +#include + +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