src/MoniSpindels.h

Mon, 16 Jan 2023 16:55:41 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 16 Jan 2023 16:55:41 +0100
changeset 464
1fed3ff9a64e
parent 329
b57299738980
child 503
61c114afb0ee
permissions
-rw-r--r--

Show 0 if afterboil volume is invalid instead of the chiller volume. Added product tab 13. Here the images (beerlabels, brew pictures) for a product will be shown. Resized all product tabs. Added STA1 tickmark in the yeasts table.

#ifndef _MONISPINDELS_H
#define _MONISPINDELS_H

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

namespace Ui {
class MoniSpindels;
}

class MoniSpindels : public QDialog
{
    Q_OBJECT

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

signals:
    void setStatus(QString);
    void updateiSpindel(QString);

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

public slots:
    void refreshiSpindels(QString);

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

    void edit(int recno);
};

#endif

mercurial