56 lines
1.6 KiB
QML
56 lines
1.6 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import QtQuick.Effects
|
|
import qs.Commons
|
|
import qs.Widgets
|
|
import qs.Services
|
|
|
|
NIconButton {
|
|
id: root
|
|
|
|
property ShellScreen screen
|
|
property real scaling: 1.0
|
|
|
|
// Widget properties passed from Bar.qml for per-instance settings
|
|
property string widgetId: ""
|
|
property string section: ""
|
|
property int sectionWidgetIndex: -1
|
|
property int sectionWidgetsCount: 0
|
|
|
|
property var widgetMetadata: BarWidgetRegistry.widgetMetadata[widgetId]
|
|
property var widgetSettings: {
|
|
if (section && sectionWidgetIndex >= 0) {
|
|
var widgets = Settings.data.bar.widgets[section]
|
|
if (widgets && sectionWidgetIndex < widgets.length) {
|
|
return widgets[sectionWidgetIndex]
|
|
}
|
|
}
|
|
return {}
|
|
}
|
|
|
|
readonly property bool useDistroLogo: (widgetSettings.useDistroLogo !== undefined) ? widgetSettings.useDistroLogo : widgetMetadata.useDistroLogo
|
|
|
|
icon: useDistroLogo ? "" : "noctalia"
|
|
tooltipText: "Open side panel."
|
|
sizeRatio: 0.85
|
|
|
|
colorBg: Color.mSurfaceVariant
|
|
colorFg: Color.mOnSurface
|
|
colorBgHover: useDistroLogo ? Color.mSurfaceVariant : Color.mTertiary
|
|
colorBorder: Color.transparent
|
|
colorBorderHover: useDistroLogo ? Color.mTertiary : Color.transparent
|
|
onClicked: PanelService.getPanel("sidePanel")?.toggle(this)
|
|
onRightClicked: PanelService.getPanel("settingsPanel")?.toggle()
|
|
|
|
IconImage {
|
|
id: logo
|
|
anchors.centerIn: parent
|
|
width: root.width * 0.85
|
|
height: width
|
|
source: useDistroLogo ? DistroLogoService.osLogo : ""
|
|
visible: useDistroLogo && source !== ""
|
|
smooth: true
|
|
asynchronous: true
|
|
}
|
|
}
|