1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-10 00:43:59 +02:00
vcmi/config/widgets/settings/generalOptionsTab.json

229 lines
5.0 KiB
JSON
Raw Normal View History

{
"customTypes" : {
"labelTitle" : {
"type": "label",
"font": "medium",
"alignment": "left",
"color": "yellow"
},
"labelAudio" : {
"type": "label",
"font": "medium",
"alignment": "center",
"color": "yellow"
},
"labelDescription" : {
"type": "label",
"font": "medium",
"alignment": "left",
"color": "white"
},
"checkbox" : {
"type": "toggleButton",
"image": "sysopchk.def",
},
"buttonGear" : {
"type": "button",
"image": "settingsWindow/button32",
"items":
[
{
"name": "gearIcon",
"type": "picture",
"image": "settingsWindow/gear",
"position": {"x": 0, "y": 0 }
}
]
},
"audioSlider" : {
"type": "slider",
"scrollBounds" : { "x" : -4, "y" : -34, "w" : 208, "h" : 52 },
"size": 200,
"style": "brown",
"orientation": "horizontal",
"itemsVisible": 0,
"itemsTotal": 100,
},
"verticalLayout" : {
"type" : "layout",
"vertical" : true,
"dynamic" : false,
"distance" : 30
}
},
"items":
[
2023-03-03 18:14:20 +02:00
{
"name": "lineLabelsEnd",
"type": "texture",
"image": "settingsWindow/lineHorizontal",
"rect": { "x" : 5, "y" : 289, "w": 365, "h": 3}
},
{
"type" : "labelTitle",
"position": {"x": 10, "y": 55},
"text": "vcmi.systemOptions.videoGroup"
},
{
"type" : "labelTitle",
"position": {"x": 380, "y": 55},
"text": "vcmi.systemOptions.audioGroup"
},
{
"type" : "labelTitle",
"position": {"x": 10, "y": 295},
"text": "vcmi.systemOptions.townsGroup"
},
/////////////////////////////////////// Left section - Video Settings
{
"type" : "verticalLayout",
"customType" : "labelDescription",
"position" : {"x": 45, "y": 85},
"items" : [
{
"name": "resolutionLabel",
"text": "vcmi.systemOptions.resolutionButton.hover"
},
{
"name": "scalingLabel",
"text": "vcmi.systemOptions.scalingButton.hover"
},
{
"text": "vcmi.systemOptions.fullscreenButton.hover"
},
{
"text": "vcmi.systemOptions.framerateButton.hover"
},
{
"text": "core.genrltxt.577"
}
]
},
{
"type" : "verticalLayout",
"customType" : "checkbox",
"position" : {"x": 10, "y": 83},
"items" : [
{
"name": "resolutionButton",
"type": "buttonGear",
"help": "vcmi.systemOptions.resolutionButton",
"callback": "setGameResolution",
},
{
"name": "scalingButton",
"type": "buttonGear",
"help": "vcmi.systemOptions.scalingButton",
"callback": "setGameScaling",
},
{
"name": "fullscreenCheckbox",
"help": "vcmi.systemOptions.fullscreenButton",
"callback": "fullscreenChanged"
},
{
"name": "framerateCheckbox",
"help": "vcmi.systemOptions.framerateButton",
"callback": "framerateChanged"
},
{
"name": "spellbookAnimationCheckbox",
"help": "core.help.364",
"callback": "spellbookAnimationChanged"
},
]
},
/////////////////////////////////////// Right section - Audio Settings
{
"type" : "labelAudio",
"position": {"x": 460, "y": 98},
"text": "core.genrltxt.394" // Music Volume
},
{
"type" : "labelAudio",
"position": {"x": 460, "y": 158},
"text": "core.genrltxt.395" // Effects volume
},
{
"name": "frameMusic",
"type": "picture",
"image": "settingsWindow/frameAudio",
2023-03-03 18:14:20 +02:00
"position": {"x": 380, "y": 80 }
},
{
"name": "musicSlider",
"type": "audioSlider",
2023-03-03 18:14:20 +02:00
"position": {"x": 385, "y": 115},
"callback": "setMusic"
},
{
"name": "musicValueLabel",
"type": "labelAudio",
"position": {"x": 565, "y": 98}
},
{
2023-03-03 16:14:32 +02:00
"name": "frameSound",
"type": "picture",
"image": "settingsWindow/frameAudio",
2023-03-03 18:14:20 +02:00
"position": {"x": 380, "y": 140 }
},
{
"name": "soundVolumeSlider",
"type": "audioSlider",
2023-03-03 18:14:20 +02:00
"position": {"x": 385, "y": 175},
"callback": "setVolume"
},
{
"name": "soundValueLabel",
"type": "labelAudio",
"position": {"x": 565, "y": 158}
},
/////////////////////////////////////// Bottom section - Towns Settings
{
"type" : "verticalLayout",
"customType" : "labelDescription",
"position": {"x": 45, "y": 325},
"items" : [
{
"text": "vcmi.otherOptions.creatureGrowthAsDwellingLabel.hover",
},
{
"text": "vcmi.otherOptions.availableCreaturesAsDwellingLabel.hover",
},
{
"text": "vcmi.otherOptions.compactTownCreatureInfo.hover",
}
]
},
{
"name": "availableCreaturesAsDwellingPicker",
"type": "toggleGroup",
"callback": "availableCreaturesAsDwellingChanged"
},
{
"type" : "verticalLayout",
"customType" : "checkbox",
2023-03-03 18:14:20 +02:00
"position": {"x": 10, "y": 323},
"items":
[
{
"help": "vcmi.otherOptions.creatureGrowthAsDwellingLabel",
"group" : "availableCreaturesAsDwellingPicker",
"index": 0
2023-03-05 16:50:47 +02:00
},
{
"help": "vcmi.otherOptions.availableCreaturesAsDwellingLabel",
"group" : "availableCreaturesAsDwellingPicker",
"index": 1
},
{
"name": "compactTownCreatureInfoCheckbox",
"help": "vcmi.otherOptions.compactTownCreatureInfo",
"callback": "compactTownCreatureInfoChanged"
}
]
}
]
}