src/ProfileMashs.h

Sat, 19 Mar 2022 22:59:11 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 19 Mar 2022 22:59:11 +0100
changeset 65
2ef981980daa
parent 49
29cf6e350063
child 75
5f953abbd73c
permissions
-rw-r--r--

Finally found out how to make these databases work on a single main window. And it's dynamic too.

#ifndef _PROFILEMASHS_H
#define _PROFILEMASHS_H

#include <QDialog>

namespace Ui {
class ProfileMashs;
}

class ProfileMashs : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

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

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

#endif

mercurial