2022-11-20 23:11:54 +02:00
|
|
|
import uiScriptLocale
|
|
|
|
|
2023-07-21 21:55:58 +03:00
|
|
|
WEB_WIDTH = 740
|
|
|
|
WEB_HEIGHT = 550
|
2022-11-20 23:11:54 +02:00
|
|
|
|
|
|
|
window = {
|
|
|
|
"name" : "MallWindow",
|
|
|
|
|
|
|
|
"x" : 0,
|
|
|
|
"y" : 0,
|
|
|
|
|
2023-07-21 21:55:58 +03:00
|
|
|
"style" : ("movable", "float",),
|
|
|
|
|
2022-11-20 23:11:54 +02:00
|
|
|
"width" : WEB_WIDTH + 20,
|
|
|
|
"height" : WEB_HEIGHT + 40,
|
|
|
|
|
|
|
|
"children" :
|
|
|
|
(
|
|
|
|
{
|
|
|
|
"name" : "board",
|
|
|
|
"type" : "board",
|
|
|
|
"style" : ("attach",),
|
|
|
|
|
|
|
|
"x" : 0,
|
|
|
|
"y" : 0,
|
|
|
|
|
|
|
|
"width" : WEB_WIDTH + 20,
|
|
|
|
"height" : WEB_HEIGHT + 40,
|
|
|
|
|
|
|
|
"children" :
|
|
|
|
(
|
|
|
|
## Title
|
|
|
|
{
|
|
|
|
"name" : "TitleBar",
|
|
|
|
"type" : "titlebar",
|
|
|
|
"style" : ("attach",),
|
|
|
|
|
|
|
|
"x" : 8,
|
|
|
|
"y" : 7,
|
|
|
|
|
|
|
|
"width" : WEB_WIDTH + 10,
|
|
|
|
"color" : "yellow",
|
|
|
|
|
|
|
|
"children" :
|
|
|
|
(
|
|
|
|
{ "name":"TitleName", "type":"text", "x":50, "y":3, "text":uiScriptLocale.SYSTEM_MALL, "text_horizontal_align":"center" },
|
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
}
|