config moved to c++ plugin, removed old qml + fileview implementation

This commit is contained in:
2026-08-13 02:25:26 +02:00
parent c29b91cd26
commit 3cd3209b28
341 changed files with 4851 additions and 3502 deletions
+9 -8
View File
@@ -1,7 +1,8 @@
import qs.Config
import ZShell.Config
import ZShell.Internal
import QtQuick
import QtQuick.Templates
import qs.Services
BusyIndicator {
id: root
@@ -17,12 +18,12 @@ BusyIndicator {
}
property int animState
property color bgColor: DynamicColors.palette.m3secondaryContainer
property color fgColor: DynamicColors.palette.m3primary
property real implicitSize: Appearance.font.size.normal * 3
property color bgColor: Colors.palette.m3secondaryContainer
property color fgColor: Colors.palette.m3primary
property real implicitSize: Tokens.font.size.normal * 3
property real internalStrokeWidth: strokeWidth
readonly property alias progress: manager.progress
property real strokeWidth: Appearance.padding.small * 0.8
property real strokeWidth: Tokens.padding.small * 0.8
property alias type: manager.indeterminateAnimationType
implicitHeight: implicitSize
@@ -50,7 +51,7 @@ BusyIndicator {
}
transitions: Transition {
Anim {
duration: manager.completeEndDuration * Appearance.anim.durations.scale
duration: manager.completeEndDuration * Tokens.anim.durations.scale
properties: "opacity,internalStrokeWidth"
}
}
@@ -76,7 +77,7 @@ BusyIndicator {
}
NumberAnimation {
duration: manager.duration * Appearance.anim.durations.scale
duration: manager.duration * Tokens.anim.durations.scale
from: 0
loops: Animation.Infinite
property: "progress"
@@ -86,7 +87,7 @@ BusyIndicator {
}
NumberAnimation {
duration: manager.completeEndDuration * Appearance.anim.durations.scale
duration: manager.completeEndDuration * Tokens.anim.durations.scale
from: 0
property: "completeEndProgress"
running: root.animState === CircularIndicator.Completing