src/Setup.h

Wed, 16 Feb 2022 22:11:29 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 16 Feb 2022 22:11:29 +0100
changeset 15
c58b82549713
child 16
a5d8e783a7b0
permissions
-rw-r--r--

Started adding the global setup screen.

#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_insertButton_clicked();
//    void on_editButton_clicked();
//    void refreshTable(void);

private:
    Ui::Setup *ui;
};

#endif

mercurial