src/InventorySuppliers.h

Sat, 19 Mar 2022 22:59:11 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 19 Mar 2022 22:59:11 +0100
changeset 65
2ef981980daa
parent 11
c9cdc15d3caf
child 67
55aa8c3146ee
permissions
-rw-r--r--

Finally found out how to make these databases work on a single main window. And it's dynamic too.

#ifndef _INVENTORYSPUPPLIERS_H
#define _INVENTORYSPUPPLIERS_H

#include <QDialog>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QTableWidget>

namespace Ui {
class InventorySuppliers;
}

class InventorySuppliers : public QDialog
{
    Q_OBJECT

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

//signals:
//    void firstWindow();

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

private:
    QGridLayout *gridLayout;
    QTableWidget *tableSuppliers;
    QGroupBox *groupBox;
    QHBoxLayout *horizontalLayout;
    QPushButton *quitButton;
    QPushButton *insertButton;

    void edit(int recno);
};

#endif

mercurial