src/Setup.h

Sun, 20 Feb 2022 11:49:28 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 20 Feb 2022 11:49:28 +0100
changeset 22
b52978ee7412
parent 16
a5d8e783a7b0
child 41
dc4b659a320b
permissions
-rw-r--r--

Backport of the InventorySuppliers window.

#ifndef _SETUP_H
#define _SETUP_H

#include <QDialog>

namespace Ui {
class Setup;
}

class Setup : public QDialog
{
    Q_OBJECT

public:
    explicit Setup(QWidget *parent = nullptr);
    ~Setup();

signals:
    void firstWindow();

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

private:
    Ui::Setup *ui;
    bool fieldIsChanged = false;
};

#endif

mercurial