Corners: new option to show or hide screen rounded corners.

This commit is contained in:
Sébastien Atoch 2025-07-25 17:36:56 -04:00
parent f4ebd72b4c
commit 2dc106db5f
3 changed files with 60 additions and 0 deletions

View file

@ -159,6 +159,7 @@ Scope {
offsetX: -39
offsetY: 0
anchors.top: parent.top
visible: Settings.settings.showCorners
}
}
@ -185,6 +186,7 @@ Scope {
offsetX: 39
offsetY: 0
anchors.top: parent.top
visible: Settings.settings.showCorners
}
}
@ -210,6 +212,7 @@ Scope {
offsetX: -39
offsetY: 0
anchors.top: parent.top
visible: Settings.settings.showCorners
}
}
@ -235,6 +238,7 @@ Scope {
offsetX: 39
offsetY: 0
anchors.top: parent.top
visible: Settings.settings.showCorners
}
}
}

View file

@ -44,6 +44,7 @@ Singleton {
property string videoPath: "~/Videos/"
property bool showActiveWindowIcon: false
property bool showSystemInfoInBar: false
property bool showCorners: false
property bool showMediaInBar: false
property bool useSWWW: false
property bool randomWallpaper: false

View file

@ -252,6 +252,61 @@ Rectangle {
}
}
// Show Corners In Bar Setting
RowLayout {
spacing: 8
Layout.fillWidth: true
Layout.topMargin: 8
Text {
text: "Show Corners"
font.family: Theme.fontFamily
font.pixelSize: 13
font.bold: true
color: Theme.textPrimary
Layout.alignment: Qt.AlignVCenter
}
Item {
Layout.fillWidth: true
}
// Custom Material 3 Switch
Rectangle {
id: customSwitch4
width: 52
height: 32
radius: 16
color: Settings.settings.showCorners ? Theme.accentPrimary : Theme.surfaceVariant
border.color: Settings.settings.showCorners ? Theme.accentPrimary : Theme.outline
border.width: 2
Rectangle {
id: thumb4
width: 28
height: 28
radius: 14
color: Theme.surface
border.color: Theme.outline
border.width: 1
y: 2
x: Settings.settings.showCorners ? customSwitch4.width - width - 2 : 2
Behavior on x {
NumberAnimation { duration: 200; easing.type: Easing.OutCubic }
}
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
Settings.settings.showCorners = !Settings.settings.showCorners
}
}
}
}
// Show Media In Bar Setting
RowLayout {
spacing: 8