src/Setup.h

Sun, 20 Feb 2022 20:22:49 +0100

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

Added hops editor.

#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