src/InventorySuppliers.h

Sat, 12 Feb 2022 21:24:43 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 12 Feb 2022 21:24:43 +0100
changeset 6
f8474f2c5db9
child 8
ac4e363c09a7
permissions
-rw-r--r--

We can fetch a list of suppliers and show it in the wrong window. Still a lot to learn about Qt5

#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_changeButton_clicked();

private:
    Ui::InventorySuppliers *ui;
};

#endif

mercurial