mrbot/settings/settings.json
2023-12-08 15:07:11 -06:00

71 lines
2.5 KiB
JSON

{
"$schema": "http://www.lavishsoft.com/schema/lgui2Package.json",
"elements": [
{
"type": "window",
"title": "MR Bot Settings",
"name": "mr.bot.settings",
"borderThickness": 2,
"hideOnClose": false,
"minSize": {
"width": 450,
"height": 200
},
"maxSize": {
"height": 600,
"width": 800
},
"eventHandlers": {
"onCloseButtonClick": [
"method",
"MRSettingsController",
"OnClose"
]
},
"content": {
"type": "tabcontrol",
"heightFactor": 1,
"horizontalAlignment": "stretch",
"verticalAlignment": "stretch",
"tabs": [
{
"type": "tab",
"header": "General",
"content": {
"type": "dockpanel",
"_dock": "top",
"padding": 2,
"horizontalAlignment": "stretch",
"children": [
{
"type": "textblock",
"text": "General Settings",
"horizontalAlignment": "center",
"verticalAlignment": "center"
}
]
}
},
{
"type": "tab",
"header": "Cast Stack",
"content": {
"type": "dockpanel",
"_dock": "top",
"padding": 2,
"horizontalAlignment": "stretch",
"children": [
{
"type": "textblock",
"text": "Cast Stack Settings",
"horizontalAlignment": "center",
"verticalAlignment": "center"
}
]
}
}
]
}
}
]
}