src/PrinterDialog.h

Mon, 24 Oct 2022 15:25:50 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 24 Oct 2022 15:25:50 +0200
changeset 419
d49f38cc76a0
parent 386
2e30c9c20d22
child 459
fbb250c725bb
permissions
-rw-r--r--

The equipment editor uses named fields for database io. Edit field 'trub chiller loss' is now called 'trub loss', but will be renamed again. Removed editing hop_utilization, lauter_volume and lauter_height. These fields were never used in the application. Not yet removed from the database. Added chiller_type, chiller_to79, chiller_volume, chiller_lpm and chiller_loss fields so that we can tie a chiller to the equipment setup. Renamed some chiller names.

#ifndef	_PRINTERDIALOG_H
#define	_PRINTERDIALOG_H

#include <QDialog>
#include <QPrinter>
#include <QPainter>


enum JobType { PR_SUPPLIES, PR_YEASTBANK, PR_RECIPE, PR_PRODUCT, PR_CHECKLIST, PR_REP_TOTAL, PR_REP_EFF, PR_REP_SVG };

namespace Ui {
class PrinterDialog;
}


class PrinterDialog : public QDialog
{
	Q_OBJECT

public:
    /**
     * @brief Construct a new Printer Dialog
     * @param parent
     */
    explicit PrinterDialog(int job, int rec, QWidget *parent = 0);

    /**
     * @brief Destroy the Printer Dialog
     */
    ~PrinterDialog();

public slots:
    void printDocument(QPrinter *printer);

private:
    int p_job;
    int p_rec;

    void printHeader(QPainter *painter);
    QString strDensity(double density);
    QString strDiff(double v1, double v2, int decimals, QString suffix);
    void checkHeader(QPainter *painter, qreal *y, QString text);
    void checkLine(QPainter *painter, qreal *y, QString text);
    void checkInput(QPainter *painter, qreal *y, QString text, QString prompt);
    bool checkSplit(QPainter *painter, qreal *y, int moment);
};

#endif

mercurial