src/ProfileStyles.h

changeset 56
eb6c564192f4
child 76
93395c4d6c8d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ProfileStyles.h	Tue Mar 15 17:00:54 2022 +0100
@@ -0,0 +1,32 @@
+#ifndef _PROFILESTYLES_H
+#define _PROFILESTYLES_H
+
+#include <QDialog>
+
+namespace Ui {
+class ProfileStyles;
+}
+
+class ProfileStyles : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit ProfileStyles(QWidget *parent = nullptr);
+    ~ProfileStyles();
+
+signals:
+    void firstWindow();
+
+private slots:
+    void on_quitButton_clicked();
+    void on_insertButton_clicked();
+    void on_editButton_clicked();
+    void refreshTable(void);
+
+private:
+    Ui::ProfileStyles *ui;
+    void edit(int recno);
+};
+
+#endif

mercurial