src/InventoryMiscs.h

Sat, 05 Mar 2022 21:49:36 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 05 Mar 2022 21:49:36 +0100
changeset 45
4024b389f689
parent 28
93a70b1502ca
child 71
5bd0d7be0167
permissions
-rw-r--r--

Added miscs XML export

#ifndef _INVENTORYMISCS_H
#define _INVENTORYMISCS_H

#include <QDialog>

namespace Ui {
class InventoryMiscs;
}

class InventoryMiscs : public QDialog
{
    Q_OBJECT

public:
    explicit InventoryMiscs(QWidget *parent = nullptr);
    ~InventoryMiscs();

signals:
    void firstWindow();

private slots:
    void on_quitButton_clicked();
    void on_insertButton_clicked();
    void on_editButton_clicked();
    void on_exportButton_clicked();
    void refreshTable(void);

private:
    Ui::InventoryMiscs *ui;
    void edit(int recno);
};

#endif

mercurial