src/ProfileFerments.h

Mon, 21 Mar 2022 11:44:51 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 21 Mar 2022 11:44:51 +0100
changeset 78
3a6cba2dd05d
parent 77
86a3277a7317
child 79
e726db72da3c
permissions
-rw-r--r--

Status and Windowtitle messages via signals and slots. Global setup now on the mainwindow.

#ifndef _PROFILEFERMENT_H
#define _PROFILEFERMENT_H

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

namespace Ui {
class ProfileFerments;
}

class ProfileFerments : public QDialog
{
    Q_OBJECT

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

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

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

    void edit(int recno);
};

#endif

mercurial