QmlDesigner: Add wizard font icons

Task-number: QDS-5284
Change-Id: Ifb1e4128d4ae74396a35566bae2c43017c4e1f34
Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
Henning Gruendl
2021-10-19 12:54:41 +02:00
committed by Thomas Hartmann
parent 48c30ed76c
commit 02b8bb3ac4
3 changed files with 18 additions and 4 deletions

View File

@@ -162,10 +162,17 @@ QtObject {
readonly property string visibilityOff: "\u009D" // visibilityOff2
readonly property string visibilityOn: "\u009E"
readonly property string wildcard: "\u009F"
readonly property string zoomAll: "\u00A0"
readonly property string zoomIn: "\u00A1"
readonly property string zoomOut: "\u00A2"
readonly property string zoomSelection: "\u00A3"
readonly property string wizardsAutomotive: "\u00A0"
readonly property string wizardsDesktop: "\u00A1"
readonly property string wizardsGeneric: "\u00A2"
readonly property string wizardsMcuEmpty: "\u00A3"
readonly property string wizardsMcuGraph: "\u00A4"
readonly property string wizardsMobile: "\u00A5"
readonly property string wizardsUnknown: "\u00A6"
readonly property string zoomAll: "\u00A7"
readonly property string zoomIn: "\u00A8"
readonly property string zoomOut: "\u00A9"
readonly property string zoomSelection: "\u00AA"
readonly property font iconFont: Qt.font({
"family": controlIcons.name,

View File

@@ -170,6 +170,13 @@ public:
visibilityOff, // visibilityOff2
visibilityOn,
wildcard,
wizardsAutomotive,
wizardsDesktop,
wizardsGeneric,
wizardsMcuEmpty,
wizardsMcuGraph,
wizardsMobile,
wizardsUnknown,
zoomAll,
zoomIn,
zoomOut,