src/InventoryHops.h

changeset 24
684c6e74cc1b
child 44
5a9a159c2d34
--- /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 <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