src/ChartiSpindel.h

Mon, 09 Jan 2023 17:03:19 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 09 Jan 2023 17:03:19 +0100
changeset 452
c4c5d02131be
parent 438
e06b04ef1579
permissions
-rw-r--r--

Limit mash steptime to 240 minutes. Limit mash steps to 82 degrees celsius. In estimate_fg limit total mash time to 240 minutes and increased the water/grain ration from 5.5 to 6 l/kg.

#ifndef _CHARTISPINDEL_H
#define _CHARTISPINDEL_H

#include "MainWindow.h"

#include <QDialog>
#include <QDialogButtonBox>

class Callout;

namespace Ui {
class ChartiSpindel;
}

class ChartiSpindel : public QDialog
{
    Q_OBJECT

private slots:
    void savePNG();

public slots:
    void tooltip(QPointF point, bool state);

public:
    explicit ChartiSpindel(QString code, QString name, QWidget *parent = 0);
    ~ChartiSpindel();

private:
    QChartView *chartView;
    QChart *chart;
    Callout *t_tooltip = 0;
    QLineSeries *temperature, *density, *battery;
};

#endif

mercurial