modif export + automatisation + fonction qui centralise tout les exports

This commit is contained in:
p2405951
2025-06-20 16:08:32 +02:00
parent 0ca9c535c5
commit 105f1a6918
13 changed files with 624 additions and 122 deletions
+6 -2
View File
@@ -24,8 +24,8 @@ public:
void loadPath();
void addNewPath();
void addNewStep();
void exportHTMLMap();
void exportHTMLMap(int index);
void loadAndExportPaths();
QString getCurrentFile() const;
void setCurrentFile(const QString &newCurrentFile);
QList<Path *> getPath() const;
@@ -33,6 +33,9 @@ public:
Path *getCurrentPath() const;
void setCurrentPath(Path *newCurrentPath);
int getIndexPath() const;
void setIndexPath(int newIndexPath);
private slots:
void on_pushButton_clicked();
@@ -43,6 +46,7 @@ private slots:
private:
Ui::MainWindow *ui;
QString currentFile;
static int indexPath;
bool textChanged;
QList<Path*> path;
Path* currentPath;