24 lines
470 B
QML
24 lines
470 B
QML
|
|
import QtQuick
|
||
|
|
import qs.Common
|
||
|
|
import qs.Widgets
|
||
|
|
import qs.Modules.Plugins
|
||
|
|
|
||
|
|
PluginSettings {
|
||
|
|
id: root
|
||
|
|
pluginId: "examplePopoutWidget"
|
||
|
|
|
||
|
|
StyledText {
|
||
|
|
width: parent.width
|
||
|
|
text: "Popout Widget Settings"
|
||
|
|
font.pixelSize: Theme.fontSizeLarge
|
||
|
|
font.weight: Font.Bold
|
||
|
|
color: Theme.surfaceText
|
||
|
|
}
|
||
|
|
|
||
|
|
StringSetting {
|
||
|
|
settingKey: "header"
|
||
|
|
label: "Popout Header"
|
||
|
|
defaultValue: "Example Popout"
|
||
|
|
}
|
||
|
|
}
|