Mon, 20 Jun 2022 17:27:30 +0300
Add a basic message log
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 | ||
7 | 19 | #pragma once |
20 | #include <QDir> | |
21 | #include <QAbstractTableModel> | |
206
654661eab7f3
More refactor, merged main.h, basics.h and utility.h into one header file basics.h and removed plenty of unused code
Teemu Piippo <teemu@hecknology.net>
parents:
205
diff
changeset
|
22 | #include "basics.h" |
26 | 23 | #include "colors.h" |
7 | 24 | |
25 | class QSettings; | |
26 | ||
27 | struct Library | |
28 | { | |
29 | enum Role | |
30 | { | |
31 | OfficialLibrary, | |
32 | UnofficialLibrary, | |
33 | WorkingLibrary, | |
34 | } role; | |
35 | QDir path; | |
36 | static QString libraryRoleName(const Role role); | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
37 | static bool isValidRole(const Role role); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
38 | constexpr static const Role allRoles[] = {OfficialLibrary, UnofficialLibrary, WorkingLibrary}; |
7 | 39 | }; |
40 | ||
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
41 | bool operator==(const Library& one, const Library& other); |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
42 | |
7 | 43 | Q_DECLARE_METATYPE(Library) |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
44 | Q_DECLARE_METATYPE(Library::Role) |
7 | 45 | QDataStream &operator<<(QDataStream&, const Library&); |
46 | QDataStream &operator>>(QDataStream&, Library&); | |
47 | ||
48 | using Libraries = QVector<Library>; | |
49 | Q_DECLARE_METATYPE(Libraries) | |
50 | ||
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
51 | class Configuration; |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
52 | |
230
a1f3f7d9078b
rename LibraryManager -> LibrariesModel
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
218
diff
changeset
|
53 | class LibrariesModel : public QAbstractTableModel |
7 | 54 | { |
55 | Q_OBJECT | |
56 | public: | |
230
a1f3f7d9078b
rename LibraryManager -> LibrariesModel
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
218
diff
changeset
|
57 | LibrariesModel(QObject* parent = nullptr); |
7 | 58 | QVector<Library>::const_iterator begin() const; |
59 | QVector<Library>::const_iterator end() const; | |
12 | 60 | QString findFile(QString fileName) const; |
7 | 61 | void addLibrary(const Library& library); |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
62 | void removeLibrary(const int libraryIndex); |
7 | 63 | const Library& library(int libraryIndex) const; |
64 | void setLibraryPath(int libraryIndex, const QDir& path); | |
65 | void setLibraryRole(int libraryIndex, const Library::Role role); | |
218
63125c36de73
Replace config collector with a simpler system
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
206
diff
changeset
|
66 | void restoreFromSettings(); |
63125c36de73
Replace config collector with a simpler system
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
206
diff
changeset
|
67 | void storeToSettings(); |
7 | 68 | int count() const; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
69 | void moveLibrary(const int libraryFromIndex, const int libraryToIndex); |
7 | 70 | // Definitions for QAbstractTableModel |
71 | Qt::ItemFlags flags(const QModelIndex& index) const override; | |
72 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; | |
73 | QVariant headerData( | |
74 | int section, | |
75 | Qt::Orientation orientation, | |
76 | int role = Qt::DisplayRole) const override; | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
77 | int rowCount(const QModelIndex&) const override; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
78 | int columnCount(const QModelIndex&) const override; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
79 | bool isValidIndex(const int libraryIndex) const; |
205 | 80 | ColorTable loadColorTable(QTextStream& errors) const; |
7 | 81 | private: |
82 | enum Column | |
83 | { | |
84 | RoleColumn, | |
85 | PathColumn | |
86 | }; | |
87 | void signalLibraryChange(int library); | |
88 | Libraries libraries; | |
89 | }; |