33 lines
641 B
QML
33 lines
641 B
QML
|
|
import QtQuick
|
||
|
|
import qs.Common
|
||
|
|
import qs.Widgets
|
||
|
|
import qs.Modules.Plugins
|
||
|
|
|
||
|
|
PluginSettings {
|
||
|
|
id: root
|
||
|
|
pluginId: "exampleDesktopWidget"
|
||
|
|
|
||
|
|
StyledText {
|
||
|
|
width: parent.width
|
||
|
|
text: "Desktop Widget Settings"
|
||
|
|
font.pixelSize: Theme.fontSizeLarge
|
||
|
|
font.weight: Font.Bold
|
||
|
|
color: Theme.surfaceText
|
||
|
|
}
|
||
|
|
|
||
|
|
StringSetting {
|
||
|
|
settingKey: "label"
|
||
|
|
label: "Label"
|
||
|
|
defaultValue: "Desktop Widget"
|
||
|
|
}
|
||
|
|
|
||
|
|
SliderSetting {
|
||
|
|
settingKey: "bgOpacity"
|
||
|
|
label: "Background Opacity"
|
||
|
|
defaultValue: 70
|
||
|
|
minimum: 0
|
||
|
|
maximum: 100
|
||
|
|
unit: "%"
|
||
|
|
}
|
||
|
|
}
|