Tue, 17 Mar 2020 23:13:29 +0200
object editor widgets start to form up
24 | 1 | /* |
2 | * LDForge: LDraw parts authoring CAD | |
3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
4 | * | |
5 | * This program is free software: you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation, either version 3 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
3 | 19 | #pragma once |
12 | 20 | #include "libraries.h" |
3 | 21 | #include "model.h" |
22 | ||
5 | 23 | class DocumentManager : public QObject |
3 | 24 | { |
5 | 25 | Q_OBJECT |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
26 | using ModelPointer = std::unique_ptr<Model>; |
3 | 27 | public: |
21 | 28 | DocumentManager(QObject* parent = nullptr); |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
29 | QString newModel(); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
30 | Model* findModelByName(const QString& name); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
31 | QString openModel(const QString& path, QTextStream& errorStream); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
32 | QString makeNewModelName(); |
12 | 33 | void loadDependenciesForModel(const QString& modelName, |
23
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
34 | const QString& path, |
12 | 35 | const LibraryManager& libraries, |
36 | QTextStream& errorStream); | |
3 | 37 | private: |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
38 | int untitledNameCounter = 0; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
39 | std::map<QString, ModelPointer> openModels; |
12 | 40 | void loadDependenciesForModel(const QString& modelName, |
23
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
41 | const QString& path, |
12 | 42 | const LibraryManager& libraries, |
43 | QStringList& missing, | |
44 | QStringList& processed, | |
45 | QTextStream& errorStream); | |
3 | 46 | }; |