1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/config/widgets/lobbyWindow.json
2024-03-27 13:10:55 +02:00

210 lines
3.8 KiB
JSON

{
"customTypes" : {
"labelTitleMain" : {
"type": "label",
"font": "big",
"alignment": "left",
"color": "yellow"
},
"labelTitle" : {
"type": "label",
"font": "small",
"alignment": "left",
"color": "yellow"
},
"backgroundTexture" : {
"type": "texture",
"font": "tiny",
"color" : "blue",
"image": "DIBOXBCK"
},
"areaFilled":{
"type": "transparentFilledRectangle",
"color": [0, 0, 0, 75],
"colorLine": [64, 80, 128, 255]
}
},
"width": 1024,
"height": 600,
"items":
[
{
"type": "backgroundTexture",
"rect": {"w": 1024, "h": 600}
},
{
"type": "areaFilled",
"rect": {"x": 5, "y": 5, "w": 250, "h": 40}
},
{
"name" : "accountNameLabel",
"type": "labelTitleMain",
"position": {"x": 15, "y": 10}
},
{
"type": "areaFilled",
"rect": {"x": 5, "y": 50, "w": 250, "h": 500}
},
{
"type": "labelTitle",
"position": {"x": 15, "y": 53},
"text" : "Room List"
},
{
"type" : "roomList",
"name" : "roomList",
"position" : { "x" : 7, "y" : 68 },
"itemOffset" : { "x" : 0, "y" : 40 },
"sliderPosition" : { "x" : 230, "y" : 0 },
"sliderSize" : { "x" : 480, "y" : 480 },
"visibleAmount" : 12
},
{
"type": "areaFilled",
"rect": {"x": 270, "y": 50, "w": 150, "h": 140}
},
{
"type": "labelTitle",
"position": {"x": 280, "y": 53},
"text" : "Channel List"
},
{
"type": "areaFilled",
"rect": {"x": 270, "y": 200, "w": 150, "h": 390}
},
{
"type": "labelTitle",
"position": {"x": 280, "y": 203},
"text" : "Games History"
},
{
"type": "areaFilled",
"rect": {"x": 430, "y": 50, "w": 430, "h": 515}
},
{
"type": "labelTitle",
"position": {"x": 440, "y": 53},
"text" : "Game Chat"
},
{
"type": "textBox",
"name": "gameChat",
"font": "small",
"alignment": "left",
"color": "white",
"blueTheme" : true,
"rect": {"x": 440, "y": 68, "w": 418, "h": 495}
},
{
"type": "areaFilled",
"rect": {"x": 430, "y": 565, "w": 397, "h": 25}
},
{
"name" : "messageInput",
"type": "textInput",
"alignment" : "left",
"rect": {"x": 440, "y": 568, "w": 377, "h": 20}
},
{
"type": "areaFilled",
"rect": {"x": 870, "y": 50, "w": 150, "h": 540}
},
{
"type": "labelTitle",
"position": {"x": 880, "y": 53},
"text" : "Account List"
},
{
"type" : "accountList",
"name" : "accountList",
"position" : { "x" : 872, "y" : 68 },
"itemOffset" : { "x" : 0, "y" : 40 },
"sliderPosition" : { "x" : 130, "y" : 0 },
"sliderSize" : { "x" : 520, "y" : 520 },
"visibleAmount" : 12
},
// {
// "type": "button",
// "position": {"x": 840, "y": 10},
// "image": "settingsWindow/button80",
// "help": "core.help.288",
// "callback": "closeWindow",
// "items":
// [
// {
// "type": "label",
// "font": "medium",
// "alignment": "center",
// "color": "yellow",
// "text": "Leave"
// }
// ]
// },
{
"type": "button",
"position": {"x": 870, "y": 10},
"image": "lobbyHideWindow",
"help": "core.help.288",
"callback": "closeWindow",
"hotkey": "globalCancel",
"items":
[
{
"type": "label",
"font": "medium",
"alignment": "center",
"color": "yellow",
"text": "Back"
}
]
},
{
"type": "button",
"position": {"x": 828, "y": 565},
"image": "lobbySendMessage",
"help": "core.help.288",
"callback": "sendMessage",
"hotkey": "globalAccept",
"items":
[
{
"type": "picture",
"image": "lobby/iconSend"
}
]
},
{
"type": "button",
"position": {"x": 10, "y": 555},
"image": "lobbyCreateRoom",
"help": "core.help.288",
"callback": "createGameRoom",
"items":
[
{
"type": "label",
"font": "medium",
"alignment": "center",
"color": "yellow",
"text": "Create New Room"
}
]
},
]
}