Sun, 10 Jan 2021 15:28:44 +0200
added tool base code
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 |
20 | #include <QDate> | |
21 | #include "main.h" | |
22 | ||
23 | struct LDHeader | |
24 | { | |
25 | struct HistoryEntry | |
26 | { | |
27 | QDate date; | |
28 | QString author; | |
29 | QString description; | |
30 | }; | |
31 | enum FileType | |
32 | { | |
33 | NoHeader, | |
34 | Part, | |
35 | Subpart, | |
36 | Shortcut, | |
37 | Primitive, | |
38 | Primitive_8, | |
39 | Primitive_48, | |
40 | Configuration, | |
41 | } type = NoHeader; | |
42 | enum Qualifier | |
43 | { | |
44 | Alias = 1 << 0, | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
45 | PhysicalColour = 1 << 1, |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
46 | FlexibleSection = 1 << 2, |
3 | 47 | }; |
48 | QFlags<Qualifier> qualfiers; | |
49 | QString description; | |
50 | QString name; | |
51 | QString author; | |
52 | QString category; | |
53 | QString cmdline; | |
54 | QString help; | |
55 | QString keywords; | |
56 | QVector<HistoryEntry> history; | |
57 | enum | |
58 | { | |
59 | UnspecifiedLicense, | |
60 | CaLicense, | |
61 | NonCaLicense | |
62 | } license = UnspecifiedLicense; | |
63 | static decltype(license) defaultLicense(); | |
64 | }; | |
65 | ||
66 | Q_DECLARE_OPERATORS_FOR_FLAGS(QFlags<LDHeader::Qualifier>) |