src/ImportXML.h

Fri, 10 Feb 2023 17:28:46 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 10 Feb 2023 17:28:46 +0100
changeset 492
c3a781b4d35b
parent 288
717140ab5647
permissions
-rw-r--r--

ChartCarbonate saves the image path in the settings file. Conditional debug messages in a lot on monitor files. In Fermenter monitor details make the status background red if offline. A lot more generic variables instead of continuous expensive calls to MySQL. If fermenter values for the thermometers are not OK, then do not show anything.

#ifndef _IMPORTXML_H
#define _IMPORTXML_H

#include <QDialog>
#include <QJsonDocument>

namespace Ui {
class ImportXML;
}

class ImportXML : public QDialog
{
    Q_OBJECT

public:
    explicit ImportXML(QWidget *parent = 0);
    ~ImportXML();

private slots:
    void on_openButton_clicked();

private:
    Ui::ImportXML *ui;

    void WindowTitle();
};

#endif

mercurial