Wed, 08 Jun 2022 20:41:21 +0300
Refactor colors.cpp/.h
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 | { | |
140 | 25 | static const QString caLicenseString; |
26 | static const QString nonCaLicenseString; | |
3 | 27 | struct HistoryEntry |
28 | { | |
29 | QDate date; | |
30 | QString author; | |
31 | QString description; | |
32 | }; | |
33 | enum FileType | |
34 | { | |
35 | NoHeader, | |
36 | Part, | |
37 | Subpart, | |
38 | Shortcut, | |
39 | Primitive, | |
40 | Primitive_8, | |
41 | Primitive_48, | |
42 | Configuration, | |
43 | } type = NoHeader; | |
44 | enum Qualifier | |
45 | { | |
46 | Alias = 1 << 0, | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
47 | PhysicalColour = 1 << 1, |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
48 | FlexibleSection = 1 << 2, |
3 | 49 | }; |
50 | QFlags<Qualifier> qualfiers; | |
51 | QString description; | |
52 | QString name; | |
53 | QString author; | |
54 | QString category; | |
55 | QString cmdline; | |
56 | QString help; | |
57 | QString keywords; | |
58 | QVector<HistoryEntry> history; | |
59 | enum | |
60 | { | |
61 | UnspecifiedLicense, | |
62 | CaLicense, | |
63 | NonCaLicense | |
64 | } license = UnspecifiedLicense; | |
65 | static decltype(license) defaultLicense(); | |
66 | }; | |
67 | ||
140 | 68 | LDHeader::FileType headerTypeFromString(const QString& string); |
69 | QString headerTypeToString(const LDHeader::FileType fileType); | |
70 | QString headerToString(const LDHeader& header); | |
71 | ||
3 | 72 | Q_DECLARE_OPERATORS_FOR_FLAGS(QFlags<LDHeader::Qualifier>) |