src/ImportXML.h

Mon, 23 Jan 2023 17:23:10 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 23 Jan 2023 17:23:10 +0100
changeset 472
db8ad1c2112b
parent 288
717140ab5647
permissions
-rw-r--r--

If a new image for a product is loaded, check if the path is available. If not, use the home directory.

#ifndef _IMPORTXML_H
#define _IMPORTXML_H

#include <QDialog>
#include <QJsonDocument>

namespace Ui {
class ImportXML;
}

class ImportXML : public QDialog
{
    Q_OBJECT

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

private slots:
    void on_openButton_clicked();

private:
    Ui::ImportXML *ui;

    void WindowTitle();
};

#endif

mercurial