mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
67 lines
2.1 KiB
QML
67 lines
2.1 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 string customIcon: widgetSettings.icon || widgetMetadata.icon
|
|
readonly property bool useDistroLogo: (widgetSettings.useDistroLogo !== undefined) ? widgetSettings.useDistroLogo : widgetMetadata.useDistroLogo
|
|
readonly property string customIconPath: widgetSettings.customIconPath || ""
|
|
|
|
// If we have a custom path or distro logo, don't use the theme icon.
|
|
icon: (customIconPath === "" && !useDistroLogo) ? customIcon : ""
|
|
tooltipText: I18n.tr("tooltips.open-control-center")
|
|
tooltipDirection: BarService.getTooltipDirection()
|
|
baseSize: Style.capsuleHeight
|
|
compact: (Settings.data.bar.density === "compact")
|
|
colorBg: (Settings.data.bar.showCapsule ? Color.mSurfaceVariant : Color.transparent)
|
|
colorFg: Color.mOnSurface
|
|
colorBgHover: useDistroLogo ? Color.mSurfaceVariant : Color.mTertiary
|
|
colorBorder: Color.transparent
|
|
colorBorderHover: useDistroLogo ? Color.mTertiary : Color.transparent
|
|
onClicked: PanelService.getPanel("controlCenterPanel")?.toggle(this)
|
|
onRightClicked: PanelService.getPanel("settingsPanel")?.toggle()
|
|
|
|
IconImage {
|
|
id: customOrDistroLogo
|
|
anchors.centerIn: parent
|
|
width: root.width * 0.8
|
|
height: width
|
|
source: {
|
|
if (customIconPath !== "")
|
|
return customIconPath
|
|
if (useDistroLogo)
|
|
return DistroLogoService.osLogo
|
|
return ""
|
|
}
|
|
visible: source !== ""
|
|
smooth: true
|
|
asynchronous: true
|
|
}
|
|
}
|