src/ProfileFerments.h

Sat, 14 Oct 2023 17:18:52 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 14 Oct 2023 17:18:52 +0200
changeset 507
fa07b6c6238a
parent 79
e726db72da3c
permissions
-rw-r--r--

Added the cell edit function.

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

signals:
    void setStatus(QString);

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