Add icons

This commit is contained in:
Arnaud 2026-02-20 15:40:23 +04:00
parent 7907ecc6b2
commit 2049492519
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F
4 changed files with 48 additions and 0 deletions

12
src/qml/AdvancedIcon.qml Normal file
View File

@ -0,0 +1,12 @@
import QtQuick
// X pattern advanced / expert mode
DotIcon {
pattern: [
1, 0, 0, 0, 1,
0, 1, 0, 1, 0,
0, 0, 1, 0, 0,
0, 1, 0, 1, 0,
1, 0, 0, 0, 1
]
}

12
src/qml/GuideIcon.qml Normal file
View File

@ -0,0 +1,12 @@
import QtQuick
// Crosshair pattern step-by-step guide
DotIcon {
pattern: [
0, 0, 1, 0, 0,
0, 0, 1, 0, 0,
1, 1, 0, 1, 1,
0, 0, 1, 0, 0,
0, 0, 1, 0, 0
]
}

12
src/qml/PortIcon.qml Normal file
View File

@ -0,0 +1,12 @@
import QtQuick
// Right arrow pattern manual port forwarding
DotIcon {
pattern: [
0, 0, 1, 0, 0,
0, 0, 0, 1, 0,
1, 1, 1, 1, 1,
0, 0, 0, 1, 0,
0, 0, 1, 0, 0
]
}

12
src/qml/UpnpIcon.qml Normal file
View File

@ -0,0 +1,12 @@
import QtQuick
// Diamond / network pattern UPnP automatic port forwarding
DotIcon {
pattern: [
0, 0, 1, 0, 0,
0, 1, 0, 1, 0,
1, 0, 1, 0, 1,
0, 1, 0, 1, 0,
0, 0, 1, 0, 0
]
}