Wed, 25 May 2022 20:36:34 +0300
Fix pick() picking from weird places on the screen with high DPI scaling
glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account
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> | |
22 | #include "main.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 | |
7 | 53 | class LibraryManager : public QAbstractTableModel |
54 | { | |
55 | Q_OBJECT | |
56 | public: | |
57 | LibraryManager(QObject* parent = nullptr); | |
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
58 | LibraryManager(Configuration* settings, QObject* parent = nullptr); |
7 | 59 | QVector<Library>::const_iterator begin() const; |
60 | QVector<Library>::const_iterator end() const; | |
12 | 61 | QString findFile(QString fileName) const; |
7 | 62 | void addLibrary(const Library& library); |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
63 | void removeLibrary(const int libraryIndex); |
7 | 64 | const Library& library(int libraryIndex) const; |
65 | void setLibraryPath(int libraryIndex, const QDir& path); | |
66 | void setLibraryRole(int libraryIndex, const Library::Role role); | |
41
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
67 | void restoreFromSettings(Configuration* settings); |
0abada2a9802
added automated configuration collection
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
68 | void storeToSettings(Configuration* settings); |
7 | 69 | int count() const; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
70 | void moveLibrary(const int libraryFromIndex, const int libraryToIndex); |
7 | 71 | // Definitions for QAbstractTableModel |
72 | Qt::ItemFlags flags(const QModelIndex& index) const override; | |
73 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; | |
74 | QVariant headerData( | |
75 | int section, | |
76 | Qt::Orientation orientation, | |
77 | int role = Qt::DisplayRole) const override; | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
78 | int rowCount(const QModelIndex&) const override; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
79 | int columnCount(const QModelIndex&) const override; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
80 | bool isValidIndex(const int libraryIndex) const; |
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
81 | ldraw::ColorTable loadColorTable(QTextStream& errors); |
7 | 82 | private: |
83 | enum Column | |
84 | { | |
85 | RoleColumn, | |
86 | PathColumn | |
87 | }; | |
88 | void signalLibraryChange(int library); | |
89 | Libraries libraries; | |
90 | }; |