src/Webcam.h

Fri, 10 Feb 2023 10:09:37 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 10 Feb 2023 10:09:37 +0100
changeset 490
b67fb2e5bb41
parent 391
42936c86cbac
permissions
-rw-r--r--

Fermenter charts, only draw lines that are really used. Better auto scaling, not using the internal version. If only a air line is to be shown, make it fat. Save the path to download the image in the settings file.

#ifndef _WEBCAM_H
#define _WEBCAM_H

#include "MainWindow.h"

#include <QDialog>
#include <QDialogButtonBox>
#include <QWebEngineView>


namespace Ui {
class Webcam;
}

class Webcam : public QDialog
{
    Q_OBJECT

public:
    explicit Webcam(QString url, QWidget *parent = 0);
    ~Webcam();

private:
    QDialog* dialog;
    void windowClose();
};

#endif

mercurial