src/EditProfileMash.h

changeset 49
29cf6e350063
child 50
571a13a4860b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/EditProfileMash.h	Mon Mar 07 17:33:22 2022 +0100
@@ -0,0 +1,41 @@
+#ifndef _EDITPROFILEMASH_H
+#define _EDITPROFILEMASH_H
+
+#include <QDialog>
+#include <QJsonDocument>
+
+namespace Ui {
+class EditProfileMash;
+}
+
+class EditProfileMash : public QDialog
+{
+    Q_OBJECT
+
+signals:
+    void entry_changed();
+
+public:
+    explicit EditProfileMash(int id, QWidget *parent = 0);
+    ~EditProfileMash();
+
+private slots:
+    void on_saveButton_clicked();
+    void on_quitButton_clicked();
+    void on_deleteButton_clicked();
+    void is_changed();
+    void refreshTable(void);
+    void cell_Changed(int nRow, int nCol);
+    void on_addButton_clicked();
+    void on_deleteRow_clicked();
+
+private:
+    Ui::EditProfileMash *ui;
+    int recno;
+    bool textIsChanged = false;
+    QJsonDocument steps;
+
+    void WindowTitle();
+};
+
+#endif

mercurial