src/Setup.h

Mon, 28 Feb 2022 21:21:33 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 28 Feb 2022 21:21:33 +0100
changeset 31
ab17a56a47dd
parent 16
a5d8e783a7b0
child 41
dc4b659a320b
permissions
-rw-r--r--

Setup translation system and started the Dutch translation

#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