100 lines
2.7 KiB
Plaintext
Executable File
100 lines
2.7 KiB
Plaintext
Executable File
new GuiControlProfile ("LoadingGuiContentProfile")
|
|
{
|
|
opaque = true;
|
|
fillColor = "200 200 200";
|
|
border = true;
|
|
borderColor = "0 0 0";
|
|
};
|
|
|
|
//--- OBJECT WRITE BEGIN ---
|
|
new GuiChunkedBitmapCtrl(LoadingGui) {
|
|
profile = "GuiContentProfile";
|
|
horizSizing = "width";
|
|
vertSizing = "height";
|
|
position = "0 0";
|
|
extent = "640 480";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
bitmap = "./background";
|
|
useVariable = "0";
|
|
tile = "0";
|
|
helpTag = "0";
|
|
qLineCount = "0";
|
|
|
|
new GuiControl() {
|
|
profile = "GuiWindowProfile";
|
|
horizSizing = "center";
|
|
vertSizing = "center";
|
|
position = "92 86";
|
|
extent = "455 308";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
helpTag = "0";
|
|
|
|
new GuiTextCtrl(LOAD_MapName) {
|
|
profile = "GuiMediumTextProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "7 6";
|
|
extent = "8 28";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
text = "Map Name";
|
|
maxLength = "255";
|
|
helpTag = "0";
|
|
};
|
|
new GuiMLTextCtrl(LOAD_MapDescription) {
|
|
profile = "GuiMLTextProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "7 62";
|
|
extent = "440 14";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
lineSpacing = "2";
|
|
allowColorChars = "0";
|
|
maxChars = "-1";
|
|
helpTag = "0";
|
|
};
|
|
new GuiProgressCtrl(LoadingProgress) {
|
|
profile = "GuiProgressProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "top";
|
|
position = "128 262";
|
|
extent = "262 25";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
helpTag = "0";
|
|
|
|
new GuiTextCtrl(LoadingProgressTxt) {
|
|
profile = "GuiProgressTextProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "-4 3";
|
|
extent = "262 20";
|
|
minExtent = "8 8";
|
|
visible = "1";
|
|
text = "LOADING MISSION";
|
|
maxLength = "255";
|
|
helpTag = "0";
|
|
};
|
|
};
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "top";
|
|
position = "58 262";
|
|
extent = "65 25";
|
|
minExtent = "20 20";
|
|
visible = "1";
|
|
command = "disconnect();";
|
|
accelerator = "escape";
|
|
text = "Cancel!";
|
|
groupNum = "-1";
|
|
buttonType = "PushButton";
|
|
helpTag = "0";
|
|
};
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|