dms_tailscalectl/skills/dms-plugin-dev/templates/widget-bar/Settings.qml

34 lines
789 B
QML
Raw Normal View History

import QtQuick
import qs.Common
import qs.Widgets
import qs.Modules.Plugins
PluginSettings {
id: root
pluginId: "exampleBarWidget"
StyledText {
width: parent.width
text: "Example Bar Widget Settings"
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Bold
color: Theme.surfaceText
}
StyledText {
width: parent.width
text: "This is a minimal starter. Replace with your own settings."
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
}
StringSetting {
settingKey: "displayText"
label: "Display Text"
description: "Text shown in the bar pill"
placeholder: "Hello"
defaultValue: "Hello"
}
}