src/NullDateEdit.h

Fri, 08 Jul 2022 13:24:45 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 08 Jul 2022 13:24:45 +0200
changeset 343
67e645b9d23f
parent 94
380b1331ad2e
permissions
-rw-r--r--

Removed old experiment to calculate flameout and whirlpool ibu's. Changed Tinseth calculation to use a time window so you can select the ibu contribution during a specified time. Added ibu_method Tinset++. Added calculation extensions for Tinseth++, this calculates the flameout and whirlpool effects on all hops. During cooling is to be done.

#include <QDateEdit>
class NullDateEdit : public QDateEdit
{
	Q_OBJECT
	Q_PROPERTY(QDate nullDate READ nullDate WRITE setDate USER true)
public:
    NullDateEdit(const QDate& date, QWidget* parent);
    NullDateEdit(QWidget* parent);
    ~NullDateEdit();
	
	QDate nullDate() const;

public slots:
	void clear();
	void setDate(const QDate& date);
};

mercurial