src/header.h

changeset 209
c93e4a1eaadb
parent 208
930928b760a2
child 210
232e7634cc8a
equal deleted inserted replaced
208:930928b760a2 209:c93e4a1eaadb
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
19 #pragma once
20 #include <QDate>
21 #include "basics.h"
22
23 struct LDHeader
24 {
25 static const QString caLicenseString;
26 static const QString nonCaLicenseString;
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,
47 PhysicalColour = 1 << 1,
48 FlexibleSection = 1 << 2,
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
68 LDHeader::FileType headerTypeFromString(const QString& string);
69 QString headerTypeToString(const LDHeader::FileType fileType);
70 QString headerToString(const LDHeader& header);
71
72 Q_DECLARE_OPERATORS_FOR_FLAGS(QFlags<LDHeader::Qualifier>)

mercurial