src/InventoryEquipments.h

Sun, 27 Feb 2022 20:45:41 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 27 Feb 2022 20:45:41 +0100
changeset 30
0fec6a1abd13
child 47
160e4b407a7d
permissions
-rw-r--r--

Added inventory equipment table and editor.

#ifndef _INVENTORYEQUIPS_H
#define _INVENTORYEQUIPS_H

#include <QDialog>

namespace Ui {
class InventoryEquipments;
}

class InventoryEquipments : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

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

#endif

mercurial