src/ImportBrew.h

Sun, 15 Oct 2023 17:37:08 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 15 Oct 2023 17:37:08 +0200
changeset 510
080524ab2fe8
parent 387
7945bf3be1f9
permissions
-rw-r--r--

Changed xCal array to a QList. Added sort on angle. Added save data. Added quit/save dialog.

#ifndef _IMPORTBREW_H
#define _IMPORTBREW_H

#include <QDialog>
#include <QJsonDocument>

namespace Ui {
class ImportBrew;
}

class ImportBrew : public QDialog
{
    Q_OBJECT

public:
    explicit ImportBrew(QWidget *parent = 0);
    ~ImportBrew();

private slots:
    void on_openButton_clicked();

private:
    Ui::ImportBrew *ui;

    void WindowTitle();
};

#endif

mercurial