src/InventoryWaters.h

Sun, 20 Mar 2022 14:08:05 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 20 Mar 2022 14:08:05 +0100
changeset 67
55aa8c3146ee
parent 46
404b79f6a681
child 72
7992c686e349
permissions
-rw-r--r--

Removed sizegrip from the statusbar

#ifndef _INVENTORYWATERS_H
#define _INVENTORYWATERS_H

#include <QDialog>

namespace Ui {
class InventoryWaters;
}

class InventoryWaters : public QDialog
{
    Q_OBJECT

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

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::InventoryWaters *ui;
    void edit(int recno);
};

#endif

mercurial