Wed, 22 Jun 2022 22:50:37 +0300
Add x, y, z properties to VectorInput
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 | ||
178 | 19 | #include <QStyleFactory> |
16 | 20 | #include "uiutilities.h" |
21 | ||
22 | QVector<QAction*> uiutilities::collectActions(QObject* subject) | |
23 | { | |
24 | QVector<QAction*> actions; | |
25 | for (QAction* action : subject->findChildren<QAction*>()) | |
26 | { | |
27 | if (not action->text().isEmpty() | |
28 | and action->data().isNull() | |
29 | and not action->objectName().isEmpty()) | |
30 | { | |
31 | actions.push_back(action); | |
32 | } | |
33 | } | |
34 | return actions; | |
35 | } | |
36 | ||
37 | uiutilities::KeySequenceMap uiutilities::makeKeySequenceMap(const QVector<QAction*>& actions) | |
38 | { | |
39 | KeySequenceMap result; | |
40 | for (QAction* action : actions) | |
41 | { | |
42 | result[action->objectName()] = action->shortcut(); | |
43 | } | |
44 | return result; | |
45 | } | |
178 | 46 | |
47 | void uiutilities::colorizeWidget(QWidget* widget, const QColor& color) | |
48 | { | |
49 | QPalette pal{color}; | |
50 | widget->setPalette(pal); | |
51 | widget->setAutoFillBackground(true); | |
52 | widget->setStyle(QStyleFactory::create("Fusion")); | |
53 | widget->update(); | |
54 | } |