src/InventoryHops.h

Thu, 17 Mar 2022 13:54:39 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 17 Mar 2022 13:54:39 +0100
changeset 60
0d65238ebedc
parent 44
5a9a159c2d34
child 69
228cb2a01acf
permissions
-rw-r--r--

Updated translations and some messages.

#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 on_exportButton_clicked();
    void refreshTable(void);

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

#endif

mercurial