Create function, add path data and interaction

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-06-18 23:13:05 +02:00
parent 3048920666
commit 332fa2bc0b
2 changed files with 88 additions and 0 deletions
+7
View File
@@ -3,6 +3,8 @@
#include <QMainWindow>
#include "path.h"
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
@@ -24,9 +26,14 @@ public:
void addNewStep();
void exportHTMLMap();
private slots:
void on_pushButton_clicked();
private:
Ui::MainWindow *ui;
QString currentFile;
bool textChanged;
QList<Path*> path;
Path* currentPath;
};
#endif // MAINWINDOW_H