src/EditSupplier.h

Sat, 22 Jun 2024 11:28:14 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 22 Jun 2024 11:28:14 +0200
changeset 537
48de0f61e5ea
parent 21
15e5879df8dc
permissions
-rw-r--r--

The iSpindel monitor, detail and chart screens try to use the polynomial calibration data to show the SG. Fallback to already logged data if this fails.

#ifndef _EDITSPUPPLIER_H
#define _EDITSPUPPLIER_H

#include <QDialog>


namespace Ui {
class EditSupplier;
}

class EditSupplier : public QDialog
{
    Q_OBJECT

signals:
    void entry_changed();

public:
    explicit EditSupplier(int id, QWidget *parent = 0);
    ~EditSupplier();

private slots:
    void on_saveButton_clicked();
    void on_quitButton_clicked();
    void on_deleteButton_clicked();
    void is_changed();

private:
    Ui::EditSupplier *ui;
    int recno;
    bool textIsChanged = false;

    void WindowTitle();
};

#endif

mercurial