src/InventorySuppliers.h

Sun, 13 Feb 2022 20:24:33 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 13 Feb 2022 20:24:33 +0100
changeset 9
85656dc48131
parent 8
ac4e363c09a7
child 10
8aa2bd9ba9e8
permissions
-rw-r--r--

The Edit buttons include the record number in the database. Ready to build the modal supplier edit/insert/delete screen.

#ifndef _INVENTORYSPUPPLIERS_H
#define _INVENTORYSPUPPLIERS_H

#include <QDialog>

namespace Ui {
class InventorySuppliers;
}

class InventorySuppliers : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

private:
    Ui::InventorySuppliers *ui;
};

#endif

mercurial