Rename *_RIGHT to *_WIDTH and *_BOTTOM to *_HEIGHT in integer expressions for widgets
The terms "width" and "height" are clearer and they match what the values actually represent (window or parent width/height). The YAML changes are generated with the update rule.
This commit is contained in:
@@ -290,10 +290,10 @@ namespace OpenRA.Widgets
|
|||||||
new Dictionary<string, int>((Dictionary<string, int>)subs) :
|
new Dictionary<string, int>((Dictionary<string, int>)subs) :
|
||||||
new Dictionary<string, int>();
|
new Dictionary<string, int>();
|
||||||
|
|
||||||
substitutions.Add("WINDOW_RIGHT", Game.Renderer.Resolution.Width);
|
substitutions.Add("WINDOW_WIDTH", Game.Renderer.Resolution.Width);
|
||||||
substitutions.Add("WINDOW_BOTTOM", Game.Renderer.Resolution.Height);
|
substitutions.Add("WINDOW_HEIGHT", Game.Renderer.Resolution.Height);
|
||||||
substitutions.Add("PARENT_RIGHT", parentBounds.Width);
|
substitutions.Add("PARENT_WIDTH", parentBounds.Width);
|
||||||
substitutions.Add("PARENT_BOTTOM", parentBounds.Height);
|
substitutions.Add("PARENT_HEIGHT", parentBounds.Height);
|
||||||
|
|
||||||
var readOnlySubstitutions = new ReadOnlyDictionary<string, int>(substitutions);
|
var readOnlySubstitutions = new ReadOnlyDictionary<string, int>(substitutions);
|
||||||
var width = Width?.Evaluate(readOnlySubstitutions) ?? 0;
|
var width = Width?.Evaluate(readOnlySubstitutions) ?? 0;
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright (c) The OpenRA Developers and Contributors
|
||||||
|
* This file is part of OpenRA, which is free software. It is made
|
||||||
|
* available to you under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version. For more
|
||||||
|
* information, see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||||
|
{
|
||||||
|
public class RenameWidgetSubstitutions : UpdateRule
|
||||||
|
{
|
||||||
|
public override string Name => "Rename *_RIGHT to *_WIDTH and *_BOTTOM to *_HEIGHT in integer expressions for widgets.";
|
||||||
|
|
||||||
|
public override string Description =>
|
||||||
|
"PARENT_RIGHT -> PARENT_WIDTH, PARENT_BOTTOM -> PARENT_HEIGHT, " +
|
||||||
|
"WINDOW_RIGHT -> WINDOW_WIDTH, WINDOW_BOTTOM -> WINDOW_HEIGHT " +
|
||||||
|
"in integer expressions for width, height and position.";
|
||||||
|
|
||||||
|
public override IEnumerable<string> UpdateChromeNode(ModData modData, MiniYamlNodeBuilder chromeNode)
|
||||||
|
{
|
||||||
|
var dimensionFields =
|
||||||
|
chromeNode.ChildrenMatching("Width")
|
||||||
|
.Concat(chromeNode.ChildrenMatching("Height"))
|
||||||
|
.Concat(chromeNode.ChildrenMatching("X"))
|
||||||
|
.Concat(chromeNode.ChildrenMatching("Y")).ToArray();
|
||||||
|
|
||||||
|
foreach (var field in dimensionFields)
|
||||||
|
{
|
||||||
|
field.ReplaceValue(field.Value.Value.Replace("PARENT_RIGHT", "PARENT_WIDTH"));
|
||||||
|
field.ReplaceValue(field.Value.Value.Replace("PARENT_BOTTOM", "PARENT_HEIGHT"));
|
||||||
|
field.ReplaceValue(field.Value.Value.Replace("WINDOW_RIGHT", "WINDOW_WIDTH"));
|
||||||
|
field.ReplaceValue(field.Value.Value.Replace("WINDOW_BOTTOM", "WINDOW_HEIGHT"));
|
||||||
|
}
|
||||||
|
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -91,6 +91,7 @@ namespace OpenRA.Mods.Common.UpdateRules
|
|||||||
new MovePreviewFacing(),
|
new MovePreviewFacing(),
|
||||||
new RenameOnDeath(),
|
new RenameOnDeath(),
|
||||||
new RemoveParentTopParentLeftSubstitutions(),
|
new RemoveParentTopParentLeftSubstitutions(),
|
||||||
|
new RenameWidgetSubstitutions(),
|
||||||
|
|
||||||
// Execute these rules last to avoid premature yaml merge crashes.
|
// Execute these rules last to avoid premature yaml merge crashes.
|
||||||
new ReplaceCloakPalette(),
|
new ReplaceCloakPalette(),
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
{
|
{
|
||||||
// HACK: MULTIPLAYER_FILTER_PANEL doesn't follow our normal procedure for dropdown creation
|
// HACK: MULTIPLAYER_FILTER_PANEL doesn't follow our normal procedure for dropdown creation
|
||||||
// but we still need to be able to set the dropdown width based on the parent
|
// but we still need to be able to set the dropdown width based on the parent
|
||||||
// The yaml should use PARENT_RIGHT instead of DROPDOWN_WIDTH
|
// The yaml should use PARENT_WIDTH instead of DROPDOWN_WIDTH
|
||||||
var filtersPanel = Ui.LoadWidget("MULTIPLAYER_FILTER_PANEL", filtersButton, new WidgetArgs());
|
var filtersPanel = Ui.LoadWidget("MULTIPLAYER_FILTER_PANEL", filtersButton, new WidgetArgs());
|
||||||
filtersButton.Children.Remove(filtersPanel);
|
filtersButton.Children.Remove(filtersPanel);
|
||||||
|
|
||||||
|
|||||||
@@ -517,10 +517,10 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
|
|
||||||
var substitutions = new Dictionary<string, int>
|
var substitutions = new Dictionary<string, int>
|
||||||
{
|
{
|
||||||
{ "WINDOW_RIGHT", Game.Renderer.Resolution.Width },
|
{ "WINDOW_WIDTH", Game.Renderer.Resolution.Width },
|
||||||
{ "WINDOW_BOTTOM", Game.Renderer.Resolution.Height },
|
{ "WINDOW_HEIGHT", Game.Renderer.Resolution.Height },
|
||||||
{ "PARENT_RIGHT", parentBounds.Width },
|
{ "PARENT_WIDTH", parentBounds.Width },
|
||||||
{ "PARENT_BOTTOM", parentBounds.Height }
|
{ "PARENT_HEIGHT", parentBounds.Height }
|
||||||
};
|
};
|
||||||
|
|
||||||
var readOnlySubstitutions = new ReadOnlyDictionary<string, int>(substitutions);
|
var readOnlySubstitutions = new ReadOnlyDictionary<string, int>(substitutions);
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Container@ASSETBROWSER_PANEL:
|
Container@ASSETBROWSER_PANEL:
|
||||||
Logic: AssetBrowserLogic
|
Logic: AssetBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 540
|
Height: 540
|
||||||
Children:
|
Children:
|
||||||
LogicTicker@ANIMATION_TICKER:
|
LogicTicker@ANIMATION_TICKER:
|
||||||
Label@ASSETBROWSER_TITLE:
|
Label@ASSETBROWSER_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -15,8 +15,8 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-assetbrowser-panel-title
|
Text: label-assetbrowser-panel-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@SOURCE_SELECTOR_DESC:
|
Label@SOURCE_SELECTOR_DESC:
|
||||||
@@ -59,11 +59,11 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
X: 15
|
X: 15
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 195
|
Width: 195
|
||||||
Height: PARENT_BOTTOM - 205
|
Height: PARENT_HEIGHT - 205
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@ASSET_TEMPLATE:
|
ScrollItem@ASSET_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -71,12 +71,12 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 15
|
Width: PARENT_WIDTH - 15
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SPRITE_SCALE:
|
Label@SPRITE_SCALE:
|
||||||
X: PARENT_RIGHT - WIDTH - 440
|
X: PARENT_WIDTH - WIDTH - 440
|
||||||
Y: 31
|
Y: 31
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -84,14 +84,14 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Text: label-bg-sprite-scale
|
Text: label-bg-sprite-scale
|
||||||
Slider@SPRITE_SCALE_SLIDER:
|
Slider@SPRITE_SCALE_SLIDER:
|
||||||
X: PARENT_RIGHT - WIDTH - 330
|
X: PARENT_WIDTH - WIDTH - 330
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 20
|
Height: 20
|
||||||
MinimumValue: 0.5
|
MinimumValue: 0.5
|
||||||
MaximumValue: 4
|
MaximumValue: 4
|
||||||
Label@PALETTE_DESC:
|
Label@PALETTE_DESC:
|
||||||
X: PARENT_RIGHT - WIDTH - 270
|
X: PARENT_WIDTH - WIDTH - 270
|
||||||
Y: 31
|
Y: 31
|
||||||
Width: 150
|
Width: 150
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -99,13 +99,13 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
Align: Right
|
Align: Right
|
||||||
Text: label-bg-palette-desc
|
Text: label-bg-palette-desc
|
||||||
DropDownButton@PALETTE_SELECTOR:
|
DropDownButton@PALETTE_SELECTOR:
|
||||||
X: PARENT_RIGHT - WIDTH - 110
|
X: PARENT_WIDTH - WIDTH - 110
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 150
|
Width: 150
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
DropDownButton@COLOR:
|
DropDownButton@COLOR:
|
||||||
X: PARENT_RIGHT - WIDTH - 15
|
X: PARENT_WIDTH - WIDTH - 15
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 80
|
Width: 80
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -113,32 +113,32 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
Background@SPRITE_BG:
|
Background@SPRITE_BG:
|
||||||
X: 225
|
X: 225
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT - 195 - 45
|
Width: PARENT_WIDTH - 195 - 45
|
||||||
Height: PARENT_BOTTOM - 115
|
Height: PARENT_HEIGHT - 115
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Sprite@SPRITE:
|
Sprite@SPRITE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
VideoPlayer@PLAYER:
|
VideoPlayer@PLAYER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
AspectRatio: 1
|
AspectRatio: 1
|
||||||
Label@ERROR:
|
Label@ERROR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Visible: false
|
Visible: false
|
||||||
Text: label-sprite-bg-error
|
Text: label-sprite-bg-error
|
||||||
Container@FRAME_SELECTOR:
|
Container@FRAME_SELECTOR:
|
||||||
X: 225
|
X: 225
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: PARENT_RIGHT - 225
|
Width: PARENT_WIDTH - 225
|
||||||
Children:
|
Children:
|
||||||
Button@BUTTON_PREV:
|
Button@BUTTON_PREV:
|
||||||
Width: 26
|
Width: 26
|
||||||
@@ -208,11 +208,11 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
Slider@FRAME_SLIDER:
|
Slider@FRAME_SLIDER:
|
||||||
X: 140
|
X: 140
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: PARENT_RIGHT - 140 - 85
|
Width: PARENT_WIDTH - 140 - 85
|
||||||
Height: 20
|
Height: 20
|
||||||
MinimumValue: 0
|
MinimumValue: 0
|
||||||
Label@FRAME_COUNT:
|
Label@FRAME_COUNT:
|
||||||
X: PARENT_RIGHT - WIDTH + 5
|
X: PARENT_WIDTH - WIDTH + 5
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: 80
|
Width: 80
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -220,7 +220,7 @@ Container@ASSETBROWSER_PANEL:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Button@CLOSE_BUTTON:
|
Button@CLOSE_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
@@ -235,5 +235,5 @@ ScrollPanel@ASSET_TYPES_PANEL:
|
|||||||
Checkbox@ASSET_TYPE_TEMPLATE:
|
Checkbox@ASSET_TYPE_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
|
|||||||
@@ -29,14 +29,14 @@ Background@COLOR_CHOOSER:
|
|||||||
Animate: true
|
Animate: true
|
||||||
Button@MIXER_TAB_BUTTON:
|
Button@MIXER_TAB_BUTTON:
|
||||||
X: 5
|
X: 5
|
||||||
Y: PARENT_BOTTOM - 30
|
Y: PARENT_HEIGHT - 30
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 80
|
Width: 80
|
||||||
Text: button-color-chooser-mixer-tab
|
Text: button-color-chooser-mixer-tab
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@PALETTE_TAB_BUTTON:
|
Button@PALETTE_TAB_BUTTON:
|
||||||
X: 90
|
X: 90
|
||||||
Y: PARENT_BOTTOM - 30
|
Y: PARENT_HEIGHT - 30
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 80
|
Width: 80
|
||||||
Text: button-color-chooser-palette-tab
|
Text: button-color-chooser-palette-tab
|
||||||
@@ -44,63 +44,63 @@ Background@COLOR_CHOOSER:
|
|||||||
Container@MIXER_TAB:
|
Container@MIXER_TAB:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 91
|
Width: PARENT_WIDTH - 91
|
||||||
Height: PARENT_BOTTOM - 34
|
Height: PARENT_HEIGHT - 34
|
||||||
Children:
|
Children:
|
||||||
Background@HUEBG:
|
Background@HUEBG:
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 17
|
Height: 17
|
||||||
Children:
|
Children:
|
||||||
HueSlider@HUE_SLIDER:
|
HueSlider@HUE_SLIDER:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
Ticks: 5
|
Ticks: 5
|
||||||
Background@MIXERBG:
|
Background@MIXERBG:
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
X: 0
|
X: 0
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 21
|
Height: PARENT_HEIGHT - 21
|
||||||
Children:
|
Children:
|
||||||
ColorMixer@MIXER:
|
ColorMixer@MIXER:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
Background@PALETTE_TAB:
|
Background@PALETTE_TAB:
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 91
|
Width: PARENT_WIDTH - 91
|
||||||
Height: PARENT_BOTTOM - 34
|
Height: PARENT_HEIGHT - 34
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Container@PALETTE_TAB_PANEL:
|
Container@PALETTE_TAB_PANEL:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background@PRESET_HEADER:
|
Background@PRESET_HEADER:
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-preset-header
|
Text: label-preset-header
|
||||||
Container@PRESET_AREA:
|
Container@PRESET_AREA:
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 58
|
Height: 58
|
||||||
X: 2
|
X: 2
|
||||||
Y: 16
|
Y: 16
|
||||||
@@ -114,19 +114,19 @@ Background@COLOR_CHOOSER:
|
|||||||
ClickSound: ClickSound
|
ClickSound: ClickSound
|
||||||
Background@CUSTOM_HEADER:
|
Background@CUSTOM_HEADER:
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 71
|
Y: 71
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-custom-header
|
Text: label-custom-header
|
||||||
Container@CUSTOM_AREA:
|
Container@CUSTOM_AREA:
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 31
|
Height: 31
|
||||||
X: 2
|
X: 2
|
||||||
Y: 85
|
Y: 85
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@CONNECTING_PANEL:
|
Container@CONNECTING_PANEL:
|
||||||
Logic: ConnectionLogic
|
Logic: ConnectionLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 125
|
Height: 125
|
||||||
Children:
|
Children:
|
||||||
Label@CONNECTING_TITLE:
|
Label@CONNECTING_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -19,8 +19,8 @@ Container@CONNECTING_PANEL:
|
|||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@CONNECTING_DESC:
|
Label@CONNECTING_DESC:
|
||||||
Y: (PARENT_BOTTOM - HEIGHT) / 2
|
Y: (PARENT_HEIGHT - HEIGHT) / 2
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-bg-connecting-desc
|
Text: label-bg-connecting-desc
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -34,14 +34,14 @@ Container@CONNECTING_PANEL:
|
|||||||
|
|
||||||
Container@CONNECTIONFAILED_PANEL:
|
Container@CONNECTIONFAILED_PANEL:
|
||||||
Logic: ConnectionFailedLogic
|
Logic: ConnectionFailedLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 129
|
Height: 129
|
||||||
Children:
|
Children:
|
||||||
LogicTicker@CONNECTION_FAILED_TICKER:
|
LogicTicker@CONNECTION_FAILED_TICKER:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -54,14 +54,14 @@ Container@CONNECTIONFAILED_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Label@CONNECTING_DESC:
|
Label@CONNECTING_DESC:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-connection-background-connecting-desc
|
Text: label-connection-background-connecting-desc
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@CONNECTION_ERROR:
|
Label@CONNECTION_ERROR:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -101,13 +101,13 @@ Container@CONNECTIONFAILED_PANEL:
|
|||||||
|
|
||||||
Container@CONNECTION_SWITCHMOD_PANEL:
|
Container@CONNECTION_SWITCHMOD_PANEL:
|
||||||
Logic: ConnectionSwitchModLogic
|
Logic: ConnectionSwitchModLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 134
|
Height: 134
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -121,7 +121,7 @@ Container@CONNECTION_SWITCHMOD_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Label@DESC:
|
Label@DESC:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-connection-background-desc
|
Text: label-connection-background-desc
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -129,7 +129,7 @@ Container@CONNECTION_SWITCHMOD_PANEL:
|
|||||||
Container@MOD_CONTAINER:
|
Container@MOD_CONTAINER:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 42
|
Y: 42
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
RGBASprite@MOD_ICON:
|
RGBASprite@MOD_ICON:
|
||||||
Y: 4
|
Y: 4
|
||||||
@@ -138,20 +138,20 @@ Container@CONNECTION_SWITCHMOD_PANEL:
|
|||||||
Label@MOD_TITLE:
|
Label@MOD_TITLE:
|
||||||
X: 37
|
X: 37
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 37
|
Width: PARENT_WIDTH - 37
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Left
|
Align: Left
|
||||||
Label@MOD_VERSION:
|
Label@MOD_VERSION:
|
||||||
X: 37
|
X: 37
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT - 37
|
Width: PARENT_WIDTH - 37
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Left
|
Align: Left
|
||||||
Label@DESC2:
|
Label@DESC2:
|
||||||
Y: 81
|
Y: 81
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-connection-background-desc2
|
Text: label-connection-background-desc2
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@CREDITS_PANEL:
|
Container@CREDITS_PANEL:
|
||||||
Logic: CreditsLogic
|
Logic: CreditsLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 410
|
Width: 410
|
||||||
Height: 435
|
Height: 435
|
||||||
Children:
|
Children:
|
||||||
Label@CREDITS_TITLE:
|
Label@CREDITS_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -14,15 +14,15 @@ Container@CREDITS_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-credits-title
|
Text: label-credits-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@TAB_CONTAINER:
|
Container@TAB_CONTAINER:
|
||||||
Visible: False
|
Visible: False
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 34
|
Height: 34
|
||||||
Children:
|
Children:
|
||||||
Button@MOD_TAB:
|
Button@MOD_TAB:
|
||||||
@@ -36,18 +36,18 @@ Container@CREDITS_PANEL:
|
|||||||
ScrollPanel@CREDITS_DISPLAY:
|
ScrollPanel@CREDITS_DISPLAY:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
TopBottomSpacing: 8
|
TopBottomSpacing: 8
|
||||||
Children:
|
Children:
|
||||||
Label@CREDITS_TEMPLATE:
|
Label@CREDITS_TEMPLATE:
|
||||||
X: 8
|
X: 8
|
||||||
Width: PARENT_RIGHT - 24 - 2 * 8
|
Width: PARENT_WIDTH - 24 - 2 * 8
|
||||||
Height: 16
|
Height: 16
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
WordWrap: true
|
WordWrap: true
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ ScrollPanel@LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -12,11 +12,11 @@ ScrollPanel@LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -24,7 +24,7 @@ ScrollPanel@LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|
||||||
ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
||||||
@@ -32,7 +32,7 @@ ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
|||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -40,7 +40,7 @@ ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Left
|
Align: Left
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ ScrollPanel@FACTION_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -58,11 +58,11 @@ ScrollPanel@FACTION_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -84,7 +84,7 @@ ScrollPanel@TEAM_DROPDOWN_TEMPLATE:
|
|||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -92,7 +92,7 @@ ScrollPanel@TEAM_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 0
|
X: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|
||||||
@@ -101,7 +101,7 @@ ScrollPanel@SPAWN_DROPDOWN_TEMPLATE:
|
|||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -109,7 +109,7 @@ ScrollPanel@SPAWN_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 0
|
X: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|
||||||
@@ -119,7 +119,7 @@ ScrollPanel@SPECTATOR_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -127,11 +127,11 @@ ScrollPanel@SPECTATOR_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -144,24 +144,24 @@ ScrollPanel@SPECTATOR_DROPDOWN_TEMPLATE:
|
|||||||
Height: 16
|
Height: 16
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 40
|
X: 40
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
Label@NOFLAG_LABEL:
|
Label@NOFLAG_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
|
|
||||||
Background@THREEBUTTON_PROMPT:
|
Background@THREEBUTTON_PROMPT:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 500
|
Width: 500
|
||||||
Height: 41
|
Height: 41
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -169,7 +169,7 @@ Background@THREEBUTTON_PROMPT:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Label@PROMPT_TEXT:
|
Label@PROMPT_TEXT:
|
||||||
Y: 22
|
Y: 22
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -198,14 +198,14 @@ Background@THREEBUTTON_PROMPT:
|
|||||||
Visible: false
|
Visible: false
|
||||||
|
|
||||||
Background@TWOBUTTON_PROMPT:
|
Background@TWOBUTTON_PROMPT:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 31
|
Height: 31
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -213,7 +213,7 @@ Background@TWOBUTTON_PROMPT:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Label@PROMPT_TEXT:
|
Label@PROMPT_TEXT:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -234,38 +234,38 @@ Background@TWOBUTTON_PROMPT:
|
|||||||
Visible: false
|
Visible: false
|
||||||
|
|
||||||
Container@TEXT_INPUT_PROMPT:
|
Container@TEXT_INPUT_PROMPT:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 80
|
Height: 80
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Align: Center
|
Align: Center
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 80
|
Height: 80
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TEXT:
|
Label@PROMPT_TEXT:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 12
|
Y: 12
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
TextField@INPUT_TEXT:
|
TextField@INPUT_TEXT:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 40
|
Y: 40
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@ACCEPT_BUTTON:
|
Button@ACCEPT_BUTTON:
|
||||||
X: PARENT_RIGHT - 160
|
X: PARENT_WIDTH - 160
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 34
|
Height: 34
|
||||||
Text: button-text-input-prompt-accept
|
Text: button-text-input-prompt-accept
|
||||||
@@ -273,7 +273,7 @@ Container@TEXT_INPUT_PROMPT:
|
|||||||
Key: return
|
Key: return
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: 0
|
X: 0
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
@@ -290,28 +290,28 @@ ScrollPanel@NEWS_PANEL:
|
|||||||
Container@NEWS_ITEM_TEMPLATE:
|
Container@NEWS_ITEM_TEMPLATE:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 45
|
Height: 45
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@AUTHOR_DATETIME:
|
Label@AUTHOR_DATETIME:
|
||||||
Y: 26
|
Y: 26
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 15
|
Height: 15
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@CONTENT:
|
Label@CONTENT:
|
||||||
Y: 46
|
Y: 46
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Label@NEWS_STATUS:
|
Label@NEWS_STATUS:
|
||||||
X: 80
|
X: 80
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 80 - 80 - 24
|
Width: PARENT_WIDTH - 80 - 80 - 24
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
VAlign: Middle
|
VAlign: Middle
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
Container@NEW_MAP_BG:
|
Container@NEW_MAP_BG:
|
||||||
Logic: NewMapLogic
|
Logic: NewMapLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 300
|
Width: 300
|
||||||
Height: 95
|
Height: 95
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Text: label-new-map-bg-title
|
Text: label-new-map-bg-title
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Align: Center
|
Align: Center
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@TILESET_LABEL:
|
Label@TILESET_LABEL:
|
||||||
@@ -61,15 +61,15 @@ Container@NEW_MAP_BG:
|
|||||||
Text: 128
|
Text: 128
|
||||||
Type: Integer
|
Type: Integer
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: escape
|
Key: escape
|
||||||
Button@CREATE_BUTTON:
|
Button@CREATE_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-new-map-bg-create
|
Text: button-new-map-bg-create
|
||||||
@@ -78,22 +78,22 @@ Container@NEW_MAP_BG:
|
|||||||
|
|
||||||
Container@SAVE_MAP_PANEL:
|
Container@SAVE_MAP_PANEL:
|
||||||
Logic: SaveMapLogic
|
Logic: SaveMapLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 345
|
Width: 345
|
||||||
Height: 195
|
Height: 195
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL_TITLE:
|
Label@LABEL_TITLE:
|
||||||
Text: label-save-map-panel-title
|
Text: label-save-map-panel-title
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Align: Center
|
Align: Center
|
||||||
Background@SAVE_MAP_BACKGROUND:
|
Background@SAVE_MAP_BACKGROUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE_LABEL:
|
Label@TITLE_LABEL:
|
||||||
@@ -169,15 +169,15 @@ Container@SAVE_MAP_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: escape
|
Key: escape
|
||||||
Button@SAVE_BUTTON:
|
Button@SAVE_BUTTON:
|
||||||
X: PARENT_RIGHT - 140
|
X: PARENT_WIDTH - 140
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-save-map-panel
|
Text: button-save-map-panel
|
||||||
@@ -191,7 +191,7 @@ ScrollPanel@MAP_SAVE_VISIBILITY_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Checkbox@VISIBILITY_TEMPLATE:
|
Checkbox@VISIBILITY_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
|
|
||||||
@@ -223,13 +223,13 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
LogicKeyListener@OVERLAY_KEYHANDLER:
|
LogicKeyListener@OVERLAY_KEYHANDLER:
|
||||||
Container@PERF_ROOT:
|
Container@PERF_ROOT:
|
||||||
EditorViewportController@MAP_EDITOR:
|
EditorViewportController@MAP_EDITOR:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
ViewportController:
|
ViewportController:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
IgnoreMouseOver: True
|
IgnoreMouseOver: True
|
||||||
ZoomInKey: ZoomIn
|
ZoomInKey: ZoomIn
|
||||||
ZoomOutKey: ZoomOut
|
ZoomOutKey: ZoomOut
|
||||||
@@ -245,7 +245,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
BookmarkRestoreKeyPrefix: MapBookmarkRestore
|
BookmarkRestoreKeyPrefix: MapBookmarkRestore
|
||||||
BookmarkKeyCount: 4
|
BookmarkKeyCount: 4
|
||||||
Background@RADAR_BG:
|
Background@RADAR_BG:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: 290
|
Height: 290
|
||||||
@@ -254,12 +254,12 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Radar@INGAME_RADAR:
|
Radar@INGAME_RADAR:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
MenuButton@OPTIONS_BUTTON:
|
MenuButton@OPTIONS_BUTTON:
|
||||||
Logic: MenuButtonsChromeLogic
|
Logic: MenuButtonsChromeLogic
|
||||||
Key: escape
|
Key: escape
|
||||||
X: WINDOW_RIGHT - 294 - WIDTH
|
X: WINDOW_WIDTH - 294 - WIDTH
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: 30
|
Width: 30
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -272,20 +272,20 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
ImageCollection: order-icons
|
ImageCollection: order-icons
|
||||||
ImageName: options
|
ImageName: options
|
||||||
Background@TOOLS_BG:
|
Background@TOOLS_BG:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 330
|
Y: 330
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 422
|
Height: WINDOW_HEIGHT - 422
|
||||||
Container@TILE_WIDGETS:
|
Container@TILE_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 318
|
Y: 318
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 410
|
Height: WINDOW_HEIGHT - 410
|
||||||
Logic: TileSelectorLogic
|
Logic: TileSelectorLogic
|
||||||
Children:
|
Children:
|
||||||
Container@TILES_BG:
|
Container@TILES_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background:
|
Background:
|
||||||
Width: 61
|
Width: 61
|
||||||
@@ -294,54 +294,54 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Children:
|
Children:
|
||||||
Label@SEARCH_LABEL:
|
Label@SEARCH_LABEL:
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 5
|
Width: PARENT_WIDTH - 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-tiles-bg-search
|
Text: label-tiles-bg-search
|
||||||
Align: Right
|
Align: Right
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@CATEGORIES_LABEL:
|
Label@CATEGORIES_LABEL:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT - 5
|
Width: PARENT_WIDTH - 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-bg-filter
|
Text: label-bg-filter
|
||||||
Align: Right
|
Align: Right
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
TextField@SEARCH_TEXTFIELD:
|
TextField@SEARCH_TEXTFIELD:
|
||||||
X: 60
|
X: 60
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 25
|
Height: 25
|
||||||
DropDownButton@CATEGORIES_DROPDOWN:
|
DropDownButton@CATEGORIES_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 24
|
Y: 24
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@TILETEMPLATE_LIST:
|
ScrollPanel@TILETEMPLATE_LIST:
|
||||||
Y: 48
|
Y: 48
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 48
|
Height: PARENT_HEIGHT - 48
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TILEPREVIEW_TEMPLATE:
|
ScrollItem@TILEPREVIEW_TEMPLATE:
|
||||||
Visible: false
|
Visible: false
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Children:
|
Children:
|
||||||
TerrainTemplatePreview@TILE_PREVIEW:
|
TerrainTemplatePreview@TILE_PREVIEW:
|
||||||
X: 4
|
X: 4
|
||||||
Y: 4
|
Y: 4
|
||||||
Container@LAYER_WIDGETS:
|
Container@LAYER_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 318
|
Y: 318
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 410
|
Height: WINDOW_HEIGHT - 410
|
||||||
Visible: false
|
Visible: false
|
||||||
Logic: LayerSelectorLogic
|
Logic: LayerSelectorLogic
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@LAYERTEMPLATE_LIST:
|
ScrollPanel@LAYERTEMPLATE_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Children:
|
Children:
|
||||||
@@ -355,15 +355,15 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Y: 4
|
Y: 4
|
||||||
Visible: false
|
Visible: false
|
||||||
Container@ACTOR_WIDGETS:
|
Container@ACTOR_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 318
|
Y: 318
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 410
|
Height: WINDOW_HEIGHT - 410
|
||||||
Visible: false
|
Visible: false
|
||||||
Logic: ActorSelectorLogic
|
Logic: ActorSelectorLogic
|
||||||
Children:
|
Children:
|
||||||
Background@ACTORS_BG:
|
Background@ACTORS_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 83
|
Height: 83
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
@@ -376,7 +376,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
TextField@SEARCH_TEXTFIELD:
|
TextField@SEARCH_TEXTFIELD:
|
||||||
X: 60
|
X: 60
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@CATEGORIES_LABEL:
|
Label@CATEGORIES_LABEL:
|
||||||
Y: 25
|
Y: 25
|
||||||
@@ -388,7 +388,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
DropDownButton@CATEGORIES_DROPDOWN:
|
DropDownButton@CATEGORIES_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 24
|
Y: 24
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@OWNERS_LABEL:
|
Label@OWNERS_LABEL:
|
||||||
@@ -401,19 +401,19 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
DropDownButton@OWNERS_DROPDOWN:
|
DropDownButton@OWNERS_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 48
|
Y: 48
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@ACTORTEMPLATE_LIST:
|
ScrollPanel@ACTORTEMPLATE_LIST:
|
||||||
Y: 72
|
Y: 72
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 72
|
Height: PARENT_HEIGHT - 72
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@ACTORPREVIEW_TEMPLATE:
|
ScrollItem@ACTORPREVIEW_TEMPLATE:
|
||||||
Visible: false
|
Visible: false
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
@@ -423,15 +423,15 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Y: 4
|
Y: 4
|
||||||
Visible: true
|
Visible: true
|
||||||
Container@TOOLS_WIDGETS:
|
Container@TOOLS_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 318
|
Y: 318
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 410
|
Height: WINDOW_HEIGHT - 410
|
||||||
Visible: false
|
Visible: false
|
||||||
Logic: MapToolsLogic
|
Logic: MapToolsLogic
|
||||||
Children:
|
Children:
|
||||||
Background@TOOLS_EDIT_PANEL:
|
Background@TOOLS_EDIT_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
@@ -444,20 +444,20 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
DropDownButton@TOOLS_DROPDOWN:
|
DropDownButton@TOOLS_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@MARKER_TOOL_PANEL:
|
Background@MARKER_TOOL_PANEL:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 25
|
Height: PARENT_HEIGHT - 25
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Logic: MapMarkerTilesLogic
|
Logic: MapMarkerTilesLogic
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@TILE_COLOR_PANEL:
|
ScrollPanel@TILE_COLOR_PANEL:
|
||||||
X: 6
|
X: 6
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 19
|
Width: PARENT_WIDTH - 19
|
||||||
Height: 31
|
Height: 31
|
||||||
TopBottomSpacing: 1
|
TopBottomSpacing: 1
|
||||||
ItemSpacing: 1
|
ItemSpacing: 1
|
||||||
@@ -580,16 +580,16 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Visible: false
|
Visible: false
|
||||||
Container@HISTORY_WIDGETS:
|
Container@HISTORY_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 318
|
Y: 318
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 410
|
Height: WINDOW_HEIGHT - 410
|
||||||
Logic: HistoryLogLogic
|
Logic: HistoryLogLogic
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@HISTORY_LIST:
|
ScrollPanel@HISTORY_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
@@ -597,7 +597,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
ScrollItem@HISTORY_TEMPLATE:
|
ScrollItem@HISTORY_TEMPLATE:
|
||||||
X: 4
|
X: 4
|
||||||
Visible: false
|
Visible: false
|
||||||
Width: PARENT_RIGHT - 31
|
Width: PARENT_WIDTH - 31
|
||||||
Height: 25
|
Height: 25
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
TextColor: ffffff
|
TextColor: ffffff
|
||||||
@@ -605,24 +605,24 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Left
|
Align: Left
|
||||||
Container@SELECT_WIDGETS:
|
Container@SELECT_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 318
|
Y: 318
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: WINDOW_BOTTOM - 410
|
Height: WINDOW_HEIGHT - 410
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Background@AREA_EDIT_PANEL:
|
Background@AREA_EDIT_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@AREA_EDIT_TITLE:
|
Label@AREA_EDIT_TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -638,24 +638,24 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Checkbox@COPY_FILTER_TERRAIN_CHECKBOX:
|
Checkbox@COPY_FILTER_TERRAIN_CHECKBOX:
|
||||||
X: 7
|
X: 7
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-filter-terrain
|
Text: label-filter-terrain
|
||||||
Checkbox@COPY_FILTER_RESOURCES_CHECKBOX:
|
Checkbox@COPY_FILTER_RESOURCES_CHECKBOX:
|
||||||
X: 7
|
X: 7
|
||||||
Y: 95
|
Y: 95
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-filter-resources
|
Text: label-filter-resources
|
||||||
Checkbox@COPY_FILTER_ACTORS_CHECKBOX:
|
Checkbox@COPY_FILTER_ACTORS_CHECKBOX:
|
||||||
X: 7
|
X: 7
|
||||||
Y: 120
|
Y: 120
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-filter-actors
|
Text: label-filter-actors
|
||||||
Label@AREA_INFO_TITLE:
|
Label@AREA_INFO_TITLE:
|
||||||
Y: 139
|
Y: 139
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -696,13 +696,13 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@ACTOR_EDIT_PANEL:
|
Background@ACTOR_EDIT_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@ACTOR_TYPE_LABEL:
|
Label@ACTOR_TYPE_LABEL:
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -726,19 +726,19 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TextColor: FF0000
|
TextColor: FF0000
|
||||||
Container@ACTOR_INIT_CONTAINER:
|
Container@ACTOR_INIT_CONTAINER:
|
||||||
Y: 63
|
Y: 63
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_OPTION_TEMPLATE:
|
Container@CHECKBOX_OPTION_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 22
|
Height: 22
|
||||||
Children:
|
Children:
|
||||||
Checkbox@OPTION:
|
Checkbox@OPTION:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 100
|
Width: PARENT_WIDTH - 100
|
||||||
Height: 20
|
Height: 20
|
||||||
Container@SLIDER_OPTION_TEMPLATE:
|
Container@SLIDER_OPTION_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 22
|
Height: 22
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
@@ -758,7 +758,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Height: 20
|
Height: 20
|
||||||
Type: Integer
|
Type: Integer
|
||||||
Container@DROPDOWN_OPTION_TEMPLATE:
|
Container@DROPDOWN_OPTION_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 27
|
Height: 27
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
@@ -795,7 +795,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MAP_EDITOR_TAB_CONTAINER:
|
Container@MAP_EDITOR_TAB_CONTAINER:
|
||||||
Logic: MapEditorTabsLogic
|
Logic: MapEditorTabsLogic
|
||||||
X: WINDOW_RIGHT - 295
|
X: WINDOW_WIDTH - 295
|
||||||
Y: 294
|
Y: 294
|
||||||
Width: 290
|
Width: 290
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -884,7 +884,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
ImageCollection: editor
|
ImageCollection: editor
|
||||||
ImageName: history
|
ImageName: history
|
||||||
Button@UNDO_BUTTON:
|
Button@UNDO_BUTTON:
|
||||||
X: WINDOW_RIGHT - 764
|
X: WINDOW_WIDTH - 764
|
||||||
Y: 5
|
Y: 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 100
|
Width: 100
|
||||||
@@ -895,7 +895,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TooltipText: button-editor-world-root-undo.tooltip
|
TooltipText: button-editor-world-root-undo.tooltip
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Button@REDO_BUTTON:
|
Button@REDO_BUTTON:
|
||||||
X: WINDOW_RIGHT - 654
|
X: WINDOW_WIDTH - 654
|
||||||
Y: 5
|
Y: 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 100
|
Width: 100
|
||||||
@@ -906,7 +906,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TooltipText: button-editor-world-root-redo.tooltip
|
TooltipText: button-editor-world-root-redo.tooltip
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Button@COPY_BUTTON:
|
Button@COPY_BUTTON:
|
||||||
X: WINDOW_RIGHT - 544
|
X: WINDOW_WIDTH - 544
|
||||||
Y: 5
|
Y: 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 100
|
Width: 100
|
||||||
@@ -917,7 +917,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TooltipText: button-editor-world-root-copy.tooltip
|
TooltipText: button-editor-world-root-copy.tooltip
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Button@PASTE_BUTTON:
|
Button@PASTE_BUTTON:
|
||||||
X: WINDOW_RIGHT - 434
|
X: WINDOW_WIDTH - 434
|
||||||
Y: 5
|
Y: 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 100
|
Width: 100
|
||||||
@@ -928,7 +928,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TooltipText: button-editor-world-root-paste.tooltip
|
TooltipText: button-editor-world-root-paste.tooltip
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
DropDownButton@OVERLAY_BUTTON:
|
DropDownButton@OVERLAY_BUTTON:
|
||||||
X: WINDOW_RIGHT - 914
|
X: WINDOW_WIDTH - 914
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -955,7 +955,7 @@ ScrollPanel@CATEGORY_FILTER_PANEL:
|
|||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Container@SELECT_CATEGORIES_BUTTONS:
|
Container@SELECT_CATEGORIES_BUTTONS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Button@SELECT_ALL:
|
Button@SELECT_ALL:
|
||||||
@@ -974,7 +974,7 @@ ScrollPanel@CATEGORY_FILTER_PANEL:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Checkbox@CATEGORY_TEMPLATE:
|
Checkbox@CATEGORY_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: false
|
Visible: false
|
||||||
|
|
||||||
@@ -987,6 +987,6 @@ ScrollPanel@OVERLAY_PANEL:
|
|||||||
Checkbox@CATEGORY_TEMPLATE:
|
Checkbox@CATEGORY_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: false
|
Visible: false
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
Background@ENCYCLOPEDIA_PANEL:
|
Background@ENCYCLOPEDIA_PANEL:
|
||||||
Logic: EncyclopediaLogic
|
Logic: EncyclopediaLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
Children:
|
Children:
|
||||||
Container@ENCYCLOPEDIA_CONTENT:
|
Container@ENCYCLOPEDIA_CONTENT:
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM - 80
|
Height: PARENT_HEIGHT - 80
|
||||||
X: 20
|
X: 20
|
||||||
Y: 20
|
Y: 20
|
||||||
Children:
|
Children:
|
||||||
Label@ENCYCLOPEDIA_TITLE:
|
Label@ENCYCLOPEDIA_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-encyclopedia-title
|
Text: label-encyclopedia-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -20,37 +20,37 @@ Background@ENCYCLOPEDIA_PANEL:
|
|||||||
ScrollPanel@ACTOR_LIST:
|
ScrollPanel@ACTOR_LIST:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 190
|
Width: 190
|
||||||
Height: PARENT_BOTTOM - 25
|
Height: PARENT_HEIGHT - 25
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@ACTOR_INFO:
|
Container@ACTOR_INFO:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT - 190 - 10
|
Width: PARENT_WIDTH - 190 - 10
|
||||||
Height: PARENT_BOTTOM - 25
|
Height: PARENT_HEIGHT - 25
|
||||||
Children:
|
Children:
|
||||||
Background@ACTOR_BG:
|
Background@ACTOR_BG:
|
||||||
Width: 150
|
Width: 150
|
||||||
@@ -60,23 +60,23 @@ Background@ENCYCLOPEDIA_PANEL:
|
|||||||
ActorPreview@ACTOR_PREVIEW:
|
ActorPreview@ACTOR_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
ScrollPanel@ACTOR_DESCRIPTION_PANEL:
|
ScrollPanel@ACTOR_DESCRIPTION_PANEL:
|
||||||
X: 150 + 10
|
X: 150 + 10
|
||||||
Width: PARENT_RIGHT - 150 - 10
|
Width: PARENT_WIDTH - 150 - 10
|
||||||
Height: 170
|
Height: 170
|
||||||
TopBottomSpacing: 8
|
TopBottomSpacing: 8
|
||||||
Children:
|
Children:
|
||||||
Label@ACTOR_DESCRIPTION:
|
Label@ACTOR_DESCRIPTION:
|
||||||
X: 8
|
X: 8
|
||||||
Y: 8
|
Y: 8
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@GAMESAVE_BROWSER_PANEL:
|
Container@GAMESAVE_BROWSER_PANEL:
|
||||||
Logic: GameSaveBrowserLogic
|
Logic: GameSaveBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 716
|
Width: 716
|
||||||
Height: 435
|
Height: 435
|
||||||
Children:
|
Children:
|
||||||
Label@LOAD_TITLE:
|
Label@LOAD_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -15,7 +15,7 @@ Container@GAMESAVE_BROWSER_PANEL:
|
|||||||
Text: label-gamesave-browser-panel-load-title
|
Text: label-gamesave-browser-panel-load-title
|
||||||
Visible: False
|
Visible: False
|
||||||
Label@SAVE_TITLE:
|
Label@SAVE_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -24,29 +24,29 @@ Container@GAMESAVE_BROWSER_PANEL:
|
|||||||
Text: label-gamesave-browser-panel-save-title
|
Text: label-gamesave-browser-panel-save-title
|
||||||
Visible: False
|
Visible: False
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@GAME_LIST:
|
ScrollPanel@GAME_LIST:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@NEW_TEMPLATE:
|
ScrollItem@NEW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-title
|
Text: label-bg-title
|
||||||
ScrollItem@GAME_TEMPLATE:
|
ScrollItem@GAME_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -54,65 +54,65 @@ Container@GAMESAVE_BROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 200 - 10
|
Width: PARENT_WIDTH - 200 - 10
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: GAMESAVE_TOOLTIP_CONTAINER
|
TooltipContainer: GAMESAVE_TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@DATE:
|
Label@DATE:
|
||||||
X: PARENT_RIGHT - WIDTH - 10
|
X: PARENT_WIDTH - WIDTH - 10
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Right
|
Align: Right
|
||||||
Container@SAVE_WIDGETS:
|
Container@SAVE_WIDGETS:
|
||||||
X: 15
|
X: 15
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 30
|
Height: 30
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
TextField@SAVE_TEXTFIELD:
|
TextField@SAVE_TEXTFIELD:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Type: Filename
|
Type: Filename
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: 0
|
X: 0
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Button@DELETE_ALL_BUTTON:
|
Button@DELETE_ALL_BUTTON:
|
||||||
X: PARENT_RIGHT - 370 - WIDTH
|
X: PARENT_WIDTH - 370 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-delete-all
|
Text: button-bg-delete-all
|
||||||
Button@DELETE_BUTTON:
|
Button@DELETE_BUTTON:
|
||||||
X: PARENT_RIGHT - 260 - WIDTH
|
X: PARENT_WIDTH - 260 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-delete
|
Text: button-bg-delete
|
||||||
Key: Delete
|
Key: Delete
|
||||||
Button@RENAME_BUTTON:
|
Button@RENAME_BUTTON:
|
||||||
X: PARENT_RIGHT - 150 - WIDTH
|
X: PARENT_WIDTH - 150 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-rename
|
Text: button-bg-rename
|
||||||
Key: F2
|
Key: F2
|
||||||
Button@LOAD_BUTTON:
|
Button@LOAD_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-load
|
Text: button-bg-load
|
||||||
Visible: False
|
Visible: False
|
||||||
Button@SAVE_BUTTON:
|
Button@SAVE_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-save
|
Text: button-bg-save
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
Container@GAMESAVE_LOADING_SCREEN:
|
Container@GAMESAVE_LOADING_SCREEN:
|
||||||
Logic: GameSaveLoadingLogic
|
Logic: GameSaveLoadingLogic
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
LogicKeyListener@CANCEL_HANDLER:
|
LogicKeyListener@CANCEL_HANDLER:
|
||||||
Image@NOD:
|
Image@NOD:
|
||||||
X: WINDOW_RIGHT / 2 - 384
|
X: WINDOW_WIDTH / 2 - 384
|
||||||
Y: (WINDOW_BOTTOM - 256) / 2
|
Y: (WINDOW_HEIGHT - 256) / 2
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: nod-load
|
ImageName: nod-load
|
||||||
Image@GDI:
|
Image@GDI:
|
||||||
X: WINDOW_RIGHT / 2 + 128
|
X: WINDOW_WIDTH / 2 + 128
|
||||||
Y: (WINDOW_BOTTOM - 256) / 2
|
Y: (WINDOW_HEIGHT - 256) / 2
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: gdi-load
|
ImageName: gdi-load
|
||||||
Image@EVA:
|
Image@EVA:
|
||||||
X: WINDOW_RIGHT - 128 - 43
|
X: WINDOW_WIDTH - 128 - 43
|
||||||
Y: 43
|
Y: 43
|
||||||
Width: 128
|
Width: 128
|
||||||
Height: 64
|
Height: 64
|
||||||
@@ -23,30 +23,30 @@ Container@GAMESAVE_LOADING_SCREEN:
|
|||||||
ImageName: eva
|
ImageName: eva
|
||||||
Label@VERSION_LABEL:
|
Label@VERSION_LABEL:
|
||||||
Logic: VersionLabelLogic
|
Logic: VersionLabelLogic
|
||||||
X: WINDOW_RIGHT - 128 - 43
|
X: WINDOW_WIDTH - 128 - 43
|
||||||
Y: 116
|
Y: 116
|
||||||
Width: 128
|
Width: 128
|
||||||
Align: Center
|
Align: Center
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Background@BORDER:
|
Background@BORDER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Background: shellmapborder
|
Background: shellmapborder
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Y: 3 * WINDOW_BOTTOM / 4 - 29
|
Y: 3 * WINDOW_HEIGHT / 4 - 29
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-gamesave-loading-screen-title
|
Text: label-gamesave-loading-screen-title
|
||||||
ProgressBar@PROGRESS:
|
ProgressBar@PROGRESS:
|
||||||
X: (WINDOW_RIGHT - 500) / 2
|
X: (WINDOW_WIDTH - 500) / 2
|
||||||
Y: 3 * WINDOW_BOTTOM / 4
|
Y: 3 * WINDOW_HEIGHT / 4
|
||||||
Width: 500
|
Width: 500
|
||||||
Height: 20
|
Height: 20
|
||||||
Label@DESC:
|
Label@DESC:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Y: 3 * WINDOW_BOTTOM / 4 + 19
|
Y: 3 * WINDOW_HEIGHT / 4 + 19
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@CHAT_PANEL:
|
Container@CHAT_PANEL:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: WINDOW_BOTTOM - HEIGHT - 56
|
Y: WINDOW_HEIGHT - HEIGHT - 56
|
||||||
Width: 550
|
Width: 550
|
||||||
Height: 194
|
Height: 194
|
||||||
Logic: IngameChatLogic
|
Logic: IngameChatLogic
|
||||||
@@ -13,22 +13,22 @@ Container@CHAT_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LogicKeyListener@OPEN_CHAT_KEY_LISTENER:
|
LogicKeyListener@OPEN_CHAT_KEY_LISTENER:
|
||||||
Container@CHAT_OVERLAY:
|
Container@CHAT_OVERLAY:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
TextNotificationsDisplay@CHAT_DISPLAY:
|
TextNotificationsDisplay@CHAT_DISPLAY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
DisplayDurationMs: 10000
|
DisplayDurationMs: 10000
|
||||||
BottomSpacing: 3
|
BottomSpacing: 3
|
||||||
Container@CHAT_CHROME:
|
Container@CHAT_CHROME:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
WorldButton@CHAT_MODE:
|
WorldButton@CHAT_MODE:
|
||||||
Logic: AddFactionSuffixLogic
|
Logic: AddFactionSuffixLogic
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-chat-chrome-mode.label
|
Text: button-chat-chrome-mode.label
|
||||||
@@ -40,13 +40,13 @@ Container@CHAT_PANEL:
|
|||||||
TextField@CHAT_TEXTFIELD:
|
TextField@CHAT_TEXTFIELD:
|
||||||
Logic: AddFactionSuffixLogic
|
Logic: AddFactionSuffixLogic
|
||||||
X: 55
|
X: 55
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 466
|
Width: 466
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@CHAT_CLOSE:
|
Button@CHAT_CLOSE:
|
||||||
Logic: AddFactionSuffixLogic
|
Logic: AddFactionSuffixLogic
|
||||||
X: 526
|
X: 526
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 24
|
Width: 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
@@ -58,7 +58,7 @@ Container@CHAT_PANEL:
|
|||||||
LogicKeyListener@KEY_LISTENER:
|
LogicKeyListener@KEY_LISTENER:
|
||||||
ScrollPanel@CHAT_SCROLLPANEL:
|
ScrollPanel@CHAT_SCROLLPANEL:
|
||||||
Logic: AddFactionSuffixLogic
|
Logic: AddFactionSuffixLogic
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 30
|
Y: PARENT_HEIGHT - HEIGHT - 30
|
||||||
Width: 550
|
Width: 550
|
||||||
Height: 164
|
Height: 164
|
||||||
TopBottomSpacing: 3
|
TopBottomSpacing: 3
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
Container@DEBUG_PANEL:
|
Container@DEBUG_PANEL:
|
||||||
Logic: DebugMenuLogic
|
Logic: DebugMenuLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: label-debug-panel-title
|
Text: label-debug-panel-title
|
||||||
Align: Center
|
Align: Center
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Checkbox@INSTANT_BUILD:
|
Checkbox@INSTANT_BUILD:
|
||||||
X: 45
|
X: 45
|
||||||
@@ -81,7 +81,7 @@ Container@DEBUG_PANEL:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Text: label-debug-panel-visualizations-title
|
Text: label-debug-panel-visualizations-title
|
||||||
Align: Center
|
Align: Center
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Checkbox@SHOW_UNIT_PATHS:
|
Checkbox@SHOW_UNIT_PATHS:
|
||||||
X: 45
|
X: 45
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Container@DEBUG_WIDGETS:
|
Container@DEBUG_WIDGETS:
|
||||||
Logic: DebugLogic
|
Logic: DebugLogic
|
||||||
X: WINDOW_RIGHT / 2 - WIDTH
|
X: WINDOW_WIDTH / 2 - WIDTH
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 55
|
Height: 55
|
||||||
Children:
|
Children:
|
||||||
Label@DEBUG_TEXT:
|
Label@DEBUG_TEXT:
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 15
|
Height: 15
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
|||||||
@@ -1,64 +1,64 @@
|
|||||||
Container@LOBBY_OPTIONS_PANEL:
|
Container@LOBBY_OPTIONS_PANEL:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel:
|
ScrollPanel:
|
||||||
Logic: LobbyOptionsLogic
|
Logic: LobbyOptionsLogic
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Children:
|
Children:
|
||||||
Container@LOBBY_OPTIONS:
|
Container@LOBBY_OPTIONS:
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_ROW_TEMPLATE:
|
Container@CHECKBOX_ROW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Checkbox@A:
|
Checkbox@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@B:
|
Checkbox@B:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Container@DROPDOWN_ROW_TEMPLATE:
|
Container@DROPDOWN_ROW_TEMPLATE:
|
||||||
Height: 60
|
Height: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@A_DESC:
|
LabelForInput@A_DESC:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: A
|
For: A
|
||||||
DropDownButton@A:
|
DropDownButton@A:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@B_DESC:
|
LabelForInput@B_DESC:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: B
|
For: B
|
||||||
DropDownButton@B:
|
DropDownButton@B:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Container@GAME_INFO_PANEL:
|
Container@GAME_INFO_PANEL:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 570
|
Width: 570
|
||||||
Height: 435
|
Height: 435
|
||||||
Logic: GameInfoLogic
|
Logic: GameInfoLogic
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Text: label-game-info-panel-title
|
Text: label-game-info-panel-title
|
||||||
@@ -83,25 +83,25 @@ Container@GAME_INFO_PANEL:
|
|||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Background@BACKGROUND:
|
Background@BACKGROUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@STATS_PANEL:
|
Container@STATS_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@MAP_PANEL:
|
Container@MAP_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@OBJECTIVES_PANEL:
|
Container@OBJECTIVES_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@DEBUG_PANEL:
|
Container@DEBUG_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@CHAT_PANEL:
|
Container@CHAT_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@LOBBY_OPTIONS_PANEL:
|
Container@LOBBY_OPTIONS_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
Container@MAP_PANEL:
|
Container@MAP_PANEL:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: GameInfoBriefingLogic
|
Logic: GameInfoBriefingLogic
|
||||||
Children:
|
Children:
|
||||||
Background@PREVIEW_BG:
|
Background@PREVIEW_BG:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 362
|
Width: 362
|
||||||
Height: 202
|
Height: 202
|
||||||
@@ -21,10 +21,10 @@ Container@MAP_PANEL:
|
|||||||
ScrollPanel@MAP_DESCRIPTION_PANEL:
|
ScrollPanel@MAP_DESCRIPTION_PANEL:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 228
|
Y: 228
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 228 - 15
|
Height: PARENT_HEIGHT - 228 - 15
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_DESCRIPTION:
|
Label@MAP_DESCRIPTION:
|
||||||
X: 4
|
X: 4
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 32
|
Width: PARENT_WIDTH - 32
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
Container@CHAT_CONTAINER:
|
Container@CHAT_CONTAINER:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Logic: IngameChatLogic
|
Logic: IngameChatLogic
|
||||||
Templates:
|
Templates:
|
||||||
Chat: CHAT_LINE_TEMPLATE
|
Chat: CHAT_LINE_TEMPLATE
|
||||||
@@ -10,11 +10,11 @@ Container@CHAT_CONTAINER:
|
|||||||
Mission: CHAT_LINE_TEMPLATE
|
Mission: CHAT_LINE_TEMPLATE
|
||||||
Children:
|
Children:
|
||||||
Container@CHAT_CHROME:
|
Container@CHAT_CHROME:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Button@CHAT_MODE:
|
Button@CHAT_MODE:
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-chat-chrome-mode.label
|
Text: button-chat-chrome-mode.label
|
||||||
@@ -24,11 +24,11 @@ Container@CHAT_CONTAINER:
|
|||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TextField@CHAT_TEXTFIELD:
|
TextField@CHAT_TEXTFIELD:
|
||||||
X: 55
|
X: 55
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: PARENT_RIGHT - 55
|
Width: PARENT_WIDTH - 55
|
||||||
Height: 25
|
Height: 25
|
||||||
ScrollPanel@CHAT_SCROLLPANEL:
|
ScrollPanel@CHAT_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
TopBottomSpacing: 3
|
TopBottomSpacing: 3
|
||||||
ItemSpacing: 2
|
ItemSpacing: 2
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@MISSION_OBJECTIVES:
|
Container@MISSION_OBJECTIVES:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: GameInfoObjectivesLogic
|
Logic: GameInfoObjectivesLogic
|
||||||
Children:
|
Children:
|
||||||
Label@MISSION:
|
Label@MISSION:
|
||||||
@@ -13,31 +13,31 @@ Container@MISSION_OBJECTIVES:
|
|||||||
Label@MISSION_STATUS:
|
Label@MISSION_STATUS:
|
||||||
X: 95
|
X: 95
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT - 110
|
Width: PARENT_WIDTH - 110
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
ScrollPanel@OBJECTIVES_PANEL:
|
ScrollPanel@OBJECTIVES_PANEL:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 65
|
Height: PARENT_HEIGHT - 65
|
||||||
TopBottomSpacing: 15
|
TopBottomSpacing: 15
|
||||||
ItemSpacing: 15
|
ItemSpacing: 15
|
||||||
Children:
|
Children:
|
||||||
Container@OBJECTIVE_TEMPLATE:
|
Container@OBJECTIVE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Label@OBJECTIVE_TYPE:
|
Label@OBJECTIVE_TYPE:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Checkbox@OBJECTIVE_STATUS:
|
Checkbox@OBJECTIVE_STATUS:
|
||||||
X: 90
|
X: 90
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT - 100
|
Width: PARENT_WIDTH - 100
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Disabled: True
|
Disabled: True
|
||||||
TextColorDisabled: FFFFFF
|
TextColorDisabled: FFFFFF
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@SKIRMISH_STATS:
|
Container@SKIRMISH_STATS:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: GameInfoStatsLogic
|
Logic: GameInfoStatsLogic
|
||||||
Children:
|
Children:
|
||||||
Container@OBJECTIVE:
|
Container@OBJECTIVE:
|
||||||
@@ -16,7 +16,7 @@ Container@SKIRMISH_STATS:
|
|||||||
Label@STATS_STATUS:
|
Label@STATS_STATUS:
|
||||||
X: 95
|
X: 95
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT - 110
|
Width: PARENT_WIDTH - 110
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
Checkbox@STATS_CHECKBOX:
|
Checkbox@STATS_CHECKBOX:
|
||||||
@@ -31,7 +31,7 @@ Container@SKIRMISH_STATS:
|
|||||||
Container@STATS_HEADERS:
|
Container@STATS_HEADERS:
|
||||||
X: 17
|
X: 17
|
||||||
Y: 80
|
Y: 80
|
||||||
Width: PARENT_RIGHT - 34
|
Width: PARENT_WIDTH - 34
|
||||||
Children:
|
Children:
|
||||||
Label@NAME:
|
Label@NAME:
|
||||||
X: 10
|
X: 10
|
||||||
@@ -63,13 +63,13 @@ Container@SKIRMISH_STATS:
|
|||||||
ScrollPanel@PLAYER_LIST:
|
ScrollPanel@PLAYER_LIST:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 105
|
Y: 105
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 120
|
Height: PARENT_HEIGHT - 120
|
||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEAM_TEMPLATE:
|
ScrollItem@TEAM_TEMPLATE:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 20
|
Height: 20
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -87,7 +87,7 @@ Container@SKIRMISH_STATS:
|
|||||||
Height: 20
|
Height: 20
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@PLAYER_TEMPLATE:
|
Container@PLAYER_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Children:
|
Children:
|
||||||
@@ -146,7 +146,7 @@ Container@SKIRMISH_STATS:
|
|||||||
X: 7
|
X: 7
|
||||||
Y: 7
|
Y: 7
|
||||||
Container@SPECTATOR_TEMPLATE:
|
Container@SPECTATOR_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@INGAME_MENU:
|
Container@INGAME_MENU:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Logic: IngameMenuLogic
|
Logic: IngameMenuLogic
|
||||||
Buttons: EXIT_EDITOR, PLAY_MAP, SAVE_MAP, ABORT_MISSION, BACK_TO_EDITOR, SURRENDER, RESTART, LOAD_GAME, SAVE_GAME, MUSIC, SETTINGS, RESUME
|
Buttons: EXIT_EDITOR, PLAY_MAP, SAVE_MAP, ABORT_MISSION, BACK_TO_EDITOR, SURRENDER, RESTART, LOAD_GAME, SAVE_GAME, MUSIC, SETTINGS, RESUME
|
||||||
ButtonStride: 130, 0
|
ButtonStride: 130, 0
|
||||||
Children:
|
Children:
|
||||||
Image@EVA:
|
Image@EVA:
|
||||||
X: WINDOW_RIGHT - 128 - 43
|
X: WINDOW_WIDTH - 128 - 43
|
||||||
Y: 43
|
Y: 43
|
||||||
Width: 128
|
Width: 128
|
||||||
Height: 64
|
Height: 64
|
||||||
@@ -14,19 +14,19 @@ Container@INGAME_MENU:
|
|||||||
ImageName: eva
|
ImageName: eva
|
||||||
Label@VERSION_LABEL:
|
Label@VERSION_LABEL:
|
||||||
Logic: VersionLabelLogic
|
Logic: VersionLabelLogic
|
||||||
X: WINDOW_RIGHT - 128 - 43
|
X: WINDOW_WIDTH - 128 - 43
|
||||||
Y: 116
|
Y: 116
|
||||||
Width: 128
|
Width: 128
|
||||||
Align: Center
|
Align: Center
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Background@BORDER:
|
Background@BORDER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Background: shellmapborder
|
Background: shellmapborder
|
||||||
Container@PANEL_ROOT:
|
Container@PANEL_ROOT:
|
||||||
Container@MENU_BUTTONS:
|
Container@MENU_BUTTONS:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: WINDOW_BOTTOM - 33 - HEIGHT - 10
|
Y: WINDOW_HEIGHT - 33 - HEIGHT - 10
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 35
|
Height: 35
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,45 +1,45 @@
|
|||||||
Background@KICK_CLIENT_DIALOG:
|
Background@KICK_CLIENT_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Logic: KickClientLogic
|
Logic: KickClientLogic
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@TEXTA:
|
Label@TEXTA:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-client-dialog-texta
|
Text: label-kick-client-dialog-texta
|
||||||
Label@TEXTB:
|
Label@TEXTB:
|
||||||
Y: 86
|
Y: 86
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-client-dialog-textb
|
Text: label-kick-client-dialog-textb
|
||||||
Checkbox@PREVENT_REJOINING_CHECKBOX:
|
Checkbox@PREVENT_REJOINING_CHECKBOX:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 120
|
Y: 120
|
||||||
Width: 150
|
Width: 150
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-kick-client-dialog-prevent-rejoining
|
Text: checkbox-kick-client-dialog-prevent-rejoining
|
||||||
Button@OK_BUTTON:
|
Button@OK_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 + 75
|
X: (PARENT_WIDTH - WIDTH) / 2 + 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-kick-client-dialog
|
Text: button-kick-client-dialog
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 - 75
|
X: (PARENT_WIDTH - WIDTH) / 2 - 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -47,33 +47,33 @@ Background@KICK_CLIENT_DIALOG:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
|
|
||||||
Background@KICK_SPECTATORS_DIALOG:
|
Background@KICK_SPECTATORS_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Logic: KickSpectatorsLogic
|
Logic: KickSpectatorsLogic
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-spectators-dialog-title
|
Text: label-kick-spectators-dialog-title
|
||||||
Label@TEXT:
|
Label@TEXT:
|
||||||
Y: 86
|
Y: 86
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@OK_BUTTON:
|
Button@OK_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 + 75
|
X: (PARENT_WIDTH - WIDTH) / 2 + 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-kick-spectators-dialog-ok
|
Text: button-kick-spectators-dialog-ok
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 - 75
|
X: (PARENT_WIDTH - WIDTH) / 2 - 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -81,38 +81,38 @@ Background@KICK_SPECTATORS_DIALOG:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
|
|
||||||
Background@FORCE_START_DIALOG:
|
Background@FORCE_START_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-force-start-dialog-title
|
Text: label-force-start-dialog-title
|
||||||
Label@TEXTA:
|
Label@TEXTA:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-force-start-dialog-texta
|
Text: label-force-start-dialog-texta
|
||||||
Label@TEXTB:
|
Label@TEXTB:
|
||||||
Y: 86
|
Y: 86
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-force-start-dialog-textb
|
Text: label-force-start-dialog-textb
|
||||||
Container@KICK_WARNING:
|
Container@KICK_WARNING:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@KICK_WARNING_A:
|
Label@KICK_WARNING_A:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 107
|
Y: 107
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -120,20 +120,20 @@ Background@FORCE_START_DIALOG:
|
|||||||
Label@KICK_WARNING_B:
|
Label@KICK_WARNING_B:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 124
|
Y: 124
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-warning-b
|
Text: label-kick-warning-b
|
||||||
Button@OK_BUTTON:
|
Button@OK_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 + 75
|
X: (PARENT_WIDTH - WIDTH) / 2 + 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-force-start-dialog-start
|
Text: button-force-start-dialog-start
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 - 75
|
X: (PARENT_WIDTH - WIDTH) / 2 - 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|||||||
@@ -1,78 +1,78 @@
|
|||||||
Container@MAP_PREVIEW:
|
Container@MAP_PREVIEW:
|
||||||
Logic: MapPreviewLogic
|
Logic: MapPreviewLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@MAP_LARGE:
|
Container@MAP_LARGE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 174
|
Height: 174
|
||||||
Background: panel-gray
|
Background: panel-gray
|
||||||
Children:
|
Children:
|
||||||
MapPreview@MAP_PREVIEW:
|
MapPreview@MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@MAP_TITLE:
|
LabelWithTooltip@MAP_TITLE:
|
||||||
Y: 173
|
Y: 173
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@MAP_SMALL:
|
Container@MAP_SMALL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 142
|
Height: 142
|
||||||
Background: panel-gray
|
Background: panel-gray
|
||||||
Children:
|
Children:
|
||||||
MapPreview@MAP_PREVIEW:
|
MapPreview@MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@MAP_TITLE:
|
LabelWithTooltip@MAP_TITLE:
|
||||||
Y: 143
|
Y: 143
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@MAP_AVAILABLE:
|
Container@MAP_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_TYPE:
|
Label@MAP_TYPE:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Label@MAP_AUTHOR:
|
Label@MAP_AUTHOR:
|
||||||
Y: 201
|
Y: 201
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@MAP_INCOMPATIBLE:
|
Container@MAP_INCOMPATIBLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_STATUS_A:
|
Label@MAP_STATUS_A:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -80,18 +80,18 @@ Container@MAP_PREVIEW:
|
|||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Label@MAP_STATUS_B:
|
Label@MAP_STATUS_B:
|
||||||
Y: 201
|
Y: 201
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-incompatible-status-b
|
Text: label-map-incompatible-status-b
|
||||||
Container@MAP_VALIDATING:
|
Container@MAP_VALIDATING:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_STATUS_VALIDATING:
|
Label@MAP_STATUS_VALIDATING:
|
||||||
Y: 174
|
Y: 174
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -99,109 +99,109 @@ Container@MAP_PREVIEW:
|
|||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
ProgressBar@MAP_VALIDATING_BAR:
|
ProgressBar@MAP_VALIDATING_BAR:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Indeterminate: True
|
Indeterminate: True
|
||||||
Container@MAP_DOWNLOAD_AVAILABLE:
|
Container@MAP_DOWNLOAD_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_TYPE:
|
Label@MAP_TYPE:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Label@MAP_AUTHOR:
|
Label@MAP_AUTHOR:
|
||||||
Y: 171
|
Y: 171
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@MAP_INSTALL:
|
Button@MAP_INSTALL:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-map-download-available-install
|
Text: button-map-download-available-install
|
||||||
Button@MAP_UPDATE:
|
Button@MAP_UPDATE:
|
||||||
Y: 195
|
Y: 195
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-map-preview-update
|
Text: button-map-preview-update
|
||||||
Container@MAP_UPDATE_DOWNLOAD_AVAILABLE:
|
Container@MAP_UPDATE_DOWNLOAD_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Button@MAP_INSTALL:
|
Button@MAP_INSTALL:
|
||||||
Y: 166
|
Y: 166
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-map-update-download-available-install
|
Text: button-map-update-download-available-install
|
||||||
Label@MAP_SEARCHING:
|
Label@MAP_SEARCHING:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-preview-searching
|
Text: label-map-preview-searching
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Container@MAP_UNAVAILABLE:
|
Container@MAP_UNAVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@a:
|
Label@a:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-unavailable-a
|
Text: label-map-unavailable-a
|
||||||
Label@b:
|
Label@b:
|
||||||
Y: 171
|
Y: 171
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-unavailable-b
|
Text: label-map-unavailable-b
|
||||||
Label@MAP_ERROR:
|
Label@MAP_ERROR:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-preview-error
|
Text: label-map-preview-error
|
||||||
Container@MAP_DOWNLOADING:
|
Container@MAP_DOWNLOADING:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_STATUS_DOWNLOADING:
|
Label@MAP_STATUS_DOWNLOADING:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
ProgressBar@MAP_PROGRESSBAR:
|
ProgressBar@MAP_PROGRESSBAR:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Indeterminate: True
|
Indeterminate: True
|
||||||
Button@MAP_RETRY:
|
Button@MAP_RETRY:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Container@MAP_UPDATE_AVAILABLE:
|
Container@MAP_UPDATE_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@a:
|
Label@a:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-update-available-a
|
Text: label-map-update-available-a
|
||||||
Label@b:
|
Label@b:
|
||||||
Y: 171
|
Y: 171
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@LOBBY_MUSIC_BIN:
|
Container@LOBBY_MUSIC_BIN:
|
||||||
Logic: MusicPlayerLogic
|
Logic: MusicPlayerLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
LogicTicker@SONG_WATCHER:
|
LogicTicker@SONG_WATCHER:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
Y: 0 - 23
|
Y: 0 - 23
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@MUSIC:
|
Label@MUSIC:
|
||||||
Width: 308
|
Width: 308
|
||||||
@@ -21,7 +21,7 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Text: label-container-title
|
Text: label-container-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@LENGTH:
|
Label@LENGTH:
|
||||||
X: PARENT_RIGHT - 80
|
X: PARENT_WIDTH - 80
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 50
|
Width: 50
|
||||||
Text: label-music-controls-length
|
Text: label-music-controls-length
|
||||||
@@ -30,7 +30,7 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Background@CONTROLS:
|
Background@CONTROLS:
|
||||||
Background: panel-transparent
|
Background: panel-transparent
|
||||||
Width: 308
|
Width: 308
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MUTE_LABEL:
|
Label@MUTE_LABEL:
|
||||||
X: 60
|
X: 60
|
||||||
@@ -40,17 +40,17 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Font: Small
|
Font: Small
|
||||||
Label@TITLE_LABEL:
|
Label@TITLE_LABEL:
|
||||||
Y: 45
|
Y: 45
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@TIME_LABEL:
|
Label@TIME_LABEL:
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@BUTTONS:
|
Container@BUTTONS:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: 131
|
Width: 131
|
||||||
Children:
|
Children:
|
||||||
@@ -127,7 +127,7 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-music-controls-shuffle
|
Text: checkbox-music-controls-shuffle
|
||||||
Checkbox@REPEAT:
|
Checkbox@REPEAT:
|
||||||
X: PARENT_RIGHT - 15 - WIDTH
|
X: PARENT_WIDTH - 15 - WIDTH
|
||||||
Y: 150
|
Y: 150
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: 20
|
Height: 20
|
||||||
@@ -142,16 +142,16 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
ExponentialSlider@MUSIC_SLIDER:
|
ExponentialSlider@MUSIC_SLIDER:
|
||||||
X: 70
|
X: 70
|
||||||
Y: 186
|
Y: 186
|
||||||
Width: PARENT_RIGHT - 80
|
Width: PARENT_WIDTH - 80
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
ScrollPanel@MUSIC_LIST:
|
ScrollPanel@MUSIC_LIST:
|
||||||
X: 307
|
X: 307
|
||||||
Width: PARENT_RIGHT - 307
|
Width: PARENT_WIDTH - 307
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@MUSIC_TEMPLATE:
|
ScrollItem@MUSIC_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -159,36 +159,36 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@LENGTH:
|
Label@LENGTH:
|
||||||
X: PARENT_RIGHT - 60
|
X: PARENT_WIDTH - 60
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Right
|
Align: Right
|
||||||
Container@NO_MUSIC_LABEL:
|
Container@NO_MUSIC_LABEL:
|
||||||
X: 307
|
X: 307
|
||||||
Width: PARENT_RIGHT - 307
|
Width: PARENT_WIDTH - 307
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 75
|
Y: 75
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-title
|
Text: label-no-music-title
|
||||||
Label@DESCA:
|
Label@DESCA:
|
||||||
Y: 95
|
Y: 95
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-a
|
Text: label-no-music-desc-a
|
||||||
Label@DESCB:
|
Label@DESCB:
|
||||||
Y: 115
|
Y: 115
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-b
|
Text: label-no-music-desc-b
|
||||||
|
|||||||
@@ -1,89 +1,89 @@
|
|||||||
Container@LOBBY_OPTIONS_BIN:
|
Container@LOBBY_OPTIONS_BIN:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-lobby-options-bin-title
|
Text: label-lobby-options-bin-title
|
||||||
ScrollPanel:
|
ScrollPanel:
|
||||||
Logic: LobbyOptionsLogic
|
Logic: LobbyOptionsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@LOBBY_OPTIONS:
|
Container@LOBBY_OPTIONS:
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_ROW_TEMPLATE:
|
Container@CHECKBOX_ROW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Checkbox@A:
|
Checkbox@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@B:
|
Checkbox@B:
|
||||||
X: PARENT_RIGHT / 3 + 10
|
X: PARENT_WIDTH / 3 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@C:
|
Checkbox@C:
|
||||||
X: (PARENT_RIGHT / 3) * 2 + 10
|
X: (PARENT_WIDTH / 3) * 2 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Container@DROPDOWN_ROW_TEMPLATE:
|
Container@DROPDOWN_ROW_TEMPLATE:
|
||||||
Height: 60
|
Height: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@A_DESC:
|
LabelForInput@A_DESC:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: A
|
For: A
|
||||||
DropDownButton@A:
|
DropDownButton@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@B_DESC:
|
LabelForInput@B_DESC:
|
||||||
X: PARENT_RIGHT / 3 + 10
|
X: PARENT_WIDTH / 3 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: B
|
For: B
|
||||||
DropDownButton@B:
|
DropDownButton@B:
|
||||||
X: PARENT_RIGHT / 3 + 10
|
X: PARENT_WIDTH / 3 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@C_DESC:
|
LabelForInput@C_DESC:
|
||||||
X: (PARENT_RIGHT / 3) * 2 + 10
|
X: (PARENT_WIDTH / 3) * 2 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: C
|
For: C
|
||||||
DropDownButton@C:
|
DropDownButton@C:
|
||||||
X: (PARENT_RIGHT / 3) * 2 + 10
|
X: (PARENT_WIDTH / 3) * 2 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@LOBBY_PLAYER_BIN:
|
Container@LOBBY_PLAYER_BIN:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL_LOBBY_NAME:
|
Label@LABEL_LOBBY_NAME:
|
||||||
Width: 200
|
Width: 200
|
||||||
@@ -57,8 +57,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@LOBBY_PLAYERS:
|
ScrollPanel@LOBBY_PLAYERS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
@@ -78,8 +78,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -123,8 +123,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
DropDownButton@FACTION:
|
DropDownButton@FACTION:
|
||||||
X: 309
|
X: 309
|
||||||
Width: 120
|
Width: 120
|
||||||
@@ -191,8 +191,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -337,8 +337,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -401,8 +401,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
Container@LOBBY_SERVERS_BIN:
|
Container@LOBBY_SERVERS_BIN:
|
||||||
Logic: ServerListLogic
|
Logic: ServerListLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@NAME:
|
Label@NAME:
|
||||||
X: 5
|
X: 5
|
||||||
@@ -34,42 +34,42 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
LogicTicker@NOTICE_WATCHER:
|
LogicTicker@NOTICE_WATCHER:
|
||||||
Container@NOTICE_CONTAINER:
|
Container@NOTICE_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 19
|
Height: 19
|
||||||
Children:
|
Children:
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@OUTDATED_VERSION_LABEL:
|
Label@OUTDATED_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 18
|
Height: 18
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-outdated-version
|
Text: label-bg-outdated-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@UNKNOWN_VERSION_LABEL:
|
Label@UNKNOWN_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 18
|
Height: 18
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-unknown-version
|
Text: label-bg-unknown-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@PLAYTEST_AVAILABLE_LABEL:
|
Label@PLAYTEST_AVAILABLE_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 18
|
Height: 18
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-playtest-available
|
Text: label-bg-playtest-available
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
ScrollPanel@SERVER_LIST:
|
ScrollPanel@SERVER_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER_TEMPLATE:
|
ScrollItem@HEADER_TEMPLATE:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 20
|
Height: 20
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -77,11 +77,11 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Y: 0 - 1
|
Y: 0 - 1
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@SERVER_TEMPLATE:
|
ScrollItem@SERVER_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
@@ -125,21 +125,21 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@PROGRESS_LABEL:
|
Label@PROGRESS_LABEL:
|
||||||
Y: (PARENT_BOTTOM - HEIGHT) / 2
|
Y: (PARENT_HEIGHT - HEIGHT) / 2
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Visible: false
|
Visible: false
|
||||||
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
||||||
Y: PARENT_BOTTOM + 5
|
Y: PARENT_HEIGHT + 5
|
||||||
Width: 180
|
Width: 180
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-lobby-servers-bin-filters
|
Text: dropdownbutton-lobby-servers-bin-filters
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@RELOAD_BUTTON:
|
Button@RELOAD_BUTTON:
|
||||||
X: 185
|
X: 185
|
||||||
Y: PARENT_BOTTOM + 5
|
Y: PARENT_HEIGHT + 5
|
||||||
Width: 26
|
Width: 26
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
@@ -154,24 +154,24 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Children:
|
Children:
|
||||||
LogicTicker@ANIMATION:
|
LogicTicker@ANIMATION:
|
||||||
Container@SELECTED_SERVER:
|
Container@SELECTED_SERVER:
|
||||||
X: PARENT_RIGHT + 14
|
X: PARENT_WIDTH + 14
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 280
|
Height: 280
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 174
|
Height: 174
|
||||||
Background: panel-gray
|
Background: panel-gray
|
||||||
Children:
|
Children:
|
||||||
MapPreview@SELECTED_MAP_PREVIEW:
|
MapPreview@SELECTED_MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@SELECTED_MAP:
|
LabelWithTooltip@SELECTED_MAP:
|
||||||
Y: 172
|
Y: 172
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -179,25 +179,25 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SELECTED_IP:
|
Label@SELECTED_IP:
|
||||||
Y: 187
|
Y: 187
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_STATUS:
|
Label@SELECTED_STATUS:
|
||||||
Y: 203
|
Y: 203
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_MOD_VERSION:
|
Label@SELECTED_MOD_VERSION:
|
||||||
Y: 216
|
Y: 216
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_PLAYERS:
|
Label@SELECTED_PLAYERS:
|
||||||
Y: 229
|
Y: 229
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -7,25 +7,25 @@ Container@SERVER_LOBBY:
|
|||||||
System: SYSTEM_LINE_TEMPLATE
|
System: SYSTEM_LINE_TEMPLATE
|
||||||
Mission: CHAT_LINE_TEMPLATE
|
Mission: CHAT_LINE_TEMPLATE
|
||||||
Feedback: TRANSIENT_LINE_TEMPLATE
|
Feedback: TRANSIENT_LINE_TEMPLATE
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 540
|
Height: 540
|
||||||
Children:
|
Children:
|
||||||
Label@SERVER_NAME:
|
Label@SERVER_NAME:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Align: Center
|
Align: Center
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@MAP_PREVIEW_ROOT:
|
Container@MAP_PREVIEW_ROOT:
|
||||||
X: PARENT_RIGHT - 15 - WIDTH
|
X: PARENT_WIDTH - 15 - WIDTH
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 250
|
Height: 250
|
||||||
@@ -92,7 +92,7 @@ Container@SERVER_LOBBY:
|
|||||||
Height: 31
|
Height: 31
|
||||||
Text: button-multiplayer-tabs-servers-tab
|
Text: button-multiplayer-tabs-servers-tab
|
||||||
Button@CHANGEMAP_BUTTON:
|
Button@CHANGEMAP_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 15
|
X: PARENT_WIDTH - WIDTH - 15
|
||||||
Y: 254
|
Y: 254
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -105,16 +105,16 @@ Container@SERVER_LOBBY:
|
|||||||
Container@LOBBYCHAT:
|
Container@LOBBYCHAT:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 285
|
Y: 285
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 300
|
Height: PARENT_HEIGHT - 300
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@CHAT_DISPLAY:
|
ScrollPanel@CHAT_DISPLAY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
TopBottomSpacing: 3
|
TopBottomSpacing: 3
|
||||||
ItemSpacing: 2
|
ItemSpacing: 2
|
||||||
Button@CHAT_MODE:
|
Button@CHAT_MODE:
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-lobbychat-chat-mode.label
|
Text: button-lobbychat-chat-mode.label
|
||||||
@@ -124,17 +124,17 @@ Container@SERVER_LOBBY:
|
|||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TextField@CHAT_TEXTFIELD:
|
TextField@CHAT_TEXTFIELD:
|
||||||
X: 55
|
X: 55
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: PARENT_RIGHT - 55
|
Width: PARENT_WIDTH - 55
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@DISCONNECT_BUTTON:
|
Button@DISCONNECT_BUTTON:
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-server-lobby-disconnect
|
Text: button-server-lobby-disconnect
|
||||||
Button@START_GAME_BUTTON:
|
Button@START_GAME_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-server-lobby-start-game
|
Text: button-server-lobby-start-game
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@MAINMENU_INTRODUCTION_PROMPT:
|
Container@MAINMENU_INTRODUCTION_PROMPT:
|
||||||
Logic: IntroductionPromptLogic
|
Logic: IntroductionPromptLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 700
|
Width: 700
|
||||||
Height: 445
|
Height: 445
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 37
|
Y: 0 - 37
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -14,19 +14,19 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mainmenu-introduction-prompt-title
|
Text: label-mainmenu-introduction-prompt-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 15
|
Y: 15
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-desc-a
|
Text: label-bg-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 33
|
Y: 33
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Regular
|
Font: Regular
|
||||||
@@ -35,8 +35,8 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 75
|
Height: PARENT_HEIGHT - 75
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
@@ -44,41 +44,41 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
Children:
|
Children:
|
||||||
Background@PROFILE_SECTION_HEADER:
|
Background@PROFILE_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-profile-section-header
|
Text: label-profile-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@PLAYER_CONTAINER:
|
Container@PLAYER_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@PLAYER:
|
Label@PLAYER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-player-container
|
Text: label-player-container
|
||||||
TextField@PLAYERNAME:
|
TextField@PLAYERNAME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
MaxLength: 16
|
MaxLength: 16
|
||||||
Text: Name
|
Text: Name
|
||||||
Container@PLAYERCOLOR_CONTAINER:
|
Container@PLAYERCOLOR_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@COLOR:
|
Label@COLOR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-playercolor-container-color
|
Text: label-playercolor-container-color
|
||||||
DropDownButton@PLAYERCOLOR:
|
DropDownButton@PLAYERCOLOR:
|
||||||
@@ -91,166 +91,166 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@INPUT_SECTION_HEADER:
|
Background@INPUT_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-input-section-header
|
Text: label-input-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MOUSE_CONTROL_CONTAINER:
|
Container@MOUSE_CONTROL_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MOUSE_CONTROL_LABEL:
|
Label@MOUSE_CONTROL_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-mouse-control-container
|
Text: label-mouse-control-container
|
||||||
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-selection
|
Text: label-mouse-control-desc-classic-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-commands
|
Text: label-mouse-control-desc-classic-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-buildings
|
Text: label-mouse-control-desc-classic-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-support
|
Text: label-mouse-control-desc-classic-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom
|
Text: label-mouse-control-desc-classic-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom-modifier
|
Text: label-mouse-control-desc-classic-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-right
|
Text: label-mouse-control-desc-classic-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-middle
|
Text: label-mouse-control-desc-classic-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-edgescroll
|
Text: label-mouse-control-desc-classic-edgescroll
|
||||||
Container@MOUSE_CONTROL_DESC_MODERN:
|
Container@MOUSE_CONTROL_DESC_MODERN:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-selection
|
Text: label-mouse-control-desc-modern-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-commands
|
Text: label-mouse-control-desc-modern-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-buildings
|
Text: label-mouse-control-desc-modern-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-support
|
Text: label-mouse-control-desc-modern-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom
|
Text: label-mouse-control-desc-modern-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom-modifier
|
Text: label-mouse-control-desc-modern-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-right
|
Text: label-mouse-control-desc-modern-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-middle
|
Text: label-mouse-control-desc-modern-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-edgescroll
|
Text: label-mouse-control-desc-modern-edgescroll
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@EDGESCROLL_CHECKBOX:
|
Checkbox@EDGESCROLL_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-edgescroll-container
|
Text: checkbox-edgescroll-container
|
||||||
@@ -258,63 +258,63 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Background@DISPLAY_SECTION_HEADER:
|
Background@DISPLAY_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-display-section-header
|
Text: label-display-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@BATTLEFIELD_CAMERA:
|
Label@BATTLEFIELD_CAMERA:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-battlefield-camera-dropdown
|
Text: label-battlefield-camera-dropdown
|
||||||
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@UI_SCALE:
|
Label@UI_SCALE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-ui-scale-dropdown
|
Text: label-ui-scale-dropdown
|
||||||
DropDownButton@UI_SCALE_DROPDOWN:
|
DropDownButton@UI_SCALE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CURSORDOUBLE_CHECKBOX:
|
Checkbox@CURSORDOUBLE_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-cursordouble-container
|
Text: checkbox-cursordouble-container
|
||||||
Button@CONTINUE_BUTTON:
|
Button@CONTINUE_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-continue
|
Text: button-continue
|
||||||
@@ -323,13 +323,13 @@ Container@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
|
|
||||||
Container@MAINMENU_SYSTEM_INFO_PROMPT:
|
Container@MAINMENU_SYSTEM_INFO_PROMPT:
|
||||||
Logic: SystemInfoPromptLogic
|
Logic: SystemInfoPromptLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 600
|
Width: 600
|
||||||
Height: 350
|
Height: 350
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 37
|
Y: 0 - 37
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -337,28 +337,28 @@ Container@MAINMENU_SYSTEM_INFO_PROMPT:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mainmenu-system-info-prompt-title
|
Text: label-mainmenu-system-info-prompt-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TEXT_A:
|
Label@PROMPT_TEXT_A:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 16
|
Height: 16
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-prompt-text-a
|
Text: label-bg-prompt-text-a
|
||||||
Label@PROMPT_TEXT_B:
|
Label@PROMPT_TEXT_B:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 33
|
Y: 33
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 16
|
Height: 16
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-prompt-text-b
|
Text: label-bg-prompt-text-b
|
||||||
ScrollPanel@SYSINFO_DATA:
|
ScrollPanel@SYSINFO_DATA:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 63
|
Y: 63
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Height: 240
|
Height: 240
|
||||||
@@ -376,8 +376,8 @@ Container@MAINMENU_SYSTEM_INFO_PROMPT:
|
|||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-bg-sysinfo
|
Text: checkbox-bg-sysinfo
|
||||||
Button@CONTINUE_BUTTON:
|
Button@CONTINUE_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-continue
|
Text: button-continue
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@MENU_BACKGROUND:
|
Container@MENU_BACKGROUND:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Logic: MainMenuLogic
|
Logic: MainMenuLogic
|
||||||
Children:
|
Children:
|
||||||
LogicKeyListener@GLOBAL_KEYHANDLER:
|
LogicKeyListener@GLOBAL_KEYHANDLER:
|
||||||
@@ -14,17 +14,17 @@ Container@MENU_BACKGROUND:
|
|||||||
Container@SHELLMAP_DECORATIONS:
|
Container@SHELLMAP_DECORATIONS:
|
||||||
Children:
|
Children:
|
||||||
Image@NOD:
|
Image@NOD:
|
||||||
X: WINDOW_RIGHT / 2 - 384
|
X: WINDOW_WIDTH / 2 - 384
|
||||||
Y: (WINDOW_BOTTOM - 256) / 2
|
Y: (WINDOW_HEIGHT - 256) / 2
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: nod-load
|
ImageName: nod-load
|
||||||
Image@GDI:
|
Image@GDI:
|
||||||
X: WINDOW_RIGHT / 2 + 128
|
X: WINDOW_WIDTH / 2 + 128
|
||||||
Y: (WINDOW_BOTTOM - 256) / 2
|
Y: (WINDOW_HEIGHT - 256) / 2
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: gdi-load
|
ImageName: gdi-load
|
||||||
Image@EVA:
|
Image@EVA:
|
||||||
X: WINDOW_RIGHT - 128 - 43
|
X: WINDOW_WIDTH - 128 - 43
|
||||||
Y: 43
|
Y: 43
|
||||||
Width: 128
|
Width: 128
|
||||||
Height: 64
|
Height: 64
|
||||||
@@ -32,28 +32,28 @@ Container@MENU_BACKGROUND:
|
|||||||
ImageName: eva
|
ImageName: eva
|
||||||
Label@VERSION_LABEL:
|
Label@VERSION_LABEL:
|
||||||
Logic: VersionLabelLogic
|
Logic: VersionLabelLogic
|
||||||
X: WINDOW_RIGHT - 128 - 43
|
X: WINDOW_WIDTH - 128 - 43
|
||||||
Y: 116
|
Y: 116
|
||||||
Width: 128
|
Width: 128
|
||||||
Align: Center
|
Align: Center
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Background@BORDER:
|
Background@BORDER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Background: shellmapborder
|
Background: shellmapborder
|
||||||
Container@MENUS:
|
Container@MENUS:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: WINDOW_BOTTOM - 33 - HEIGHT - 10
|
Y: WINDOW_HEIGHT - 33 - HEIGHT - 10
|
||||||
Width: 890
|
Width: 890
|
||||||
Height: 35
|
Height: 35
|
||||||
Children:
|
Children:
|
||||||
Container@MAIN_MENU:
|
Container@MAIN_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@MAINMENU_LABEL_TITLE:
|
Label@MAINMENU_LABEL_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0 - 28
|
Y: 0 - 28
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-main-menu-mainmenu-title
|
Text: label-main-menu-mainmenu-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -96,13 +96,13 @@ Container@MENU_BACKGROUND:
|
|||||||
Height: 35
|
Height: 35
|
||||||
Text: button-quit
|
Text: button-quit
|
||||||
Container@SINGLEPLAYER_MENU:
|
Container@SINGLEPLAYER_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
Label@SINGLEPLAYER_MENU_TITLE:
|
Label@SINGLEPLAYER_MENU_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0 - 28
|
Y: 0 - 28
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-singleplayer-title
|
Text: label-singleplayer-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -140,13 +140,13 @@ Container@MENU_BACKGROUND:
|
|||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Container@EXTRAS_MENU:
|
Container@EXTRAS_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
Label@EXTRAS_MENU_TITLE:
|
Label@EXTRAS_MENU_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0 - 28
|
Y: 0 - 28
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: button-extras-title
|
Text: button-extras-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -191,13 +191,13 @@ Container@MENU_BACKGROUND:
|
|||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Container@MAP_EDITOR_MENU:
|
Container@MAP_EDITOR_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_EDITOR_MENU_TITLE:
|
Label@MAP_EDITOR_MENU_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0 - 28
|
Y: 0 - 28
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-map-editor-title
|
Text: label-map-editor-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -228,26 +228,26 @@ Container@MENU_BACKGROUND:
|
|||||||
Container@NEWS_BG:
|
Container@NEWS_BG:
|
||||||
Children:
|
Children:
|
||||||
DropDownButton@NEWS_BUTTON:
|
DropDownButton@NEWS_BUTTON:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: 400
|
Width: 400
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-news-bg-button
|
Text: dropdownbutton-news-bg-button
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@UPDATE_NOTICE:
|
Container@UPDATE_NOTICE:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: 75
|
Y: 75
|
||||||
Width: 128
|
Width: 128
|
||||||
Children:
|
Children:
|
||||||
Label@A:
|
Label@A:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Text: label-update-notice-a
|
Text: label-update-notice-a
|
||||||
Label@B:
|
Label@B:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Shadow: true
|
Shadow: true
|
||||||
@@ -256,13 +256,13 @@ Container@MENU_BACKGROUND:
|
|||||||
Logic: PerfDebugLogic
|
Logic: PerfDebugLogic
|
||||||
Children:
|
Children:
|
||||||
Label@PERF_TEXT:
|
Label@PERF_TEXT:
|
||||||
X: WINDOW_RIGHT - WIDTH - 25
|
X: WINDOW_WIDTH - WIDTH - 25
|
||||||
Y: WINDOW_BOTTOM - HEIGHT - 100
|
Y: WINDOW_HEIGHT - HEIGHT - 100
|
||||||
Width: 170
|
Width: 170
|
||||||
Contrast: true
|
Contrast: true
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
Background@GRAPH_BG:
|
Background@GRAPH_BG:
|
||||||
X: WINDOW_RIGHT - WIDTH - 31
|
X: WINDOW_WIDTH - WIDTH - 31
|
||||||
Y: 31
|
Y: 31
|
||||||
Width: 220
|
Width: 220
|
||||||
Height: 220
|
Height: 220
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@MAPCHOOSER_PANEL:
|
Container@MAPCHOOSER_PANEL:
|
||||||
Logic: MapChooserLogic
|
Logic: MapChooserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 540
|
Height: 540
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -14,8 +14,8 @@ Container@MAPCHOOSER_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mapchooser-panel-title
|
Text: label-mapchooser-panel-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Button@SYSTEM_MAPS_TAB_BUTTON:
|
Button@SYSTEM_MAPS_TAB_BUTTON:
|
||||||
@@ -37,34 +37,34 @@ Container@MAPCHOOSER_PANEL:
|
|||||||
Width: 135
|
Width: 135
|
||||||
Text: button-bg-user-maps-tab
|
Text: button-bg-user-maps-tab
|
||||||
Container@MAP_TAB_PANES:
|
Container@MAP_TAB_PANES:
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 90
|
Height: PARENT_HEIGHT - 90
|
||||||
X: 15
|
X: 15
|
||||||
Y: 45
|
Y: 45
|
||||||
Children:
|
Children:
|
||||||
Container@SYSTEM_MAPS_TAB:
|
Container@SYSTEM_MAPS_TAB:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MAP_LIST:
|
ScrollPanel@MAP_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
ItemSpacing: 1
|
ItemSpacing: 1
|
||||||
Container@REMOTE_MAPS_TAB:
|
Container@REMOTE_MAPS_TAB:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MAP_LIST:
|
ScrollPanel@MAP_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
ItemSpacing: 1
|
ItemSpacing: 1
|
||||||
Container@USER_MAPS_TAB:
|
Container@USER_MAPS_TAB:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MAP_LIST:
|
ScrollPanel@MAP_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
ItemSpacing: 1
|
ItemSpacing: 1
|
||||||
ScrollItem@MAP_TEMPLATE:
|
ScrollItem@MAP_TEMPLATE:
|
||||||
Width: 210
|
Width: 210
|
||||||
@@ -74,7 +74,7 @@ Container@MAPCHOOSER_PANEL:
|
|||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
Children:
|
Children:
|
||||||
MapPreview@PREVIEW:
|
MapPreview@PREVIEW:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: 204
|
Width: 204
|
||||||
Height: 204
|
Height: 204
|
||||||
@@ -82,40 +82,40 @@ Container@MAPCHOOSER_PANEL:
|
|||||||
IgnoreMouseInput: true
|
IgnoreMouseInput: true
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 33
|
Y: PARENT_HEIGHT - HEIGHT - 33
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@DETAILS:
|
Label@DETAILS:
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 12
|
Height: 12
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 26
|
Y: PARENT_HEIGHT - HEIGHT - 26
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
LabelWithTooltip@AUTHOR:
|
LabelWithTooltip@AUTHOR:
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 12
|
Height: 12
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 14
|
Y: PARENT_HEIGHT - HEIGHT - 14
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SIZE:
|
Label@SIZE:
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 12
|
Height: 12
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 2
|
Y: PARENT_HEIGHT - HEIGHT - 2
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Container@FILTER_ORDER_CONTROLS:
|
Container@FILTER_ORDER_CONTROLS:
|
||||||
X: 15
|
X: 15
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@FILTER_DESC:
|
Label@FILTER_DESC:
|
||||||
Width: 40
|
Width: 40
|
||||||
@@ -139,52 +139,52 @@ Container@MAPCHOOSER_PANEL:
|
|||||||
Width: 200
|
Width: 200
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@ORDERBY_LABEL:
|
Label@ORDERBY_LABEL:
|
||||||
X: PARENT_RIGHT - WIDTH - 200 - 5
|
X: PARENT_WIDTH - WIDTH - 200 - 5
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 24
|
Height: 24
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Right
|
Align: Right
|
||||||
Text: label-filter-order-controls-orderby
|
Text: label-filter-order-controls-orderby
|
||||||
DropDownButton@ORDERBY:
|
DropDownButton@ORDERBY:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@REMOTE_MAP_LABEL:
|
Label@REMOTE_MAP_LABEL:
|
||||||
X: 140
|
X: 140
|
||||||
Y: 539
|
Y: 539
|
||||||
Width: PARENT_RIGHT - 430
|
Width: PARENT_WIDTH - 430
|
||||||
Height: 35
|
Height: 35
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BUTTON_CANCEL:
|
Button@BUTTON_CANCEL:
|
||||||
Key: escape
|
Key: escape
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Button@RANDOMMAP_BUTTON:
|
Button@RANDOMMAP_BUTTON:
|
||||||
Key: space
|
Key: space
|
||||||
X: PARENT_RIGHT - 150 - WIDTH
|
X: PARENT_WIDTH - 150 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-randommap
|
Text: button-bg-randommap
|
||||||
Button@DELETE_MAP_BUTTON:
|
Button@DELETE_MAP_BUTTON:
|
||||||
X: PARENT_RIGHT - 300 - WIDTH
|
X: PARENT_WIDTH - 300 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-delete-map
|
Text: button-bg-delete-map
|
||||||
Button@DELETE_ALL_MAPS_BUTTON:
|
Button@DELETE_ALL_MAPS_BUTTON:
|
||||||
X: PARENT_RIGHT - 450 - WIDTH
|
X: PARENT_WIDTH - 450 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-delete-all-maps
|
Text: button-bg-delete-all-maps
|
||||||
Button@BUTTON_OK:
|
Button@BUTTON_OK:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-bg-ok
|
Text: button-bg-ok
|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
Container@MISSIONBROWSER_PANEL:
|
Container@MISSIONBROWSER_PANEL:
|
||||||
Logic: MissionBrowserLogic
|
Logic: MissionBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 716
|
Width: 716
|
||||||
Height: 435
|
Height: 435
|
||||||
Children:
|
Children:
|
||||||
Label@MISSIONBROWSER_TITLE:
|
Label@MISSIONBROWSER_TITLE:
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-missions-title
|
Text: label-missions-title
|
||||||
Align: Center
|
Align: Center
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
Background@BG:
|
Background@BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MISSION_LIST:
|
ScrollPanel@MISSION_LIST:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 313
|
Width: 313
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: False
|
Visible: False
|
||||||
@@ -45,7 +45,7 @@ Container@MISSIONBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
@@ -53,24 +53,24 @@ Container@MISSIONBROWSER_PANEL:
|
|||||||
X: 339
|
X: 339
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 362
|
Width: 362
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Children:
|
Children:
|
||||||
Background@MISSION_BG:
|
Background@MISSION_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 202
|
Height: 202
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
MapPreview@MISSION_PREVIEW:
|
MapPreview@MISSION_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
IgnoreMouseOver: True
|
IgnoreMouseOver: True
|
||||||
IgnoreMouseInput: True
|
IgnoreMouseInput: True
|
||||||
ShowSpawnPoints: False
|
ShowSpawnPoints: False
|
||||||
Container@MISSION_TABS:
|
Container@MISSION_TABS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: PARENT_BOTTOM - 31
|
Y: PARENT_HEIGHT - 31
|
||||||
Children:
|
Children:
|
||||||
Button@MISSIONINFO_TAB:
|
Button@MISSIONINFO_TAB:
|
||||||
Width: 178
|
Width: 178
|
||||||
@@ -85,110 +85,110 @@ Container@MISSIONBROWSER_PANEL:
|
|||||||
Text: button-missionbrowser-panel-mission-options
|
Text: button-missionbrowser-panel-mission-options
|
||||||
Container@MISSION_DETAIL:
|
Container@MISSION_DETAIL:
|
||||||
Y: 213
|
Y: 213
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 213 - 30
|
Height: PARENT_HEIGHT - 213 - 30
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MISSION_DESCRIPTION_PANEL:
|
ScrollPanel@MISSION_DESCRIPTION_PANEL:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Label@MISSION_DESCRIPTION:
|
Label@MISSION_DESCRIPTION:
|
||||||
X: 4
|
X: 4
|
||||||
Width: PARENT_RIGHT - 32
|
Width: PARENT_WIDTH - 32
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
Font: Small
|
Font: Small
|
||||||
ScrollPanel@MISSION_OPTIONS:
|
ScrollPanel@MISSION_OPTIONS:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_ROW_TEMPLATE:
|
Container@CHECKBOX_ROW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Checkbox@A:
|
Checkbox@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 25
|
Width: PARENT_WIDTH / 2 - 25
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@B:
|
Checkbox@B:
|
||||||
X: PARENT_RIGHT / 2 + 5
|
X: PARENT_WIDTH / 2 + 5
|
||||||
Width: PARENT_RIGHT / 2 - 25
|
Width: PARENT_WIDTH / 2 - 25
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Container@DROPDOWN_ROW_TEMPLATE:
|
Container@DROPDOWN_ROW_TEMPLATE:
|
||||||
Height: 60
|
Height: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@A_DESC:
|
LabelForInput@A_DESC:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: A
|
For: A
|
||||||
DropDownButton@A:
|
DropDownButton@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
PanelRoot: MISSION_DROPDOWN_PANEL_ROOT
|
PanelRoot: MISSION_DROPDOWN_PANEL_ROOT
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@B_DESC:
|
LabelForInput@B_DESC:
|
||||||
X: PARENT_RIGHT / 2 + 5
|
X: PARENT_WIDTH / 2 + 5
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: B
|
For: B
|
||||||
DropDownButton@B:
|
DropDownButton@B:
|
||||||
X: PARENT_RIGHT / 2 + 5
|
X: PARENT_WIDTH / 2 + 5
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
PanelRoot: MISSION_DROPDOWN_PANEL_ROOT
|
PanelRoot: MISSION_DROPDOWN_PANEL_ROOT
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: escape
|
Key: escape
|
||||||
Button@START_BRIEFING_VIDEO_BUTTON:
|
Button@START_BRIEFING_VIDEO_BUTTON:
|
||||||
X: PARENT_RIGHT - 290
|
X: PARENT_WIDTH - 290
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-missionbrowser-panel-start-briefing-video
|
Text: button-missionbrowser-panel-start-briefing-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@STOP_BRIEFING_VIDEO_BUTTON:
|
Button@STOP_BRIEFING_VIDEO_BUTTON:
|
||||||
X: PARENT_RIGHT - 290
|
X: PARENT_WIDTH - 290
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-missionbrowser-panel-stop-briefing-video
|
Text: button-missionbrowser-panel-stop-briefing-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@START_INFO_VIDEO_BUTTON:
|
Button@START_INFO_VIDEO_BUTTON:
|
||||||
X: PARENT_RIGHT - 440
|
X: PARENT_WIDTH - 440
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-missionbrowser-panel-start-info-video
|
Text: button-missionbrowser-panel-start-info-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@STOP_INFO_VIDEO_BUTTON:
|
Button@STOP_INFO_VIDEO_BUTTON:
|
||||||
X: PARENT_RIGHT - 440
|
X: PARENT_WIDTH - 440
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-missionbrowser-panel-stop-info-video
|
Text: button-missionbrowser-panel-stop-info-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@STARTGAME_BUTTON:
|
Button@STARTGAME_BUTTON:
|
||||||
X: PARENT_RIGHT - 140
|
X: PARENT_WIDTH - 140
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-missionbrowser-panel-play
|
Text: button-missionbrowser-panel-play
|
||||||
@@ -209,13 +209,13 @@ Container@MISSIONBROWSER_PANEL:
|
|||||||
TooltipContainer@TOOLTIP_CONTAINER:
|
TooltipContainer@TOOLTIP_CONTAINER:
|
||||||
|
|
||||||
Background@FULLSCREEN_PLAYER:
|
Background@FULLSCREEN_PLAYER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Background: panel-allblack
|
Background: panel-allblack
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
VideoPlayer@PLAYER:
|
VideoPlayer@PLAYER:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
|
|||||||
@@ -1,28 +1,28 @@
|
|||||||
Container@MULTIPLAYER_PANEL:
|
Container@MULTIPLAYER_PANEL:
|
||||||
Logic: MultiplayerLogic
|
Logic: MultiplayerLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 540
|
Height: 540
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Text: label-multiplayer-title
|
Text: label-multiplayer-title
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Align: Center
|
Align: Center
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@NAME:
|
Label@NAME:
|
||||||
X: 5
|
X: 5
|
||||||
@@ -57,27 +57,27 @@ Container@MULTIPLAYER_PANEL:
|
|||||||
Height: 19
|
Height: 19
|
||||||
Children:
|
Children:
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@OUTDATED_VERSION_LABEL:
|
Label@OUTDATED_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-outdated-version
|
Text: label-bg-outdated-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@UNKNOWN_VERSION_LABEL:
|
Label@UNKNOWN_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-unknown-version
|
Text: label-bg-unknown-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@PLAYTEST_AVAILABLE_LABEL:
|
Label@PLAYTEST_AVAILABLE_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-bg-playtest-available
|
Text: label-bg-playtest-available
|
||||||
@@ -86,23 +86,23 @@ Container@MULTIPLAYER_PANEL:
|
|||||||
X: 15
|
X: 15
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 682
|
Width: 682
|
||||||
Height: PARENT_BOTTOM - 75
|
Height: PARENT_HEIGHT - 75
|
||||||
TopBottomSpacing: 2
|
TopBottomSpacing: 2
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER_TEMPLATE:
|
ScrollItem@HEADER_TEMPLATE:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 20
|
Height: 20
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@SERVER_TEMPLATE:
|
ScrollItem@SERVER_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
@@ -147,32 +147,32 @@ Container@MULTIPLAYER_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Label@PROGRESS_LABEL:
|
Label@PROGRESS_LABEL:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 31 + (PARENT_BOTTOM - 75 - HEIGHT) / 2
|
Y: 31 + (PARENT_HEIGHT - 75 - HEIGHT) / 2
|
||||||
Width: 682
|
Width: 682
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Visible: false
|
Visible: false
|
||||||
Container@SELECTED_SERVER:
|
Container@SELECTED_SERVER:
|
||||||
X: PARENT_RIGHT - WIDTH - 15
|
X: PARENT_WIDTH - WIDTH - 15
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 280
|
Height: 280
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 174
|
Height: 174
|
||||||
Background: panel-gray
|
Background: panel-gray
|
||||||
Children:
|
Children:
|
||||||
MapPreview@SELECTED_MAP_PREVIEW:
|
MapPreview@SELECTED_MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@SELECTED_MAP:
|
LabelWithTooltip@SELECTED_MAP:
|
||||||
Y: 173
|
Y: 173
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -180,47 +180,47 @@ Container@MULTIPLAYER_PANEL:
|
|||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SELECTED_IP:
|
Label@SELECTED_IP:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_STATUS:
|
Label@SELECTED_STATUS:
|
||||||
Y: 204
|
Y: 204
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_MOD_VERSION:
|
Label@SELECTED_MOD_VERSION:
|
||||||
Y: 217
|
Y: 217
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_PLAYERS:
|
Label@SELECTED_PLAYERS:
|
||||||
Y: 230
|
Y: 230
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@CLIENT_LIST_CONTAINER:
|
Container@CLIENT_LIST_CONTAINER:
|
||||||
Y: 240
|
Y: 240
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 230
|
Height: 230
|
||||||
Button@JOIN_BUTTON:
|
Button@JOIN_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
Y: 255
|
Y: 255
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-selected-server-join
|
Text: button-selected-server-join
|
||||||
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
||||||
X: 15
|
X: 15
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: 152
|
Width: 152
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-bg-filters
|
Text: dropdownbutton-bg-filters
|
||||||
Button@RELOAD_BUTTON:
|
Button@RELOAD_BUTTON:
|
||||||
X: 172
|
X: 172
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: 26
|
Width: 26
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
@@ -236,27 +236,27 @@ Container@MULTIPLAYER_PANEL:
|
|||||||
LogicTicker@ANIMATION:
|
LogicTicker@ANIMATION:
|
||||||
Label@PLAYER_COUNT:
|
Label@PLAYER_COUNT:
|
||||||
X: 248
|
X: 248
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: 189
|
Width: 189
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DIRECTCONNECT_BUTTON:
|
Button@DIRECTCONNECT_BUTTON:
|
||||||
X: 487
|
X: 487
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-bg-directconnect
|
Text: button-bg-directconnect
|
||||||
Button@CREATE_BUTTON:
|
Button@CREATE_BUTTON:
|
||||||
X: 592
|
X: 592
|
||||||
Y: PARENT_BOTTOM - 40
|
Y: PARENT_HEIGHT - 40
|
||||||
Width: 105
|
Width: 105
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-bg-create
|
Text: button-bg-create
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: 0
|
X: 0
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 225
|
Height: 225
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -13,11 +13,11 @@ ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -31,24 +31,24 @@ ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
|||||||
Visible: False
|
Visible: False
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 40
|
X: 40
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
Label@NOFLAG_LABEL:
|
Label@NOFLAG_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
|
|
||||||
ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 130
|
Height: 130
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Checkbox@WAITING_FOR_PLAYERS:
|
Checkbox@WAITING_FOR_PLAYERS:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-waiting-for-players
|
Text: checkbox-multiplayer-filter-panel-waiting-for-players
|
||||||
TextColor: 32CD32
|
TextColor: 32CD32
|
||||||
@@ -56,14 +56,14 @@ ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
|||||||
Checkbox@EMPTY:
|
Checkbox@EMPTY:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-empty
|
Text: checkbox-multiplayer-filter-panel-empty
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Checkbox@PASSWORD_PROTECTED:
|
Checkbox@PASSWORD_PROTECTED:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 55
|
Y: 55
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-password-protected
|
Text: checkbox-multiplayer-filter-panel-password-protected
|
||||||
TextColor: FF0000
|
TextColor: FF0000
|
||||||
@@ -71,7 +71,7 @@ ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
|||||||
Checkbox@ALREADY_STARTED:
|
Checkbox@ALREADY_STARTED:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 80
|
Y: 80
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-already-started
|
Text: checkbox-multiplayer-filter-panel-already-started
|
||||||
TextColor: FFA500
|
TextColor: FFA500
|
||||||
@@ -79,7 +79,7 @@ ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
|||||||
Checkbox@INCOMPATIBLE_VERSION:
|
Checkbox@INCOMPATIBLE_VERSION:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 105
|
Y: 105
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-incompatible-version
|
Text: checkbox-multiplayer-filter-panel-incompatible-version
|
||||||
TextColor: BEBEBE
|
TextColor: BEBEBE
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@MULTIPLAYER_CREATESERVER_PANEL:
|
Container@MULTIPLAYER_CREATESERVER_PANEL:
|
||||||
Logic: ServerCreationLogic
|
Logic: ServerCreationLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT - 15) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT - 15) / 2
|
||||||
Width: 530
|
Width: 530
|
||||||
Height: 275
|
Height: 275
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -14,8 +14,8 @@ Container@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-multiplayer-createserver-panel-title
|
Text: label-multiplayer-createserver-panel-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@SERVER_NAME_LABEL:
|
Label@SERVER_NAME_LABEL:
|
||||||
@@ -92,8 +92,8 @@ Container@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Container@NOTICES_LAN:
|
Container@NOTICES_LAN:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 145
|
Y: 145
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@ADVERTISING:
|
Label@ADVERTISING:
|
||||||
Width: 305
|
Width: 305
|
||||||
@@ -126,8 +126,8 @@ Container@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Container@NOTICES_NO_UPNP:
|
Container@NOTICES_NO_UPNP:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 145
|
Y: 145
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@ADVERTISING:
|
Label@ADVERTISING:
|
||||||
Width: 305
|
Width: 305
|
||||||
@@ -175,8 +175,8 @@ Container@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Container@NOTICES_UPNP:
|
Container@NOTICES_UPNP:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 145
|
Y: 145
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@ADVERTISING:
|
Label@ADVERTISING:
|
||||||
Width: 305
|
Width: 305
|
||||||
@@ -206,26 +206,26 @@ Container@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Text: label-notices-upnp-settings-a
|
Text: label-notices-upnp-settings-a
|
||||||
Container@MAP_PREVIEW_ROOT:
|
Container@MAP_PREVIEW_ROOT:
|
||||||
X: PARENT_RIGHT - 189
|
X: PARENT_WIDTH - 189
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 250
|
Height: 250
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Button@MAP_BUTTON:
|
Button@MAP_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 150
|
X: PARENT_WIDTH - WIDTH - 150
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-multiplayer-createserver-panel-change-map
|
Text: button-multiplayer-createserver-panel-change-map
|
||||||
Button@CREATE_BUTTON:
|
Button@CREATE_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-multiplayer-createserver-panel-create
|
Text: button-multiplayer-createserver-panel-create
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@DIRECTCONNECT_PANEL:
|
Container@DIRECTCONNECT_PANEL:
|
||||||
Logic: DirectConnectLogic
|
Logic: DirectConnectLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 125
|
Height: 125
|
||||||
Children:
|
Children:
|
||||||
Label@DIRECTCONNECT_LABEL_TITLE:
|
Label@DIRECTCONNECT_LABEL_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Container@MUSIC_PANEL:
|
Container@MUSIC_PANEL:
|
||||||
Logic: MusicPlayerLogic
|
Logic: MusicPlayerLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 410
|
Width: 410
|
||||||
Height: 435
|
Height: 435
|
||||||
Children:
|
Children:
|
||||||
LogicTicker@SONG_WATCHER:
|
LogicTicker@SONG_WATCHER:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -15,18 +15,18 @@ Container@MUSIC_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-music-title-panel-title
|
Text: label-music-title-panel-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MUSIC_LIST:
|
ScrollPanel@MUSIC_LIST:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 125
|
Height: PARENT_HEIGHT - 125
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@MUSIC_TEMPLATE:
|
ScrollItem@MUSIC_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -35,19 +35,19 @@ Container@MUSIC_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@LENGTH:
|
Label@LENGTH:
|
||||||
Width: 50
|
Width: 50
|
||||||
X: PARENT_RIGHT - 60
|
X: PARENT_WIDTH - 60
|
||||||
Align: Right
|
Align: Right
|
||||||
Height: 25
|
Height: 25
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
X: 25
|
X: 25
|
||||||
Y: 4
|
Y: 4
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: 100
|
Width: 100
|
||||||
@@ -56,7 +56,7 @@ Container@MUSIC_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@TYPE:
|
Label@TYPE:
|
||||||
X: PARENT_RIGHT - 85
|
X: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 50
|
Width: 50
|
||||||
Text: label-music-controls-length
|
Text: label-music-controls-length
|
||||||
@@ -64,8 +64,8 @@ Container@MUSIC_PANEL:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Container@BUTTONS:
|
Container@BUTTONS:
|
||||||
X: 15
|
X: 15
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 40
|
Y: PARENT_HEIGHT - HEIGHT - 40
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Children:
|
Children:
|
||||||
Button@BUTTON_PREV:
|
Button@BUTTON_PREV:
|
||||||
Width: 26
|
Width: 26
|
||||||
@@ -133,66 +133,66 @@ Container@MUSIC_PANEL:
|
|||||||
ImageCollection: music
|
ImageCollection: music
|
||||||
ImageName: next
|
ImageName: next
|
||||||
ExponentialSlider@MUSIC_SLIDER:
|
ExponentialSlider@MUSIC_SLIDER:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: PARENT_RIGHT - 145
|
Width: PARENT_WIDTH - 145
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Label@TIME_LABEL:
|
Label@TIME_LABEL:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 60 - 3
|
Y: PARENT_HEIGHT - HEIGHT - 60 - 3
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Checkbox@SHUFFLE:
|
Checkbox@SHUFFLE:
|
||||||
X: 15
|
X: 15
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 60
|
Y: PARENT_HEIGHT - HEIGHT - 60
|
||||||
Width: 85
|
Width: 85
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-music-controls-shuffle
|
Text: checkbox-music-controls-shuffle
|
||||||
Checkbox@REPEAT:
|
Checkbox@REPEAT:
|
||||||
X: PARENT_RIGHT - 15 - WIDTH
|
X: PARENT_WIDTH - 15 - WIDTH
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 60
|
Y: PARENT_HEIGHT - HEIGHT - 60
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-music-controls-loop
|
Text: checkbox-music-controls-loop
|
||||||
Container@NO_MUSIC_LABEL:
|
Container@NO_MUSIC_LABEL:
|
||||||
X: 15
|
X: 15
|
||||||
Y: (PARENT_BOTTOM - HEIGHT - 60) / 2
|
Y: (PARENT_HEIGHT - HEIGHT - 60) / 2
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 75
|
Height: 75
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-title
|
Text: label-no-music-title
|
||||||
Label@DESCA:
|
Label@DESCA:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-a
|
Text: label-no-music-desc-a
|
||||||
Label@DESCB:
|
Label@DESCB:
|
||||||
Y: 40
|
Y: 40
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-b
|
Text: label-no-music-desc-b
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: 0
|
X: 0
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Label@MUTE_LABEL:
|
Label@MUTE_LABEL:
|
||||||
X: 100
|
X: 100
|
||||||
Y: PARENT_BOTTOM - 60 - 3
|
Y: PARENT_HEIGHT - 60 - 3
|
||||||
Width: 300
|
Width: 300
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Small
|
Font: Small
|
||||||
|
|||||||
@@ -4,114 +4,114 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
Height: 100
|
Height: 100
|
||||||
Children:
|
Children:
|
||||||
Background@PROFILE_HEADER:
|
Background@PROFILE_HEADER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@PROFILE_NAME:
|
Label@PROFILE_NAME:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
Label@PROFILE_RANK:
|
Label@PROFILE_RANK:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 24
|
Y: 24
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Button@DESTROY_KEY:
|
Button@DESTROY_KEY:
|
||||||
X: PARENT_RIGHT - 70
|
X: PARENT_WIDTH - 70
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 60
|
Width: 60
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-profile-header-logout
|
Text: button-profile-header-logout
|
||||||
Background@BADGES_CONTAINER:
|
Background@BADGES_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 48
|
Y: 48
|
||||||
Visible: false
|
Visible: false
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Background@GENERATE_KEYS:
|
Background@GENERATE_KEYS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generate-keys-desc-a
|
Text: label-generate-keys-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 22
|
Y: 22
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generate-keys-desc-b
|
Text: label-generate-keys-desc-b
|
||||||
Label@DESC_C:
|
Label@DESC_C:
|
||||||
Y: 38
|
Y: 38
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generate-keys-desc-c
|
Text: label-generate-keys-desc-c
|
||||||
Button@GENERATE_KEY:
|
Button@GENERATE_KEY:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: 240
|
Width: 240
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-generate-keys-key
|
Text: button-generate-keys-key
|
||||||
Background@GENERATING_KEYS:
|
Background@GENERATING_KEYS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 14
|
Y: 14
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generating-keys-desc-a
|
Text: label-generating-keys-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generating-keys-desc-b
|
Text: label-generating-keys-desc-b
|
||||||
ProgressBar:
|
ProgressBar:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: 240
|
Width: 240
|
||||||
Height: 20
|
Height: 20
|
||||||
Indeterminate: true
|
Indeterminate: true
|
||||||
Background@REGISTER_FINGERPRINT:
|
Background@REGISTER_FINGERPRINT:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-register-fingerprint-desc-a
|
Text: label-register-fingerprint-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 19
|
Y: 19
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-register-fingerprint-desc-b
|
Text: label-register-fingerprint-desc-b
|
||||||
Label@DESC_C:
|
Label@DESC_C:
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -131,45 +131,45 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-continue
|
Text: button-continue
|
||||||
Background@CHECKING_FINGERPRINT:
|
Background@CHECKING_FINGERPRINT:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 14
|
Y: 14
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-checking-fingerprint-desc-a
|
Text: label-checking-fingerprint-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-checking-fingerprint-desc-b
|
Text: label-checking-fingerprint-desc-b
|
||||||
ProgressBar:
|
ProgressBar:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: 240
|
Width: 240
|
||||||
Height: 20
|
Height: 20
|
||||||
Indeterminate: true
|
Indeterminate: true
|
||||||
Background@FINGERPRINT_NOT_FOUND:
|
Background@FINGERPRINT_NOT_FOUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 14
|
Y: 14
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-fingerprint-not-found-desc-a
|
Text: label-fingerprint-not-found-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -182,20 +182,20 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Background@CONNECTION_ERROR:
|
Background@CONNECTION_ERROR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 14
|
Y: 14
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-connection-error-desc-a
|
Text: label-connection-error-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -210,10 +210,10 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
|
|
||||||
Container@PLAYER_PROFILE_BADGES_INSERT:
|
Container@PLAYER_PROFILE_BADGES_INSERT:
|
||||||
Logic: PlayerProfileBadgesLogic
|
Logic: PlayerProfileBadgesLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Container@BADGE_TEMPLATE:
|
Container@BADGE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Badge@ICON:
|
Badge@ICON:
|
||||||
@@ -224,6 +224,6 @@ Container@PLAYER_PROFILE_BADGES_INSERT:
|
|||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 36
|
X: 36
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 24
|
Height: 24
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@REPLAYBROWSER_PANEL:
|
Container@REPLAYBROWSER_PANEL:
|
||||||
Logic: ReplayBrowserLogic
|
Logic: ReplayBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 540
|
Height: 540
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -14,24 +14,24 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Text: label-replaybrowser-panel-title
|
Text: label-replaybrowser-panel-title
|
||||||
Background@bg:
|
Background@bg:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@FILTER_AND_MANAGE_CONTAINER:
|
Container@FILTER_AND_MANAGE_CONTAINER:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 285
|
Width: 285
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@FILTERS:
|
Container@FILTERS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 320
|
Height: 320
|
||||||
Children:
|
Children:
|
||||||
Label@FILTERS_TITLE:
|
Label@FILTERS_TITLE:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 0 - 9
|
Y: 0 - 9
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -46,7 +46,7 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_GAMETYPE_DROPDOWNBUTTON:
|
DropDownButton@FLT_GAMETYPE_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_DATE_DESC:
|
Label@FLT_DATE_DESC:
|
||||||
@@ -59,7 +59,7 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_DATE_DROPDOWNBUTTON:
|
DropDownButton@FLT_DATE_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 45
|
Y: 45
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_DURATION_DESC:
|
Label@FLT_DURATION_DESC:
|
||||||
@@ -72,7 +72,7 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_DURATION_DROPDOWNBUTTON:
|
DropDownButton@FLT_DURATION_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 75
|
Y: 75
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_MAPNAME_DESC:
|
Label@FLT_MAPNAME_DESC:
|
||||||
@@ -85,7 +85,7 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_MAPNAME_DROPDOWNBUTTON:
|
DropDownButton@FLT_MAPNAME_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 105
|
Y: 105
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_PLAYER_DESC:
|
Label@FLT_PLAYER_DESC:
|
||||||
@@ -98,7 +98,7 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_PLAYER_DROPDOWNBUTTON:
|
DropDownButton@FLT_PLAYER_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 135
|
Y: 135
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-flt-player
|
Text: dropdownbutton-filters-flt-player
|
||||||
Label@FLT_OUTCOME_DESC:
|
Label@FLT_OUTCOME_DESC:
|
||||||
@@ -111,7 +111,7 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_OUTCOME_DROPDOWNBUTTON:
|
DropDownButton@FLT_OUTCOME_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 165
|
Y: 165
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_FACTION_DESC:
|
Label@FLT_FACTION_DESC:
|
||||||
@@ -124,45 +124,45 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_FACTION_DROPDOWNBUTTON:
|
DropDownButton@FLT_FACTION_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 195
|
Y: 195
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Button@FLT_RESET_BUTTON:
|
Button@FLT_RESET_BUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 235
|
Y: 235
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-filters-flt-reset
|
Text: button-filters-flt-reset
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MANAGEMENT:
|
Container@MANAGEMENT:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 395
|
Y: 395
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Children:
|
Children:
|
||||||
Label@MANAGE_TITLE:
|
Label@MANAGE_TITLE:
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-management-manage-title
|
Text: label-management-manage-title
|
||||||
Button@MNG_RENSEL_BUTTON:
|
Button@MNG_RENSEL_BUTTON:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-management-mng-rensel
|
Text: button-management-mng-rensel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: F2
|
Key: F2
|
||||||
Button@MNG_DELSEL_BUTTON:
|
Button@MNG_DELSEL_BUTTON:
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-management-mng-delsel
|
Text: button-management-mng-delsel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: Delete
|
Key: Delete
|
||||||
Button@MNG_DELALL_BUTTON:
|
Button@MNG_DELALL_BUTTON:
|
||||||
Y: 90
|
Y: 90
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-management-mng-delall
|
Text: button-management-mng-delall
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -170,11 +170,11 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
X: 314
|
X: 314
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 383
|
Width: 383
|
||||||
Height: PARENT_BOTTOM - 45
|
Height: PARENT_HEIGHT - 45
|
||||||
Children:
|
Children:
|
||||||
Label@REPLAYBROWSER_LABEL_TITLE:
|
Label@REPLAYBROWSER_LABEL_TITLE:
|
||||||
Y: 0 - 9
|
Y: 0 - 9
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-replay-list-container-replaybrowser-title
|
Text: label-replay-list-container-replaybrowser-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -182,12 +182,12 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
ScrollPanel@REPLAY_LIST:
|
ScrollPanel@REPLAY_LIST:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@REPLAY_TEMPLATE:
|
ScrollItem@REPLAY_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -195,36 +195,36 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@MAP_PREVIEW_ROOT:
|
Container@MAP_PREVIEW_ROOT:
|
||||||
X: PARENT_RIGHT - WIDTH - 15
|
X: PARENT_WIDTH - WIDTH - 15
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 250
|
Height: 250
|
||||||
Container@REPLAY_INFO:
|
Container@REPLAY_INFO:
|
||||||
X: PARENT_RIGHT - WIDTH - 15
|
X: PARENT_WIDTH - WIDTH - 15
|
||||||
Y: 230
|
Y: 230
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: PARENT_BOTTOM - 240
|
Height: PARENT_HEIGHT - 240
|
||||||
Children:
|
Children:
|
||||||
Label@DURATION:
|
Label@DURATION:
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 15
|
Height: 15
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollPanel@PLAYER_LIST:
|
ScrollPanel@PLAYER_LIST:
|
||||||
Y: 40
|
Y: 40
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 45
|
Height: PARENT_HEIGHT - 45
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -232,11 +232,11 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -249,24 +249,24 @@ Container@REPLAYBROWSER_PANEL:
|
|||||||
Height: 16
|
Height: 16
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 40
|
X: 40
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
Label@NOFLAG_LABEL:
|
Label@NOFLAG_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: 0
|
X: 0
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Button@WATCH_BUTTON:
|
Button@WATCH_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - 140
|
X: PARENT_WIDTH - 140
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-replaybrowser-panel-watch
|
Text: button-replaybrowser-panel-watch
|
||||||
|
|||||||
@@ -1,97 +1,97 @@
|
|||||||
Container@ADVANCED_PANEL:
|
Container@ADVANCED_PANEL:
|
||||||
Logic: AdvancedSettingsLogic
|
Logic: AdvancedSettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@NETWORK_SECTION_HEADER:
|
Background@NETWORK_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-network-section-header
|
Text: label-network-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@NAT_DISCOVERY_CONTAINER:
|
Container@NAT_DISCOVERY_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@NAT_DISCOVERY:
|
Checkbox@NAT_DISCOVERY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-nat-discovery-container
|
Text: checkbox-nat-discovery-container
|
||||||
Container@FETCH_NEWS_CHECKBOX_CONTAINER:
|
Container@FETCH_NEWS_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@FETCH_NEWS_CHECKBOX:
|
Checkbox@FETCH_NEWS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-fetch-news-container
|
Text: checkbox-fetch-news-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@PERFGRAPH_CHECKBOX_CONTAINER:
|
Container@PERFGRAPH_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PERFGRAPH_CHECKBOX:
|
Checkbox@PERFGRAPH_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-perfgraph-container
|
Text: checkbox-perfgraph-container
|
||||||
Container@CHECK_VERSION_CHECKBOX_CONTAINER:
|
Container@CHECK_VERSION_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CHECK_VERSION_CHECKBOX:
|
Checkbox@CHECK_VERSION_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-check-version-container
|
Text: checkbox-check-version-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@PERFTEXT_CHECKBOX_CONTAINER:
|
Container@PERFTEXT_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PERFTEXT_CHECKBOX:
|
Checkbox@PERFTEXT_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-perftext-container
|
Text: checkbox-perftext-container
|
||||||
Container@SENDSYSINFO_CHECKBOX_CONTAINER:
|
Container@SENDSYSINFO_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@SENDSYSINFO_CHECKBOX:
|
Checkbox@SENDSYSINFO_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-sendsysinfo-container
|
Text: checkbox-sendsysinfo-container
|
||||||
Label@SENDSYSINFO_DESC:
|
Label@SENDSYSINFO_DESC:
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
WordWrap: True
|
WordWrap: True
|
||||||
@@ -99,99 +99,99 @@ Container@ADVANCED_PANEL:
|
|||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@DEBUG_SECTION_HEADER:
|
Background@DEBUG_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-debug-section-header
|
Text: label-debug-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 40
|
Height: 40
|
||||||
Children:
|
Children:
|
||||||
Container@DEBUG_HIDDEN_CONTAINER:
|
Container@DEBUG_HIDDEN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Children:
|
Children:
|
||||||
Label@A:
|
Label@A:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-debug-hidden-container-a
|
Text: label-debug-hidden-container-a
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@B:
|
Label@B:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-debug-hidden-container-b
|
Text: label-debug-hidden-container-b
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@BOTDEBUG_CHECKBOX_CONTAINER:
|
Container@BOTDEBUG_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@BOTDEBUG_CHECKBOX:
|
Checkbox@BOTDEBUG_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-botdebug-container
|
Text: checkbox-botdebug-container
|
||||||
Container@CHECKBOTSYNC_CHECKBOX_CONTAINER:
|
Container@CHECKBOTSYNC_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CHECKBOTSYNC_CHECKBOX:
|
Checkbox@CHECKBOTSYNC_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-checkbotsync-container
|
Text: checkbox-checkbotsync-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@LUADEBUG_CHECKBOX_CONTAINER:
|
Container@LUADEBUG_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@LUADEBUG_CHECKBOX:
|
Checkbox@LUADEBUG_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-luadebug-container
|
Text: checkbox-luadebug-container
|
||||||
Container@CHECKUNSYNCED_CHECKBOX_CONTAINER:
|
Container@CHECKUNSYNCED_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CHECKUNSYNCED_CHECKBOX:
|
Checkbox@CHECKUNSYNCED_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-checkunsynced-container
|
Text: checkbox-checkunsynced-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@REPLAY_COMMANDS_CHECKBOX_CONTAINER:
|
Container@REPLAY_COMMANDS_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@REPLAY_COMMANDS_CHECKBOX:
|
Checkbox@REPLAY_COMMANDS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-replay-commands-container
|
Text: checkbox-replay-commands-container
|
||||||
Container@PERFLOGGING_CHECKBOX_CONTAINER:
|
Container@PERFLOGGING_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PERFLOGGING_CHECKBOX:
|
Checkbox@PERFLOGGING_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-perflogging-container
|
Text: checkbox-perflogging-container
|
||||||
|
|||||||
@@ -1,144 +1,144 @@
|
|||||||
Container@AUDIO_PANEL:
|
Container@AUDIO_PANEL:
|
||||||
Logic: AudioSettingsLogic
|
Logic: AudioSettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@AUDIO_SECTION_HEADER:
|
Background@AUDIO_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-audio-section-header
|
Text: label-audio-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@NO_AUDIO_DEVICE_CONTAINER:
|
Container@NO_AUDIO_DEVICE_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Children:
|
Children:
|
||||||
Label@NO_AUDIO_DEVICE:
|
Label@NO_AUDIO_DEVICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-audio-device-container
|
Text: label-no-audio-device-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@CASH_TICKS_CONTAINER:
|
Container@CASH_TICKS_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CASH_TICKS:
|
Checkbox@CASH_TICKS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-cash-ticks-container
|
Text: checkbox-cash-ticks-container
|
||||||
Container@MUTE_SOUND_CONTAINER:
|
Container@MUTE_SOUND_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@MUTE_SOUND:
|
Checkbox@MUTE_SOUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-mute-sound-container
|
Text: checkbox-mute-sound-container
|
||||||
Container@SOUND_VOLUME_CONTAINER:
|
Container@SOUND_VOLUME_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@SOUND_LABEL:
|
Label@SOUND_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-sound-volume-container
|
Text: label-sound-volume-container
|
||||||
ExponentialSlider@SOUND_VOLUME:
|
ExponentialSlider@SOUND_VOLUME:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MUTE_BACKGROUND_MUSIC_CONTAINER:
|
Container@MUTE_BACKGROUND_MUSIC_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@MUTE_BACKGROUND_MUSIC:
|
Checkbox@MUTE_BACKGROUND_MUSIC:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-mute-background-music-container.label
|
Text: checkbox-mute-background-music-container.label
|
||||||
TooltipText: checkbox-mute-background-music-container.tooltip
|
TooltipText: checkbox-mute-background-music-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@MUSIC_VOLUME_CONTAINER:
|
Container@MUSIC_VOLUME_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MUSIC_LABEL:
|
Label@MUSIC_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-music-title-volume-container
|
Text: label-music-title-volume-container
|
||||||
ExponentialSlider@MUSIC_VOLUME:
|
ExponentialSlider@MUSIC_VOLUME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@AUDIO_DEVICE_CONTAINER:
|
Container@AUDIO_DEVICE_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@AUDIO_DEVICE_LABEL:
|
Label@AUDIO_DEVICE_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-audio-device-container
|
Text: label-audio-device-container
|
||||||
DropDownButton@AUDIO_DEVICE:
|
DropDownButton@AUDIO_DEVICE:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Container@VIDEO_VOLUME_CONTAINER:
|
Container@VIDEO_VOLUME_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@VIDEO_LABEL:
|
Label@VIDEO_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-video-volume-container
|
Text: label-video-volume-container
|
||||||
ExponentialSlider@VIDEO_VOLUME:
|
ExponentialSlider@VIDEO_VOLUME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@RESTART_REQUIRED_CONTAINER:
|
Container@RESTART_REQUIRED_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Children:
|
Children:
|
||||||
Label@AUDIO_RESTART_REQUIRED_DESC:
|
Label@AUDIO_RESTART_REQUIRED_DESC:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -1,53 +1,53 @@
|
|||||||
Container@DISPLAY_PANEL:
|
Container@DISPLAY_PANEL:
|
||||||
Logic: DisplaySettingsLogic
|
Logic: DisplaySettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@PROFILE_SECTION_HEADER:
|
Background@PROFILE_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-profile-section-header
|
Text: label-profile-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@PLAYER_CONTAINER:
|
Container@PLAYER_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@PLAYER:
|
LabelForInput@PLAYER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-player-container
|
Text: label-player-container
|
||||||
For: PLAYERNAME
|
For: PLAYERNAME
|
||||||
TextField@PLAYERNAME:
|
TextField@PLAYERNAME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
MaxLength: 16
|
MaxLength: 16
|
||||||
Text: Name
|
Text: Name
|
||||||
Container@PLAYERCOLOR_CONTAINER:
|
Container@PLAYERCOLOR_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@COLOR:
|
LabelForInput@COLOR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-playercolor-container-color
|
Text: label-playercolor-container-color
|
||||||
For: PLAYERCOLOR
|
For: PLAYERCOLOR
|
||||||
@@ -61,184 +61,184 @@ Container@DISPLAY_PANEL:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@DISPLAY_SECTION_HEADER:
|
Background@DISPLAY_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-display-section-header
|
Text: label-display-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@BATTLEFIELD_CAMERA:
|
Label@BATTLEFIELD_CAMERA:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-battlefield-camera-dropdown
|
Text: label-battlefield-camera-dropdown
|
||||||
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@TARGET_LINES_DROPDOWN_CONTAINER:
|
Container@TARGET_LINES_DROPDOWN_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@TARGET_LINES:
|
Label@TARGET_LINES:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-target-lines-dropdown-container
|
Text: label-target-lines-dropdown-container
|
||||||
DropDownButton@TARGET_LINES_DROPDOWN:
|
DropDownButton@TARGET_LINES_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@UI_SCALE:
|
LabelForInput@UI_SCALE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-ui-scale-dropdown
|
Text: label-ui-scale-dropdown
|
||||||
For: UI_SCALE_DROPDOWN
|
For: UI_SCALE_DROPDOWN
|
||||||
DropDownButton@UI_SCALE_DROPDOWN:
|
DropDownButton@UI_SCALE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@STATUS_BAR_DROPDOWN_CONTAINER:
|
Container@STATUS_BAR_DROPDOWN_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@STATUS_BARS:
|
Label@STATUS_BARS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-status-bar-dropdown-container-bars
|
Text: label-status-bar-dropdown-container-bars
|
||||||
DropDownButton@STATUS_BAR_DROPDOWN:
|
DropDownButton@STATUS_BAR_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CURSORDOUBLE_CHECKBOX:
|
Checkbox@CURSORDOUBLE_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-cursordouble-container
|
Text: checkbox-cursordouble-container
|
||||||
Container@PLAYER_STANCE_COLORS_CHECKBOX_CONTAINER:
|
Container@PLAYER_STANCE_COLORS_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PLAYER_STANCE_COLORS_CHECKBOX:
|
Checkbox@PLAYER_STANCE_COLORS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-player-stance-colors-container.label
|
Text: checkbox-player-stance-colors-container.label
|
||||||
TooltipText: checkbox-player-stance-colors-container.tooltip
|
TooltipText: checkbox-player-stance-colors-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@UI_FEEDBACK_CHECKBOX_CONTAINER:
|
Container@UI_FEEDBACK_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 10
|
Width: PARENT_WIDTH / 2 - 10
|
||||||
Children:
|
Children:
|
||||||
Checkbox@UI_FEEDBACK_CHECKBOX:
|
Checkbox@UI_FEEDBACK_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-ui-feedback-container.label
|
Text: checkbox-ui-feedback-container.label
|
||||||
TooltipText: checkbox-ui-feedback-container.tooltip
|
TooltipText: checkbox-ui-feedback-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@TRANSIENTS_CHECKBOX_CONTAINER:
|
Container@TRANSIENTS_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@TRANSIENTS_CHECKBOX:
|
Checkbox@TRANSIENTS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-transients-container.label
|
Text: checkbox-transients-container.label
|
||||||
TooltipText: checkbox-transients-container.tooltip
|
TooltipText: checkbox-transients-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@HIDE_REPLAY_CHAT_CHECKBOX_CONTAINER:
|
Container@HIDE_REPLAY_CHAT_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 10
|
Width: PARENT_WIDTH / 2 - 10
|
||||||
Children:
|
Children:
|
||||||
Checkbox@HIDE_REPLAY_CHAT_CHECKBOX:
|
Checkbox@HIDE_REPLAY_CHAT_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-hide-replay-chat-container
|
Text: checkbox-hide-replay-chat-container
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@VIDEO_SECTION_HEADER:
|
Background@VIDEO_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-video-section-header
|
Text: label-video-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@VIDEO_MODE_DROPDOWN_CONTAINER:
|
Container@VIDEO_MODE_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@VIDEO_MODE:
|
Label@VIDEO_MODE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-video-mode-dropdown-container
|
Text: label-video-mode-dropdown-container
|
||||||
DropDownButton@MODE_DROPDOWN:
|
DropDownButton@MODE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: dropdownbutton-video-mode-dropdown-container
|
Text: dropdownbutton-video-mode-dropdown-container
|
||||||
Container@WINDOW_RESOLUTION_CONTAINER:
|
Container@WINDOW_RESOLUTION_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@WINDOW_SIZE:
|
Label@WINDOW_SIZE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-window-resolution-container-size
|
Text: label-window-resolution-container-size
|
||||||
TextField@WINDOW_WIDTH:
|
TextField@WINDOW_WIDTH:
|
||||||
@@ -263,88 +263,88 @@ Container@DISPLAY_PANEL:
|
|||||||
MaxLength: 5
|
MaxLength: 5
|
||||||
Type: Integer
|
Type: Integer
|
||||||
Container@DISPLAY_SELECTION_CONTAINER:
|
Container@DISPLAY_SELECTION_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@DISPLAY_SELECTION_LABEL:
|
Label@DISPLAY_SELECTION_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-display-selection-container
|
Text: label-display-selection-container
|
||||||
DropDownButton@DISPLAY_SELECTION_DROPDOWN:
|
DropDownButton@DISPLAY_SELECTION_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: dropdownbutton-display-selection-container-dropdown
|
Text: dropdownbutton-display-selection-container-dropdown
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@FRAME_LIMIT_CHECKBOX_CONTAINER:
|
Container@FRAME_LIMIT_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@FRAME_LIMIT_CHECKBOX:
|
Checkbox@FRAME_LIMIT_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@FRAME_LIMIT_SLIDER_CONTAINER:
|
Container@FRAME_LIMIT_SLIDER_CONTAINER:
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Slider@FRAME_LIMIT_SLIDER:
|
Slider@FRAME_LIMIT_SLIDER:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 20
|
Ticks: 20
|
||||||
MinimumValue: 50
|
MinimumValue: 50
|
||||||
MaximumValue: 240
|
MaximumValue: 240
|
||||||
Container@VSYNC_CHECKBOX_CONTAINER:
|
Container@VSYNC_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@VSYNC_CHECKBOX:
|
Checkbox@VSYNC_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-vsync-container
|
Text: checkbox-vsync-container
|
||||||
Container@FRAME_LIMIT_GAMESPEED_CHECKBOX_CONTAINER:
|
Container@FRAME_LIMIT_GAMESPEED_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@FRAME_LIMIT_GAMESPEED_CHECKBOX:
|
Checkbox@FRAME_LIMIT_GAMESPEED_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-frame-limit-gamespeed-container
|
Text: checkbox-frame-limit-gamespeed-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@GL_PROFILE_DROPDOWN_CONTAINER:
|
Container@GL_PROFILE_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@GL_PROFILE:
|
Label@GL_PROFILE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-gl-profile-dropdown-container
|
Text: label-gl-profile-dropdown-container
|
||||||
DropDownButton@GL_PROFILE_DROPDOWN:
|
DropDownButton@GL_PROFILE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Container@RESTART_REQUIRED_CONTAINER:
|
Container@RESTART_REQUIRED_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Children:
|
Children:
|
||||||
Label@VIDEO_RESTART_REQUIRED_DESC:
|
Label@VIDEO_RESTART_REQUIRED_DESC:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Text: label-restart-required-container-video-desc
|
Text: label-restart-required-container-video-desc
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ Container@HOTKEYS_PANEL:
|
|||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Editor Commands:
|
Editor Commands:
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@FILTER_INPUT_LABEL:
|
Label@FILTER_INPUT_LABEL:
|
||||||
Width: 103
|
Width: 103
|
||||||
@@ -36,72 +36,72 @@ Container@HOTKEYS_PANEL:
|
|||||||
Width: 180
|
Width: 180
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@CONTEXT_DROPDOWN_LABEL:
|
Label@CONTEXT_DROPDOWN_LABEL:
|
||||||
X: PARENT_RIGHT - WIDTH - 195 - 5
|
X: PARENT_WIDTH - WIDTH - 195 - 5
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: label-hotkeys-panel-context-dropdown
|
Text: label-hotkeys-panel-context-dropdown
|
||||||
Align: Right
|
Align: Right
|
||||||
DropDownButton@CONTEXT_DROPDOWN:
|
DropDownButton@CONTEXT_DROPDOWN:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Width: 195
|
Width: 195
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@HOTKEY_LIST:
|
ScrollPanel@HOTKEY_LIST:
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 65 - 35
|
Height: PARENT_HEIGHT - 65 - 35
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Container@HEADER:
|
Container@HEADER:
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 18
|
Height: 18
|
||||||
Children:
|
Children:
|
||||||
Background@BACKGROUND:
|
Background@BACKGROUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@TEMPLATE:
|
Container@TEMPLATE:
|
||||||
Width: (PARENT_RIGHT - 24) / 2 - 10
|
Width: (PARENT_WIDTH - 24) / 2 - 10
|
||||||
Height: 30
|
Height: 30
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@FUNCTION:
|
Label@FUNCTION:
|
||||||
Y: 0 - 1
|
Y: 0 - 1
|
||||||
Width: PARENT_RIGHT - 90 - 5
|
Width: PARENT_WIDTH - 90 - 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Right
|
Align: Right
|
||||||
Button@HOTKEY:
|
Button@HOTKEY:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Width: 90
|
Width: 90
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@HOTKEY_EMPTY_LIST:
|
Container@HOTKEY_EMPTY_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@HOTKEY_EMPTY_LIST_MESSAGE:
|
Label@HOTKEY_EMPTY_LIST_MESSAGE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-hotkey-empty-list-message
|
Text: label-hotkey-empty-list-message
|
||||||
Background@HOTKEY_REMAP_BGND:
|
Background@HOTKEY_REMAP_BGND:
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 1
|
Y: PARENT_HEIGHT - HEIGHT - 1
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 65 + 1
|
Height: 65 + 1
|
||||||
Background: panel-gray
|
Background: panel-gray
|
||||||
Children:
|
Children:
|
||||||
Container@HOTKEY_REMAP_DIALOG:
|
Container@HOTKEY_REMAP_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@HOTKEY_LABEL:
|
Label@HOTKEY_LABEL:
|
||||||
X: 15
|
X: 15
|
||||||
@@ -122,27 +122,27 @@ Container@HOTKEYS_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Label@ORIGINAL_NOTICE:
|
Label@ORIGINAL_NOTICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Label@DUPLICATE_NOTICE:
|
Label@DUPLICATE_NOTICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Label@READONLY_NOTICE:
|
Label@READONLY_NOTICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Text: label-notices-readonly-notice
|
Text: label-notices-readonly-notice
|
||||||
Button@OVERRIDE_HOTKEY_BUTTON:
|
Button@OVERRIDE_HOTKEY_BUTTON:
|
||||||
X: PARENT_RIGHT - 3 * WIDTH - 30
|
X: PARENT_WIDTH - 3 * WIDTH - 30
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-hotkey-remap-dialog-override
|
Text: button-hotkey-remap-dialog-override
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CLEAR_HOTKEY_BUTTON:
|
Button@CLEAR_HOTKEY_BUTTON:
|
||||||
X: PARENT_RIGHT - 2 * WIDTH - 30
|
X: PARENT_WIDTH - 2 * WIDTH - 30
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 65
|
Width: 65
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -152,7 +152,7 @@ Container@HOTKEYS_PANEL:
|
|||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Button@RESET_HOTKEY_BUTTON:
|
Button@RESET_HOTKEY_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 65
|
Width: 65
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|||||||
@@ -1,286 +1,286 @@
|
|||||||
Container@INPUT_PANEL:
|
Container@INPUT_PANEL:
|
||||||
Logic: InputSettingsLogic
|
Logic: InputSettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@INPUT_SECTION_HEADER:
|
Background@INPUT_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-input-section-header
|
Text: label-input-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MOUSE_CONTROL_CONTAINER:
|
Container@MOUSE_CONTROL_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MOUSE_CONTROL_LABEL:
|
Label@MOUSE_CONTROL_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-mouse-control-container
|
Text: label-mouse-control-container
|
||||||
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ZOOM_MODIFIER_CONTAINER:
|
Container@ZOOM_MODIFIER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@ZOOM_MODIFIER_LABEL:
|
Label@ZOOM_MODIFIER_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-zoom-modifier-container
|
Text: label-zoom-modifier-container
|
||||||
DropDownButton@ZOOM_MODIFIER:
|
DropDownButton@ZOOM_MODIFIER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 55
|
Y: 55
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-selection
|
Text: label-mouse-control-desc-classic-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-commands
|
Text: label-mouse-control-desc-classic-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-buildings
|
Text: label-mouse-control-desc-classic-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-support
|
Text: label-mouse-control-desc-classic-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom
|
Text: label-mouse-control-desc-classic-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom-modifier
|
Text: label-mouse-control-desc-classic-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-right
|
Text: label-mouse-control-desc-classic-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-middle
|
Text: label-mouse-control-desc-classic-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-edgescroll
|
Text: label-mouse-control-desc-classic-edgescroll
|
||||||
Container@MOUSE_CONTROL_DESC_MODERN:
|
Container@MOUSE_CONTROL_DESC_MODERN:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 55
|
Y: 55
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-selection
|
Text: label-mouse-control-desc-modern-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-commands
|
Text: label-mouse-control-desc-modern-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-buildings
|
Text: label-mouse-control-desc-modern-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-support
|
Text: label-mouse-control-desc-modern-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom
|
Text: label-mouse-control-desc-modern-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom-modifier
|
Text: label-mouse-control-desc-modern-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-right
|
Text: label-mouse-control-desc-modern-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-middle
|
Text: label-mouse-control-desc-modern-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-edgescroll
|
Text: label-mouse-control-desc-modern-edgescroll
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@EDGESCROLL_CHECKBOX:
|
Checkbox@EDGESCROLL_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-edgescroll-container
|
Text: checkbox-edgescroll-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@ALTERNATE_SCROLL_CHECKBOX_CONTAINER:
|
Container@ALTERNATE_SCROLL_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@ALTERNATE_SCROLL_CHECKBOX:
|
Checkbox@ALTERNATE_SCROLL_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-alternate-scroll-container
|
Text: checkbox-alternate-scroll-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@LOCKMOUSE_CHECKBOX_CONTAINER:
|
Container@LOCKMOUSE_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@LOCKMOUSE_CHECKBOX:
|
Checkbox@LOCKMOUSE_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-lockmouse-container
|
Text: checkbox-lockmouse-container
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Height: 30
|
Height: 30
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MOUSE_SCROLL_TYPE_CONTAINER:
|
Container@MOUSE_SCROLL_TYPE_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MOUSE_SCROLL_TYPE_LABEL:
|
Label@MOUSE_SCROLL_TYPE_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-mouse-scroll-type-container
|
Text: label-mouse-scroll-type-container
|
||||||
DropDownButton@MOUSE_SCROLL_TYPE_DROPDOWN:
|
DropDownButton@MOUSE_SCROLL_TYPE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@SCROLLSPEED_SLIDER_CONTAINER:
|
Container@SCROLLSPEED_SLIDER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@SCROLL_SPEED_LABEL:
|
Label@SCROLL_SPEED_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-scrollspeed-slider-container-scroll-speed
|
Text: label-scrollspeed-slider-container-scroll-speed
|
||||||
Slider@SCROLLSPEED_SLIDER:
|
Slider@SCROLLSPEED_SLIDER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
MinimumValue: 10
|
MinimumValue: 10
|
||||||
MaximumValue: 50
|
MaximumValue: 50
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@ZOOMSPEED_SLIDER_CONTAINER:
|
Container@ZOOMSPEED_SLIDER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@ZOOM_SPEED_LABEL:
|
Label@ZOOM_SPEED_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-zoomspeed-slider-container-zoom-speed
|
Text: label-zoomspeed-slider-container-zoom-speed
|
||||||
ExponentialSlider@ZOOMSPEED_SLIDER:
|
ExponentialSlider@ZOOMSPEED_SLIDER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
MinimumValue: 0.01
|
MinimumValue: 0.01
|
||||||
MaximumValue: 0.4
|
MaximumValue: 0.4
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@UI_SCROLLSPEED_SLIDER_CONTAINER:
|
Container@UI_SCROLLSPEED_SLIDER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@UI_SCROLL_SPEED_LABEL:
|
Label@UI_SCROLL_SPEED_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-ui-scrollspeed-slider-container-scroll-speed
|
Text: label-ui-scrollspeed-slider-container-scroll-speed
|
||||||
Slider@UI_SCROLLSPEED_SLIDER:
|
Slider@UI_SCROLLSPEED_SLIDER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
MinimumValue: 1
|
MinimumValue: 1
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ Container@SETTINGS_PANEL:
|
|||||||
INPUT_PANEL: Input
|
INPUT_PANEL: Input
|
||||||
HOTKEYS_PANEL: Hotkeys
|
HOTKEYS_PANEL: Hotkeys
|
||||||
ADVANCED_PANEL: Advanced
|
ADVANCED_PANEL: Advanced
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 640
|
Width: 640
|
||||||
Height: 435
|
Height: 435
|
||||||
Children:
|
Children:
|
||||||
Label@SETTINGS_LABEL_TITLE:
|
Label@SETTINGS_LABEL_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Y: 0 - 34
|
Y: 0 - 34
|
||||||
Font: BigBold
|
Font: BigBold
|
||||||
@@ -22,13 +22,13 @@ Container@SETTINGS_PANEL:
|
|||||||
Text: button-settings-title
|
Text: button-settings-title
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Button@RESET_BUTTON:
|
Button@RESET_BUTTON:
|
||||||
X: 150
|
X: 150
|
||||||
Y: PARENT_BOTTOM - 1
|
Y: PARENT_HEIGHT - 1
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: button-settings-panel-reset
|
Text: button-settings-panel-reset
|
||||||
@@ -39,13 +39,13 @@ Container@SETTINGS_PANEL:
|
|||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Background@PANEL_CONTAINER:
|
Background@PANEL_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@PANEL_TEMPLATE:
|
Container@PANEL_TEMPLATE:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
TooltipContainer@SETTINGS_TOOLTIP_CONTAINER:
|
TooltipContainer@SETTINGS_TOOLTIP_CONTAINER:
|
||||||
|
|||||||
@@ -477,29 +477,29 @@ Container@REGISTERED_PLAYER_TOOLTIP:
|
|||||||
Height: 137
|
Height: 137
|
||||||
Children:
|
Children:
|
||||||
Background@HEADER:
|
Background@HEADER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
Children:
|
Children:
|
||||||
Container@PROFILE_HEADER:
|
Container@PROFILE_HEADER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 42
|
Height: 42
|
||||||
Children:
|
Children:
|
||||||
Label@PROFILE_NAME:
|
Label@PROFILE_NAME:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
Label@PROFILE_RANK:
|
Label@PROFILE_RANK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 24
|
Y: 24
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 12
|
Height: 12
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Container@GAME_ADMIN:
|
Container@GAME_ADMIN:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 36
|
Y: 36
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 12
|
Height: 12
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
@@ -519,16 +519,16 @@ Container@REGISTERED_PLAYER_TOOLTIP:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Container@MESSAGE_HEADER:
|
Container@MESSAGE_HEADER:
|
||||||
Height: 26
|
Height: 26
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@MESSAGE:
|
Label@MESSAGE:
|
||||||
Y: 1
|
Y: 1
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 23
|
Height: 23
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@BADGES_CONTAINER:
|
Background@BADGES_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: -1
|
Y: -1
|
||||||
Visible: false
|
Visible: false
|
||||||
Background: panel-black
|
Background: panel-black
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
Background@ASSETBROWSER_PANEL:
|
Background@ASSETBROWSER_PANEL:
|
||||||
Logic: AssetBrowserLogic
|
Logic: AssetBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
Children:
|
Children:
|
||||||
LogicTicker@ANIMATION_TICKER:
|
LogicTicker@ANIMATION_TICKER:
|
||||||
Label@ASSETBROWSER_TITLE:
|
Label@ASSETBROWSER_TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -53,11 +53,11 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
X: 20
|
X: 20
|
||||||
Y: 170
|
Y: 170
|
||||||
Width: 195
|
Width: 195
|
||||||
Height: PARENT_BOTTOM - 250
|
Height: PARENT_HEIGHT - 250
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@ASSET_TEMPLATE:
|
ScrollItem@ASSET_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -65,12 +65,12 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SPRITE_SCALE:
|
Label@SPRITE_SCALE:
|
||||||
X: PARENT_RIGHT - WIDTH - 440
|
X: PARENT_WIDTH - WIDTH - 440
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -78,14 +78,14 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Text: label-assetbrowser-sprite-scale
|
Text: label-assetbrowser-sprite-scale
|
||||||
Slider@SPRITE_SCALE_SLIDER:
|
Slider@SPRITE_SCALE_SLIDER:
|
||||||
X: PARENT_RIGHT - WIDTH - 330
|
X: PARENT_WIDTH - WIDTH - 330
|
||||||
Y: 62
|
Y: 62
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 20
|
Height: 20
|
||||||
MinimumValue: 0.5
|
MinimumValue: 0.5
|
||||||
MaximumValue: 4
|
MaximumValue: 4
|
||||||
Label@PALETTE_DESC:
|
Label@PALETTE_DESC:
|
||||||
X: PARENT_RIGHT - WIDTH - 270
|
X: PARENT_WIDTH - WIDTH - 270
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 150
|
Width: 150
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -93,13 +93,13 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
Align: Right
|
Align: Right
|
||||||
Text: label-assetbrowser-palette-desc
|
Text: label-assetbrowser-palette-desc
|
||||||
DropDownButton@PALETTE_SELECTOR:
|
DropDownButton@PALETTE_SELECTOR:
|
||||||
X: PARENT_RIGHT - WIDTH - 110
|
X: PARENT_WIDTH - WIDTH - 110
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 150
|
Width: 150
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
DropDownButton@COLOR:
|
DropDownButton@COLOR:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 80
|
Width: 80
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -107,32 +107,32 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
Background@SPRITE_BG:
|
Background@SPRITE_BG:
|
||||||
X: 226
|
X: 226
|
||||||
Y: 90
|
Y: 90
|
||||||
Width: PARENT_RIGHT - 226 - 20
|
Width: PARENT_WIDTH - 226 - 20
|
||||||
Height: PARENT_BOTTOM - 170
|
Height: PARENT_HEIGHT - 170
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
Sprite@SPRITE:
|
Sprite@SPRITE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
VideoPlayer@PLAYER:
|
VideoPlayer@PLAYER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
AspectRatio: 1
|
AspectRatio: 1
|
||||||
Label@ERROR:
|
Label@ERROR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Visible: false
|
Visible: false
|
||||||
Text: label-assetbrowser-sprite-bg-error
|
Text: label-assetbrowser-sprite-bg-error
|
||||||
Container@FRAME_SELECTOR:
|
Container@FRAME_SELECTOR:
|
||||||
X: 226
|
X: 226
|
||||||
Y: PARENT_BOTTOM - 75
|
Y: PARENT_HEIGHT - 75
|
||||||
Width: PARENT_RIGHT - 226
|
Width: PARENT_WIDTH - 226
|
||||||
Children:
|
Children:
|
||||||
Button@BUTTON_PREV:
|
Button@BUTTON_PREV:
|
||||||
Width: 26
|
Width: 26
|
||||||
@@ -192,11 +192,11 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
Slider@FRAME_SLIDER:
|
Slider@FRAME_SLIDER:
|
||||||
X: 140
|
X: 140
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: PARENT_RIGHT - 140 - 85
|
Width: PARENT_WIDTH - 140 - 85
|
||||||
Height: 20
|
Height: 20
|
||||||
MinimumValue: 0
|
MinimumValue: 0
|
||||||
Label@FRAME_COUNT:
|
Label@FRAME_COUNT:
|
||||||
X: PARENT_RIGHT - WIDTH + 5
|
X: PARENT_WIDTH - WIDTH + 5
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: 85
|
Width: 85
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -204,8 +204,8 @@ Background@ASSETBROWSER_PANEL:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Button@CLOSE_BUTTON:
|
Button@CLOSE_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -221,5 +221,5 @@ ScrollPanel@ASSET_TYPES_PANEL:
|
|||||||
Checkbox@ASSET_TYPE_TEMPLATE:
|
Checkbox@ASSET_TYPE_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
|
|||||||
@@ -29,14 +29,14 @@ Background@COLOR_CHOOSER:
|
|||||||
Height: 73
|
Height: 73
|
||||||
Button@MIXER_TAB_BUTTON:
|
Button@MIXER_TAB_BUTTON:
|
||||||
X: 5
|
X: 5
|
||||||
Y: PARENT_BOTTOM - 30
|
Y: PARENT_HEIGHT - 30
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 80
|
Width: 80
|
||||||
Text: button-color-chooser-mixer-tab
|
Text: button-color-chooser-mixer-tab
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@PALETTE_TAB_BUTTON:
|
Button@PALETTE_TAB_BUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: PARENT_BOTTOM - 30
|
Y: PARENT_HEIGHT - 30
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 80
|
Width: 80
|
||||||
Text: button-color-chooser-palette-tab
|
Text: button-color-chooser-palette-tab
|
||||||
@@ -44,63 +44,63 @@ Background@COLOR_CHOOSER:
|
|||||||
Container@MIXER_TAB:
|
Container@MIXER_TAB:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 90
|
Width: PARENT_WIDTH - 90
|
||||||
Height: PARENT_BOTTOM - 34
|
Height: PARENT_HEIGHT - 34
|
||||||
Children:
|
Children:
|
||||||
Background@HUEBG:
|
Background@HUEBG:
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 17
|
Height: 17
|
||||||
Children:
|
Children:
|
||||||
HueSlider@HUE_SLIDER:
|
HueSlider@HUE_SLIDER:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
Ticks: 5
|
Ticks: 5
|
||||||
Background@MIXERBG:
|
Background@MIXERBG:
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
X: 0
|
X: 0
|
||||||
Y: 22
|
Y: 22
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 22
|
Height: PARENT_HEIGHT - 22
|
||||||
Children:
|
Children:
|
||||||
ColorMixer@MIXER:
|
ColorMixer@MIXER:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
Background@PALETTE_TAB:
|
Background@PALETTE_TAB:
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 90
|
Width: PARENT_WIDTH - 90
|
||||||
Height: PARENT_BOTTOM - 34
|
Height: PARENT_HEIGHT - 34
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Container@PALETTE_TAB_PANEL:
|
Container@PALETTE_TAB_PANEL:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background@PRESET_HEADER:
|
Background@PRESET_HEADER:
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-preset-header
|
Text: label-preset-header
|
||||||
Container@PRESET_AREA:
|
Container@PRESET_AREA:
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 58
|
Height: 58
|
||||||
X: 2
|
X: 2
|
||||||
Y: 16
|
Y: 16
|
||||||
@@ -114,19 +114,19 @@ Background@COLOR_CHOOSER:
|
|||||||
ClickSound: ClickSound
|
ClickSound: ClickSound
|
||||||
Background@CUSTOM_HEADER:
|
Background@CUSTOM_HEADER:
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 75
|
Y: 75
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-custom-header
|
Text: label-custom-header
|
||||||
Container@CUSTOM_AREA:
|
Container@CUSTOM_AREA:
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: 31
|
Height: 31
|
||||||
X: 2
|
X: 2
|
||||||
Y: 89
|
Y: 89
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
Background@THREEBUTTON_PROMPT:
|
Background@THREEBUTTON_PROMPT:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 600
|
Width: 600
|
||||||
Height: 110
|
Height: 110
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 21
|
Y: 21
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -13,12 +13,12 @@ Background@THREEBUTTON_PROMPT:
|
|||||||
Label@PROMPT_TEXT:
|
Label@PROMPT_TEXT:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@CONFIRM_BUTTON:
|
Button@CONFIRM_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-prompt-confirm
|
Text: button-prompt-confirm
|
||||||
@@ -26,16 +26,16 @@ Background@THREEBUTTON_PROMPT:
|
|||||||
Key: return
|
Key: return
|
||||||
Visible: false
|
Visible: false
|
||||||
Button@OTHER_BUTTON:
|
Button@OTHER_BUTTON:
|
||||||
X: PARENT_RIGHT - 380
|
X: PARENT_WIDTH - 380
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-prompt-other
|
Text: button-prompt-other
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Visible: false
|
Visible: false
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
@@ -44,13 +44,13 @@ Background@THREEBUTTON_PROMPT:
|
|||||||
Visible: false
|
Visible: false
|
||||||
|
|
||||||
Background@TWOBUTTON_PROMPT:
|
Background@TWOBUTTON_PROMPT:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - 90) / 2
|
Y: (WINDOW_HEIGHT - 90) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 110
|
Height: 110
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 21
|
Y: 21
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -58,12 +58,12 @@ Background@TWOBUTTON_PROMPT:
|
|||||||
Label@PROMPT_TEXT:
|
Label@PROMPT_TEXT:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@CONFIRM_BUTTON:
|
Button@CONFIRM_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-prompt-confirm
|
Text: button-prompt-confirm
|
||||||
@@ -71,8 +71,8 @@ Background@TWOBUTTON_PROMPT:
|
|||||||
Key: return
|
Key: return
|
||||||
Visible: false
|
Visible: false
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
@@ -81,13 +81,13 @@ Background@TWOBUTTON_PROMPT:
|
|||||||
Visible: false
|
Visible: false
|
||||||
|
|
||||||
Background@TEXT_INPUT_PROMPT:
|
Background@TEXT_INPUT_PROMPT:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 370
|
Width: 370
|
||||||
Height: 175
|
Height: 175
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 21
|
Y: 21
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -95,25 +95,25 @@ Background@TEXT_INPUT_PROMPT:
|
|||||||
Label@PROMPT_TEXT:
|
Label@PROMPT_TEXT:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
TextField@INPUT_TEXT:
|
TextField@INPUT_TEXT:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 80
|
Y: 80
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@ACCEPT_BUTTON:
|
Button@ACCEPT_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-text-input-prompt-accept
|
Text: button-text-input-prompt-accept
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: return
|
Key: return
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Background@CONNECTIONFAILED_PANEL:
|
Background@CONNECTIONFAILED_PANEL:
|
||||||
Logic: ConnectionFailedLogic
|
Logic: ConnectionFailedLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 450
|
Width: 450
|
||||||
Height: 160
|
Height: 160
|
||||||
Children:
|
Children:
|
||||||
@@ -16,48 +16,48 @@ Background@CONNECTIONFAILED_PANEL:
|
|||||||
Label@CONNECTING_DESC:
|
Label@CONNECTING_DESC:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 46
|
Y: 46
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@CONNECTION_ERROR:
|
Label@CONNECTION_ERROR:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 76
|
Y: 76
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@PASSWORD_LABEL:
|
Label@PASSWORD_LABEL:
|
||||||
X: PARENT_RIGHT - 360
|
X: PARENT_WIDTH - 360
|
||||||
Y: 111
|
Y: 111
|
||||||
Width: 95
|
Width: 95
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-connectionfailed-panel-password
|
Text: label-connectionfailed-panel-password
|
||||||
Font: Bold
|
Font: Bold
|
||||||
PasswordField@PASSWORD:
|
PasswordField@PASSWORD:
|
||||||
X: PARENT_RIGHT - 285
|
X: PARENT_WIDTH - 285
|
||||||
Y: 111
|
Y: 111
|
||||||
Width: 190
|
Width: 190
|
||||||
MaxLength: 20
|
MaxLength: 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@RETRY_BUTTON:
|
Button@RETRY_BUTTON:
|
||||||
X: PARENT_RIGHT - 430
|
X: PARENT_WIDTH - 430
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-retry
|
Text: button-retry
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: return
|
Key: return
|
||||||
Button@ABORT_BUTTON:
|
Button@ABORT_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-connectionfailed-panel-abort
|
Text: button-connectionfailed-panel-abort
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: escape
|
Key: escape
|
||||||
Button@QUIT_BUTTON:
|
Button@QUIT_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-quit
|
Text: button-quit
|
||||||
@@ -66,8 +66,8 @@ Background@CONNECTIONFAILED_PANEL:
|
|||||||
|
|
||||||
Background@CONNECTING_PANEL:
|
Background@CONNECTING_PANEL:
|
||||||
Logic: ConnectionLogic
|
Logic: ConnectionLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 450
|
Width: 450
|
||||||
Height: 160
|
Height: 160
|
||||||
Children:
|
Children:
|
||||||
@@ -82,12 +82,12 @@ Background@CONNECTING_PANEL:
|
|||||||
Label@CONNECTING_DESC:
|
Label@CONNECTING_DESC:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 61
|
Y: 61
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@ABORT_BUTTON:
|
Button@ABORT_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-connecting-panel-abort
|
Text: button-connecting-panel-abort
|
||||||
@@ -96,8 +96,8 @@ Background@CONNECTING_PANEL:
|
|||||||
|
|
||||||
Background@CONNECTION_SWITCHMOD_PANEL:
|
Background@CONNECTION_SWITCHMOD_PANEL:
|
||||||
Logic: ConnectionSwitchModLogic
|
Logic: ConnectionSwitchModLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 450
|
Width: 450
|
||||||
Height: 191
|
Height: 191
|
||||||
Children:
|
Children:
|
||||||
@@ -111,7 +111,7 @@ Background@CONNECTION_SWITCHMOD_PANEL:
|
|||||||
Text: label-connection-switchmod-panel-title
|
Text: label-connection-switchmod-panel-title
|
||||||
Label@DESC:
|
Label@DESC:
|
||||||
Y: 46
|
Y: 46
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-connection-switchmod-panel-desc
|
Text: label-connection-switchmod-panel-desc
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -119,7 +119,7 @@ Background@CONNECTION_SWITCHMOD_PANEL:
|
|||||||
Container@MOD_CONTAINER:
|
Container@MOD_CONTAINER:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 72
|
Y: 72
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
RGBASprite@MOD_ICON:
|
RGBASprite@MOD_ICON:
|
||||||
Y: 4
|
Y: 4
|
||||||
@@ -128,35 +128,35 @@ Background@CONNECTION_SWITCHMOD_PANEL:
|
|||||||
Label@MOD_TITLE:
|
Label@MOD_TITLE:
|
||||||
X: 37
|
X: 37
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 37
|
Width: PARENT_WIDTH - 37
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Left
|
Align: Left
|
||||||
Label@MOD_VERSION:
|
Label@MOD_VERSION:
|
||||||
X: 37
|
X: 37
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT - 37
|
Width: PARENT_WIDTH - 37
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Left
|
Align: Left
|
||||||
Label@DESC2:
|
Label@DESC2:
|
||||||
Y: 111
|
Y: 111
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-connection-switchmod-panel-desc2
|
Text: label-connection-switchmod-panel-desc2
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@SWITCH_BUTTON:
|
Button@SWITCH_BUTTON:
|
||||||
X: PARENT_RIGHT - 430
|
X: PARENT_WIDTH - 430
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-connection-switchmod-panel-switch
|
Text: button-connection-switchmod-panel-switch
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: return
|
Key: return
|
||||||
Button@ABORT_BUTTON:
|
Button@ABORT_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-connection-switchmod-panel-abort
|
Text: button-connection-switchmod-panel-abort
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Background@CREDITS_PANEL:
|
Background@CREDITS_PANEL:
|
||||||
Logic: CreditsLogic
|
Logic: CreditsLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 410
|
Width: 410
|
||||||
Height: 500
|
Height: 500
|
||||||
Children:
|
Children:
|
||||||
Label@CREDITS_TITLE:
|
Label@CREDITS_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 21
|
Y: 21
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -16,7 +16,7 @@ Background@CREDITS_PANEL:
|
|||||||
Visible: False
|
Visible: False
|
||||||
X: 20
|
X: 20
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Button@MOD_TAB:
|
Button@MOD_TAB:
|
||||||
@@ -32,19 +32,19 @@ Background@CREDITS_PANEL:
|
|||||||
ScrollPanel@CREDITS_DISPLAY:
|
ScrollPanel@CREDITS_DISPLAY:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 395
|
Height: 395
|
||||||
TopBottomSpacing: 8
|
TopBottomSpacing: 8
|
||||||
Children:
|
Children:
|
||||||
Label@CREDITS_TEMPLATE:
|
Label@CREDITS_TEMPLATE:
|
||||||
X: 8
|
X: 8
|
||||||
Width: PARENT_RIGHT - 24 - 2 * 8
|
Width: PARENT_WIDTH - 24 - 2 * 8
|
||||||
Height: 16
|
Height: 16
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
WordWrap: true
|
WordWrap: true
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ ScrollPanel@LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -11,11 +11,11 @@ ScrollPanel@LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -23,14 +23,14 @@ ScrollPanel@LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|
||||||
ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
||||||
Width: DROPDOWN_WIDTH
|
Width: DROPDOWN_WIDTH
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -38,7 +38,7 @@ ScrollPanel@PLAYERACTION_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Left
|
Align: Left
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ ScrollPanel@TEAM_DROPDOWN_TEMPLATE:
|
|||||||
Width: DROPDOWN_WIDTH
|
Width: DROPDOWN_WIDTH
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -54,7 +54,7 @@ ScrollPanel@TEAM_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 0
|
X: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|
||||||
@@ -62,7 +62,7 @@ ScrollPanel@SPAWN_DROPDOWN_TEMPLATE:
|
|||||||
Width: DROPDOWN_WIDTH
|
Width: DROPDOWN_WIDTH
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -70,7 +70,7 @@ ScrollPanel@SPAWN_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 0
|
X: 0
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ ScrollPanel@SPECTATOR_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: observer-scrollheader
|
Background: observer-scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -90,12 +90,12 @@ ScrollPanel@SPECTATOR_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 10
|
Height: 10
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Background: observer-scrollitem
|
Background: observer-scrollitem
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -108,12 +108,12 @@ ScrollPanel@SPECTATOR_DROPDOWN_TEMPLATE:
|
|||||||
Height: 16
|
Height: 16
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 40
|
X: 40
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
Label@NOFLAG_LABEL:
|
Label@NOFLAG_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
|
|
||||||
@@ -125,7 +125,7 @@ ScrollPanel@SPECTATOR_LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: observer-scrollitem
|
Background: observer-scrollitem
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -133,12 +133,12 @@ ScrollPanel@SPECTATOR_LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 10
|
Height: 10
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Background: observer-scrollitem
|
Background: observer-scrollitem
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -146,7 +146,7 @@ ScrollPanel@SPECTATOR_LABEL_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|
||||||
ScrollPanel@NEWS_PANEL:
|
ScrollPanel@NEWS_PANEL:
|
||||||
@@ -158,27 +158,27 @@ ScrollPanel@NEWS_PANEL:
|
|||||||
Container@NEWS_ITEM_TEMPLATE:
|
Container@NEWS_ITEM_TEMPLATE:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 45
|
Height: 45
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@AUTHOR_DATETIME:
|
Label@AUTHOR_DATETIME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 15
|
Height: 15
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@CONTENT:
|
Label@CONTENT:
|
||||||
Y: 45
|
Y: 45
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Label@NEWS_STATUS:
|
Label@NEWS_STATUS:
|
||||||
X: 80
|
X: 80
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT - 80 - 80 - 24
|
Width: PARENT_WIDTH - 80 - 80 - 24
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
VAlign: Middle
|
VAlign: Middle
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Background@NEW_MAP_BG:
|
Background@NEW_MAP_BG:
|
||||||
Logic: NewMapLogic
|
Logic: NewMapLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 300
|
Width: 300
|
||||||
Height: 185
|
Height: 185
|
||||||
Children:
|
Children:
|
||||||
@@ -57,7 +57,7 @@ Background@NEW_MAP_BG:
|
|||||||
Type: Integer
|
Type: Integer
|
||||||
Button@CREATE_BUTTON:
|
Button@CREATE_BUTTON:
|
||||||
X: 30
|
X: 30
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-new-map-bg-create
|
Text: button-new-map-bg-create
|
||||||
@@ -65,7 +65,7 @@ Background@NEW_MAP_BG:
|
|||||||
Key: return
|
Key: return
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: 160
|
X: 160
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
@@ -74,13 +74,13 @@ Background@NEW_MAP_BG:
|
|||||||
|
|
||||||
Background@SAVE_MAP_PANEL:
|
Background@SAVE_MAP_PANEL:
|
||||||
Logic: SaveMapLogic
|
Logic: SaveMapLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 350
|
Width: 350
|
||||||
Height: 300
|
Height: 300
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL_TITLE:
|
Label@LABEL_TITLE:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: 250
|
Width: 250
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -158,14 +158,14 @@ Background@SAVE_MAP_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Button@SAVE_BUTTON:
|
Button@SAVE_BUTTON:
|
||||||
X: 80
|
X: 80
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-save-map-panel
|
Text: button-save-map-panel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: 210
|
X: 210
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
@@ -180,7 +180,7 @@ ScrollPanel@MAP_SAVE_VISIBILITY_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Checkbox@VISIBILITY_TEMPLATE:
|
Checkbox@VISIBILITY_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
|
|
||||||
@@ -212,13 +212,13 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
LogicKeyListener@OVERLAY_KEYHANDLER:
|
LogicKeyListener@OVERLAY_KEYHANDLER:
|
||||||
Container@PERF_ROOT:
|
Container@PERF_ROOT:
|
||||||
EditorViewportController@MAP_EDITOR:
|
EditorViewportController@MAP_EDITOR:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
ViewportController:
|
ViewportController:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
IgnoreMouseOver: True
|
IgnoreMouseOver: True
|
||||||
ZoomInKey: ZoomIn
|
ZoomInKey: ZoomIn
|
||||||
ZoomOutKey: ZoomOut
|
ZoomOutKey: ZoomOut
|
||||||
@@ -234,7 +234,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
BookmarkRestoreKeyPrefix: MapBookmarkRestore
|
BookmarkRestoreKeyPrefix: MapBookmarkRestore
|
||||||
BookmarkKeyCount: 4
|
BookmarkKeyCount: 4
|
||||||
Background@RADAR_BG:
|
Background@RADAR_BG:
|
||||||
X: WINDOW_RIGHT - 325
|
X: WINDOW_WIDTH - 325
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: 320
|
Width: 320
|
||||||
Height: 320
|
Height: 320
|
||||||
@@ -242,18 +242,18 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Radar@INGAME_RADAR:
|
Radar@INGAME_RADAR:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 19
|
Width: PARENT_WIDTH - 19
|
||||||
Height: PARENT_BOTTOM - 19
|
Height: PARENT_HEIGHT - 19
|
||||||
Background@TOOLS_BG:
|
Background@TOOLS_BG:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 330
|
Y: 330
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 422
|
Height: WINDOW_HEIGHT - 422
|
||||||
Container@TILE_WIDGETS:
|
Container@TILE_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 354
|
Y: 354
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 458
|
Height: WINDOW_HEIGHT - 458
|
||||||
Logic: TileSelectorLogic
|
Logic: TileSelectorLogic
|
||||||
Children:
|
Children:
|
||||||
Label@SEARCH_LABEL:
|
Label@SEARCH_LABEL:
|
||||||
@@ -266,7 +266,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TextField@SEARCH_TEXTFIELD:
|
TextField@SEARCH_TEXTFIELD:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 70
|
Width: PARENT_WIDTH - 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@CATEGORIES_LABEL:
|
Label@CATEGORIES_LABEL:
|
||||||
Y: 36
|
Y: 36
|
||||||
@@ -278,38 +278,38 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
DropDownButton@CATEGORIES_DROPDOWN:
|
DropDownButton@CATEGORIES_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT - 70
|
Width: PARENT_WIDTH - 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@TILETEMPLATE_LIST:
|
ScrollPanel@TILETEMPLATE_LIST:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 58
|
Y: 58
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: PARENT_BOTTOM - 55
|
Height: PARENT_HEIGHT - 55
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TILEPREVIEW_TEMPLATE:
|
ScrollItem@TILEPREVIEW_TEMPLATE:
|
||||||
Visible: false
|
Visible: false
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Children:
|
Children:
|
||||||
TerrainTemplatePreview@TILE_PREVIEW:
|
TerrainTemplatePreview@TILE_PREVIEW:
|
||||||
X: 4
|
X: 4
|
||||||
Y: 4
|
Y: 4
|
||||||
Container@LAYER_WIDGETS:
|
Container@LAYER_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 354
|
Y: 354
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 458
|
Height: WINDOW_HEIGHT - 458
|
||||||
Visible: false
|
Visible: false
|
||||||
Logic: LayerSelectorLogic
|
Logic: LayerSelectorLogic
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@LAYERTEMPLATE_LIST:
|
ScrollPanel@LAYERTEMPLATE_LIST:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: PARENT_BOTTOM - 7
|
Height: PARENT_HEIGHT - 7
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Children:
|
Children:
|
||||||
@@ -323,10 +323,10 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Y: 4
|
Y: 4
|
||||||
Visible: false
|
Visible: false
|
||||||
Container@ACTOR_WIDGETS:
|
Container@ACTOR_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 354
|
Y: 354
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 458
|
Height: WINDOW_HEIGHT - 458
|
||||||
Visible: false
|
Visible: false
|
||||||
Logic: ActorSelectorLogic
|
Logic: ActorSelectorLogic
|
||||||
Children:
|
Children:
|
||||||
@@ -340,7 +340,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TextField@SEARCH_TEXTFIELD:
|
TextField@SEARCH_TEXTFIELD:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 70
|
Width: PARENT_WIDTH - 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@CATEGORIES_LABEL:
|
Label@CATEGORIES_LABEL:
|
||||||
Y: 36
|
Y: 36
|
||||||
@@ -352,7 +352,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
DropDownButton@CATEGORIES_DROPDOWN:
|
DropDownButton@CATEGORIES_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT - 70
|
Width: PARENT_WIDTH - 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@OWNERS_LABEL:
|
Label@OWNERS_LABEL:
|
||||||
@@ -365,20 +365,20 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
DropDownButton@OWNERS_DROPDOWN:
|
DropDownButton@OWNERS_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 58
|
Y: 58
|
||||||
Width: PARENT_RIGHT - 70
|
Width: PARENT_WIDTH - 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@ACTORTEMPLATE_LIST:
|
ScrollPanel@ACTORTEMPLATE_LIST:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 82
|
Y: 82
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: PARENT_BOTTOM - 79
|
Height: PARENT_HEIGHT - 79
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@ACTORPREVIEW_TEMPLATE:
|
ScrollItem@ACTORPREVIEW_TEMPLATE:
|
||||||
Visible: false
|
Visible: false
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
@@ -388,10 +388,10 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Y: 4
|
Y: 4
|
||||||
Visible: true
|
Visible: true
|
||||||
Container@TOOLS_WIDGETS:
|
Container@TOOLS_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 354
|
Y: 354
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 458
|
Height: WINDOW_HEIGHT - 458
|
||||||
Visible: false
|
Visible: false
|
||||||
Logic: MapToolsLogic
|
Logic: MapToolsLogic
|
||||||
Children:
|
Children:
|
||||||
@@ -405,21 +405,21 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
DropDownButton@TOOLS_DROPDOWN:
|
DropDownButton@TOOLS_DROPDOWN:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 70
|
Width: PARENT_WIDTH - 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@MARKER_TOOL_PANEL:
|
Background@MARKER_TOOL_PANEL:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: WINDOW_BOTTOM - 490
|
Height: WINDOW_HEIGHT - 490
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Logic: MapMarkerTilesLogic
|
Logic: MapMarkerTilesLogic
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@TILE_COLOR_PANEL:
|
ScrollPanel@TILE_COLOR_PANEL:
|
||||||
X: 6
|
X: 6
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 19
|
Width: PARENT_WIDTH - 19
|
||||||
Height: 31
|
Height: 31
|
||||||
TopBottomSpacing: 1
|
TopBottomSpacing: 1
|
||||||
ItemSpacing: 1
|
ItemSpacing: 1
|
||||||
@@ -542,18 +542,18 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Visible: false
|
Visible: false
|
||||||
Container@HISTORY_WIDGETS:
|
Container@HISTORY_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 354
|
Y: 354
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 458
|
Height: WINDOW_HEIGHT - 458
|
||||||
Logic: HistoryLogLogic
|
Logic: HistoryLogLogic
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@HISTORY_LIST:
|
ScrollPanel@HISTORY_LIST:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: PARENT_BOTTOM - 7
|
Height: PARENT_HEIGHT - 7
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
@@ -561,7 +561,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
ScrollItem@HISTORY_TEMPLATE:
|
ScrollItem@HISTORY_TEMPLATE:
|
||||||
X: 4
|
X: 4
|
||||||
Visible: false
|
Visible: false
|
||||||
Width: PARENT_RIGHT - 31
|
Width: PARENT_WIDTH - 31
|
||||||
Height: 25
|
Height: 25
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
TextColor: ffffff
|
TextColor: ffffff
|
||||||
@@ -569,26 +569,26 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Left
|
Align: Left
|
||||||
Container@SELECT_WIDGETS:
|
Container@SELECT_WIDGETS:
|
||||||
X: WINDOW_RIGHT - 320
|
X: WINDOW_WIDTH - 320
|
||||||
Y: 354
|
Y: 354
|
||||||
Width: 310
|
Width: 310
|
||||||
Height: WINDOW_BOTTOM - 458
|
Height: WINDOW_HEIGHT - 458
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Background@AREA_EDIT_PANEL:
|
Background@AREA_EDIT_PANEL:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: PARENT_BOTTOM - 7
|
Height: PARENT_HEIGHT - 7
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@AREA_EDIT_TITLE:
|
Label@AREA_EDIT_TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -604,24 +604,24 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Checkbox@COPY_FILTER_TERRAIN_CHECKBOX:
|
Checkbox@COPY_FILTER_TERRAIN_CHECKBOX:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-filter-terrain
|
Text: label-filter-terrain
|
||||||
Checkbox@COPY_FILTER_RESOURCES_CHECKBOX:
|
Checkbox@COPY_FILTER_RESOURCES_CHECKBOX:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 95
|
Y: 95
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-filter-resources
|
Text: label-filter-resources
|
||||||
Checkbox@COPY_FILTER_ACTORS_CHECKBOX:
|
Checkbox@COPY_FILTER_ACTORS_CHECKBOX:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 120
|
Y: 120
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-filter-actors
|
Text: label-filter-actors
|
||||||
Label@AREA_INFO_TITLE:
|
Label@AREA_INFO_TITLE:
|
||||||
Y: 139
|
Y: 139
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -664,13 +664,13 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Background@ACTOR_EDIT_PANEL:
|
Background@ACTOR_EDIT_PANEL:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: PARENT_BOTTOM - 7
|
Height: PARENT_HEIGHT - 7
|
||||||
Background: scrollpanel-bg
|
Background: scrollpanel-bg
|
||||||
Children:
|
Children:
|
||||||
Label@ACTOR_TYPE_LABEL:
|
Label@ACTOR_TYPE_LABEL:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -694,19 +694,19 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
TextColor: FF0000
|
TextColor: FF0000
|
||||||
Container@ACTOR_INIT_CONTAINER:
|
Container@ACTOR_INIT_CONTAINER:
|
||||||
Y: 73
|
Y: 73
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_OPTION_TEMPLATE:
|
Container@CHECKBOX_OPTION_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 22
|
Height: 22
|
||||||
Children:
|
Children:
|
||||||
Checkbox@OPTION:
|
Checkbox@OPTION:
|
||||||
X: 60
|
X: 60
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 100
|
Width: PARENT_WIDTH - 100
|
||||||
Height: 20
|
Height: 20
|
||||||
Container@SLIDER_OPTION_TEMPLATE:
|
Container@SLIDER_OPTION_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 22
|
Height: 22
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
@@ -726,7 +726,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Height: 20
|
Height: 20
|
||||||
Type: Integer
|
Type: Integer
|
||||||
Container@DROPDOWN_OPTION_TEMPLATE:
|
Container@DROPDOWN_OPTION_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 27
|
Height: 27
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
@@ -763,7 +763,7 @@ Container@EDITOR_WORLD_ROOT:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MAP_EDITOR_TAB_CONTAINER:
|
Container@MAP_EDITOR_TAB_CONTAINER:
|
||||||
Logic: MapEditorTabsLogic
|
Logic: MapEditorTabsLogic
|
||||||
X: WINDOW_RIGHT - 311
|
X: WINDOW_WIDTH - 311
|
||||||
Y: 339
|
Y: 339
|
||||||
Width: 292
|
Width: 292
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -931,7 +931,7 @@ ScrollPanel@CATEGORY_FILTER_PANEL:
|
|||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Container@SELECT_CATEGORIES_BUTTONS:
|
Container@SELECT_CATEGORIES_BUTTONS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Button@SELECT_ALL:
|
Button@SELECT_ALL:
|
||||||
@@ -950,7 +950,7 @@ ScrollPanel@CATEGORY_FILTER_PANEL:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Checkbox@CATEGORY_TEMPLATE:
|
Checkbox@CATEGORY_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: false
|
Visible: false
|
||||||
|
|
||||||
@@ -963,6 +963,6 @@ ScrollPanel@OVERLAY_PANEL:
|
|||||||
Checkbox@CATEGORY_TEMPLATE:
|
Checkbox@CATEGORY_TEMPLATE:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: false
|
Visible: false
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Background@GAMESAVE_BROWSER_PANEL:
|
Background@GAMESAVE_BROWSER_PANEL:
|
||||||
Logic: GameSaveBrowserLogic
|
Logic: GameSaveBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 700
|
Width: 700
|
||||||
Height: 500
|
Height: 500
|
||||||
Children:
|
Children:
|
||||||
Label@LOAD_TITLE:
|
Label@LOAD_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 16
|
Y: 16
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -14,7 +14,7 @@ Background@GAMESAVE_BROWSER_PANEL:
|
|||||||
Text: label-gamesave-browser-panel-load-title
|
Text: label-gamesave-browser-panel-load-title
|
||||||
Visible: False
|
Visible: False
|
||||||
Label@SAVE_TITLE:
|
Label@SAVE_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 16
|
Y: 16
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -24,22 +24,22 @@ Background@GAMESAVE_BROWSER_PANEL:
|
|||||||
ScrollPanel@GAME_LIST:
|
ScrollPanel@GAME_LIST:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 45
|
Y: 45
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM - 97
|
Height: PARENT_HEIGHT - 97
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@NEW_TEMPLATE:
|
ScrollItem@NEW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-gamesave-browser-panel-title
|
Text: label-gamesave-browser-panel-title
|
||||||
ScrollItem@GAME_TEMPLATE:
|
ScrollItem@GAME_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -47,52 +47,52 @@ Background@GAMESAVE_BROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 200 - 10
|
Width: PARENT_WIDTH - 200 - 10
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: GAMESAVE_TOOLTIP_CONTAINER
|
TooltipContainer: GAMESAVE_TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@DATE:
|
Label@DATE:
|
||||||
X: PARENT_RIGHT - WIDTH - 10
|
X: PARENT_WIDTH - WIDTH - 10
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Right
|
Align: Right
|
||||||
Container@SAVE_WIDGETS:
|
Container@SAVE_WIDGETS:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 77
|
Y: PARENT_HEIGHT - 77
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 32
|
Height: 32
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
TextField@SAVE_TEXTFIELD:
|
TextField@SAVE_TEXTFIELD:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Type: Filename
|
Type: Filename
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DELETE_ALL_BUTTON:
|
Button@DELETE_ALL_BUTTON:
|
||||||
X: PARENT_RIGHT - 350 - WIDTH
|
X: PARENT_WIDTH - 350 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-gamesave-browser-panel-delete-all
|
Text: button-gamesave-browser-panel-delete-all
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DELETE_BUTTON:
|
Button@DELETE_BUTTON:
|
||||||
X: PARENT_RIGHT - 240 - WIDTH
|
X: PARENT_WIDTH - 240 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-gamesave-browser-panel-delete
|
Text: button-gamesave-browser-panel-delete
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: Delete
|
Key: Delete
|
||||||
Button@RENAME_BUTTON:
|
Button@RENAME_BUTTON:
|
||||||
X: PARENT_RIGHT - 130 - WIDTH
|
X: PARENT_WIDTH - 130 - WIDTH
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-gamesave-browser-panel-rename
|
Text: button-gamesave-browser-panel-rename
|
||||||
@@ -100,8 +100,8 @@ Background@GAMESAVE_BROWSER_PANEL:
|
|||||||
Key: F2
|
Key: F2
|
||||||
Button@LOAD_BUTTON:
|
Button@LOAD_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-gamesave-browser-panel-load
|
Text: button-gamesave-browser-panel-load
|
||||||
@@ -109,8 +109,8 @@ Background@GAMESAVE_BROWSER_PANEL:
|
|||||||
Visible: False
|
Visible: False
|
||||||
Button@SAVE_BUTTON:
|
Button@SAVE_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-gamesave-browser-panel-save
|
Text: button-gamesave-browser-panel-save
|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
Container@GAMESAVE_LOADING_SCREEN:
|
Container@GAMESAVE_LOADING_SCREEN:
|
||||||
Logic: GameSaveLoadingLogic
|
Logic: GameSaveLoadingLogic
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
LogicKeyListener@CANCEL_HANDLER:
|
LogicKeyListener@CANCEL_HANDLER:
|
||||||
Background@STRIPE:
|
Background@STRIPE:
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: 256
|
Height: 256
|
||||||
Background: loadscreen-stripe
|
Background: loadscreen-stripe
|
||||||
Image@LOGO:
|
Image@LOGO:
|
||||||
X: (WINDOW_RIGHT - 256) / 2
|
X: (WINDOW_WIDTH - 256) / 2
|
||||||
Y: (WINDOW_BOTTOM - 256) / 2
|
Y: (WINDOW_HEIGHT - 256) / 2
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: logo
|
ImageName: logo
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Y: 3 * WINDOW_BOTTOM / 4 - 29
|
Y: 3 * WINDOW_HEIGHT / 4 - 29
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-gamesave-loading-screen-title
|
Text: label-gamesave-loading-screen-title
|
||||||
ProgressBar@PROGRESS:
|
ProgressBar@PROGRESS:
|
||||||
X: (WINDOW_RIGHT - 500) / 2
|
X: (WINDOW_WIDTH - 500) / 2
|
||||||
Y: 3 * WINDOW_BOTTOM / 4
|
Y: 3 * WINDOW_HEIGHT / 4
|
||||||
Width: 500
|
Width: 500
|
||||||
Height: 20
|
Height: 20
|
||||||
Label@DESC:
|
Label@DESC:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Y: 3 * WINDOW_BOTTOM / 4 + 19
|
Y: 3 * WINDOW_HEIGHT / 4 + 19
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@CHAT_PANEL:
|
Container@CHAT_PANEL:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: WINDOW_BOTTOM - HEIGHT - 56
|
Y: WINDOW_HEIGHT - HEIGHT - 56
|
||||||
Width: 550
|
Width: 550
|
||||||
Height: 194
|
Height: 194
|
||||||
Logic: IngameChatLogic
|
Logic: IngameChatLogic
|
||||||
@@ -13,21 +13,21 @@ Container@CHAT_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LogicKeyListener@OPEN_CHAT_KEY_LISTENER:
|
LogicKeyListener@OPEN_CHAT_KEY_LISTENER:
|
||||||
Container@CHAT_OVERLAY:
|
Container@CHAT_OVERLAY:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
TextNotificationsDisplay@CHAT_DISPLAY:
|
TextNotificationsDisplay@CHAT_DISPLAY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
DisplayDurationMs: 10000
|
DisplayDurationMs: 10000
|
||||||
BottomSpacing: 3
|
BottomSpacing: 3
|
||||||
Container@CHAT_CHROME:
|
Container@CHAT_CHROME:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Button@CHAT_MODE:
|
Button@CHAT_MODE:
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-chat-chrome-mode.label
|
Text: button-chat-chrome-mode.label
|
||||||
@@ -37,12 +37,12 @@ Container@CHAT_PANEL:
|
|||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TextField@CHAT_TEXTFIELD:
|
TextField@CHAT_TEXTFIELD:
|
||||||
X: 55
|
X: 55
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 466
|
Width: 466
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@CHAT_CLOSE:
|
Button@CHAT_CLOSE:
|
||||||
X: 526
|
X: 526
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 24
|
Width: 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
@@ -53,7 +53,7 @@ Container@CHAT_PANEL:
|
|||||||
Y: 8
|
Y: 8
|
||||||
LogicKeyListener@KEY_LISTENER:
|
LogicKeyListener@KEY_LISTENER:
|
||||||
ScrollPanel@CHAT_SCROLLPANEL:
|
ScrollPanel@CHAT_SCROLLPANEL:
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 30
|
Y: PARENT_HEIGHT - HEIGHT - 30
|
||||||
Width: 550
|
Width: 550
|
||||||
Height: 164
|
Height: 164
|
||||||
TopBottomSpacing: 3
|
TopBottomSpacing: 3
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
Container@HPF_OVERLAY:
|
Container@HPF_OVERLAY:
|
||||||
Logic: HierarchicalPathFinderOverlayLogic
|
Logic: HierarchicalPathFinderOverlayLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 60
|
Height: 60
|
||||||
Children:
|
Children:
|
||||||
DropDownButton@HPF_OVERLAY_LOCOMOTOR:
|
DropDownButton@HPF_OVERLAY_LOCOMOTOR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-hpf-overlay-locomotor
|
Text: dropdownbutton-hpf-overlay-locomotor
|
||||||
Font: Regular
|
Font: Regular
|
||||||
DropDownButton@HPF_OVERLAY_CHECK:
|
DropDownButton@HPF_OVERLAY_CHECK:
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-hpf-overlay-check
|
Text: dropdownbutton-hpf-overlay-check
|
||||||
Font: Regular
|
Font: Regular
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
Container@DEBUG_PANEL:
|
Container@DEBUG_PANEL:
|
||||||
Logic: DebugMenuLogic
|
Logic: DebugMenuLogic
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: label-debug-panel-title
|
Text: label-debug-panel-title
|
||||||
Align: Center
|
Align: Center
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Checkbox@INSTANT_BUILD:
|
Checkbox@INSTANT_BUILD:
|
||||||
X: 45
|
X: 45
|
||||||
@@ -86,7 +86,7 @@ Container@DEBUG_PANEL:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Text: label-debug-panel-visualizations-title
|
Text: label-debug-panel-visualizations-title
|
||||||
Align: Center
|
Align: Center
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Checkbox@SHOW_UNIT_PATHS:
|
Checkbox@SHOW_UNIT_PATHS:
|
||||||
X: 45
|
X: 45
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Container@DEBUG_WIDGETS:
|
Container@DEBUG_WIDGETS:
|
||||||
Logic: DebugLogic
|
Logic: DebugLogic
|
||||||
X: WINDOW_RIGHT / 2 - WIDTH
|
X: WINDOW_WIDTH / 2 - WIDTH
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 55
|
Height: 55
|
||||||
Children:
|
Children:
|
||||||
Label@DEBUG_TEXT:
|
Label@DEBUG_TEXT:
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 15
|
Height: 15
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
Background@FMVPLAYER:
|
Background@FMVPLAYER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Background: dialog5
|
Background: dialog5
|
||||||
Children:
|
Children:
|
||||||
VideoPlayer@PLAYER:
|
VideoPlayer@PLAYER:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
|
|||||||
@@ -1,62 +1,62 @@
|
|||||||
Container@LOBBY_OPTIONS_PANEL:
|
Container@LOBBY_OPTIONS_PANEL:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel:
|
ScrollPanel:
|
||||||
Logic: LobbyOptionsLogic
|
Logic: LobbyOptionsLogic
|
||||||
X: 20
|
X: 20
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 365
|
Height: 365
|
||||||
Children:
|
Children:
|
||||||
Container@LOBBY_OPTIONS:
|
Container@LOBBY_OPTIONS:
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_ROW_TEMPLATE:
|
Container@CHECKBOX_ROW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Checkbox@A:
|
Checkbox@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@B:
|
Checkbox@B:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Container@DROPDOWN_ROW_TEMPLATE:
|
Container@DROPDOWN_ROW_TEMPLATE:
|
||||||
Height: 60
|
Height: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@A_DESC:
|
LabelForInput@A_DESC:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: A
|
For: A
|
||||||
DropDownButton@A:
|
DropDownButton@A:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@B_DESC:
|
LabelForInput@B_DESC:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: B
|
For: B
|
||||||
DropDownButton@B:
|
DropDownButton@B:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Visible: False
|
Visible: False
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
Container@GAME_INFO_PANEL:
|
Container@GAME_INFO_PANEL:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 580
|
Width: 580
|
||||||
Height: 500
|
Height: 500
|
||||||
Logic: GameInfoLogic
|
Logic: GameInfoLogic
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
Background@BACKGROUND:
|
Background@BACKGROUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@TAB_CONTAINER_2:
|
Container@TAB_CONTAINER_2:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Width: 280
|
Width: 280
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
@@ -33,7 +33,7 @@ Container@GAME_INFO_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@TAB_CONTAINER_3:
|
Container@TAB_CONTAINER_3:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Width: 360
|
Width: 360
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
@@ -56,7 +56,7 @@ Container@GAME_INFO_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@TAB_CONTAINER_4:
|
Container@TAB_CONTAINER_4:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Width: 480
|
Width: 480
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
@@ -85,7 +85,7 @@ Container@GAME_INFO_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@TAB_CONTAINER_5:
|
Container@TAB_CONTAINER_5:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Width: 480
|
Width: 480
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
@@ -123,20 +123,20 @@ Container@GAME_INFO_PANEL:
|
|||||||
Y: 65
|
Y: 65
|
||||||
Container@MAP_PANEL:
|
Container@MAP_PANEL:
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@OBJECTIVES_PANEL:
|
Container@OBJECTIVES_PANEL:
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Container@DEBUG_PANEL:
|
Container@DEBUG_PANEL:
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@CHAT_PANEL:
|
Container@CHAT_PANEL:
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@LOBBY_OPTIONS_PANEL:
|
Container@LOBBY_OPTIONS_PANEL:
|
||||||
Y: 65
|
Y: 65
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
Container@MAP_PANEL:
|
Container@MAP_PANEL:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: GameInfoBriefingLogic
|
Logic: GameInfoBriefingLogic
|
||||||
Children:
|
Children:
|
||||||
Background@PREVIEW_BG:
|
Background@PREVIEW_BG:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 362
|
Width: 362
|
||||||
Height: 202
|
Height: 202
|
||||||
@@ -13,18 +13,18 @@ Container@MAP_PANEL:
|
|||||||
MapPreview@MAP_PREVIEW:
|
MapPreview@MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
IgnoreMouseOver: True
|
IgnoreMouseOver: True
|
||||||
IgnoreMouseInput: True
|
IgnoreMouseInput: True
|
||||||
ShowSpawnPoints: False
|
ShowSpawnPoints: False
|
||||||
ScrollPanel@MAP_DESCRIPTION_PANEL:
|
ScrollPanel@MAP_DESCRIPTION_PANEL:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 232
|
Y: 232
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 153
|
Height: 153
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_DESCRIPTION:
|
Label@MAP_DESCRIPTION:
|
||||||
X: 4
|
X: 4
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 32
|
Width: PARENT_WIDTH - 32
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Container@CHAT_CONTAINER:
|
Container@CHAT_CONTAINER:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 105
|
Height: PARENT_HEIGHT - 105
|
||||||
Logic: IngameChatLogic
|
Logic: IngameChatLogic
|
||||||
Templates:
|
Templates:
|
||||||
Chat: CHAT_LINE_TEMPLATE
|
Chat: CHAT_LINE_TEMPLATE
|
||||||
@@ -10,11 +10,11 @@ Container@CHAT_CONTAINER:
|
|||||||
Children:
|
Children:
|
||||||
Container@CHAT_CHROME:
|
Container@CHAT_CHROME:
|
||||||
X: 20
|
X: 20
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Button@CHAT_MODE:
|
Button@CHAT_MODE:
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-chat-chrome-mode.label
|
Text: button-chat-chrome-mode.label
|
||||||
@@ -24,11 +24,11 @@ Container@CHAT_CONTAINER:
|
|||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TextField@CHAT_TEXTFIELD:
|
TextField@CHAT_TEXTFIELD:
|
||||||
X: 55
|
X: 55
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: PARENT_RIGHT - 55
|
Width: PARENT_WIDTH - 55
|
||||||
Height: 25
|
Height: 25
|
||||||
ScrollPanel@CHAT_SCROLLPANEL:
|
ScrollPanel@CHAT_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
TopBottomSpacing: 3
|
TopBottomSpacing: 3
|
||||||
ItemSpacing: 2
|
ItemSpacing: 2
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@MISSION_OBJECTIVES:
|
Container@MISSION_OBJECTIVES:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: GameInfoObjectivesLogic
|
Logic: GameInfoObjectivesLogic
|
||||||
Children:
|
Children:
|
||||||
Label@MISSION:
|
Label@MISSION:
|
||||||
@@ -13,7 +13,7 @@ Container@MISSION_OBJECTIVES:
|
|||||||
Label@MISSION_STATUS:
|
Label@MISSION_STATUS:
|
||||||
X: 100
|
X: 100
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: PARENT_RIGHT - 120
|
Width: PARENT_WIDTH - 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
ScrollPanel@OBJECTIVES_PANEL:
|
ScrollPanel@OBJECTIVES_PANEL:
|
||||||
@@ -25,19 +25,19 @@ Container@MISSION_OBJECTIVES:
|
|||||||
ItemSpacing: 15
|
ItemSpacing: 15
|
||||||
Children:
|
Children:
|
||||||
Container@OBJECTIVE_TEMPLATE:
|
Container@OBJECTIVE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Label@OBJECTIVE_TYPE:
|
Label@OBJECTIVE_TYPE:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Checkbox@OBJECTIVE_STATUS:
|
Checkbox@OBJECTIVE_STATUS:
|
||||||
X: 90
|
X: 90
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: PARENT_RIGHT - 100
|
Width: PARENT_WIDTH - 100
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Disabled: True
|
Disabled: True
|
||||||
TextColorDisabled: FFFFFF
|
TextColorDisabled: FFFFFF
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@SCRIPT_ERROR_PANEL:
|
Container@SCRIPT_ERROR_PANEL:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: ScriptErrorLogic
|
Logic: ScriptErrorLogic
|
||||||
Children:
|
Children:
|
||||||
Label@DESCA:
|
Label@DESCA:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -14,7 +14,7 @@ Container@SCRIPT_ERROR_PANEL:
|
|||||||
Label@DESCB:
|
Label@DESCB:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 46
|
Y: 46
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -22,7 +22,7 @@ Container@SCRIPT_ERROR_PANEL:
|
|||||||
Label@DESCC:
|
Label@DESCC:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 66
|
Y: 66
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -30,10 +30,10 @@ Container@SCRIPT_ERROR_PANEL:
|
|||||||
ScrollPanel@SCRIPT_ERROR_MESSAGE_PANEL:
|
ScrollPanel@SCRIPT_ERROR_MESSAGE_PANEL:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 96
|
Y: 96
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 300
|
Height: 300
|
||||||
Children:
|
Children:
|
||||||
Label@SCRIPT_ERROR_MESSAGE:
|
Label@SCRIPT_ERROR_MESSAGE:
|
||||||
X: 4
|
X: 4
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 32
|
Width: PARENT_WIDTH - 32
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@SKIRMISH_STATS:
|
Container@SKIRMISH_STATS:
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Logic: GameInfoStatsLogic
|
Logic: GameInfoStatsLogic
|
||||||
Children:
|
Children:
|
||||||
Container@OBJECTIVE:
|
Container@OBJECTIVE:
|
||||||
@@ -16,7 +16,7 @@ Container@SKIRMISH_STATS:
|
|||||||
Label@STATS_STATUS:
|
Label@STATS_STATUS:
|
||||||
X: 100
|
X: 100
|
||||||
Y: 22
|
Y: 22
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
Checkbox@STATS_CHECKBOX:
|
Checkbox@STATS_CHECKBOX:
|
||||||
@@ -31,7 +31,7 @@ Container@SKIRMISH_STATS:
|
|||||||
Container@STATS_HEADERS:
|
Container@STATS_HEADERS:
|
||||||
X: 22
|
X: 22
|
||||||
Y: 81
|
Y: 81
|
||||||
Width: PARENT_RIGHT - 44
|
Width: PARENT_WIDTH - 44
|
||||||
Children:
|
Children:
|
||||||
Label@NAME:
|
Label@NAME:
|
||||||
X: 10
|
X: 10
|
||||||
@@ -60,13 +60,13 @@ Container@SKIRMISH_STATS:
|
|||||||
ScrollPanel@PLAYER_LIST:
|
ScrollPanel@PLAYER_LIST:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 105
|
Y: 105
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 280
|
Height: 280
|
||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@TEAM_TEMPLATE:
|
ScrollItem@TEAM_TEMPLATE:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 26
|
Width: PARENT_WIDTH - 26
|
||||||
Height: 20
|
Height: 20
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -84,7 +84,7 @@ Container@SKIRMISH_STATS:
|
|||||||
Height: 20
|
Height: 20
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@PLAYER_TEMPLATE:
|
Container@PLAYER_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 26
|
Width: PARENT_WIDTH - 26
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Children:
|
Children:
|
||||||
@@ -143,7 +143,7 @@ Container@SKIRMISH_STATS:
|
|||||||
X: 7
|
X: 7
|
||||||
Y: 7
|
Y: 7
|
||||||
Container@SPECTATOR_TEMPLATE:
|
Container@SPECTATOR_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 26
|
Width: PARENT_WIDTH - 26
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Container@INGAME_MENU:
|
Container@INGAME_MENU:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Logic: IngameMenuLogic
|
Logic: IngameMenuLogic
|
||||||
Buttons: RESUME, LOAD_GAME, SAVE_GAME, SETTINGS, MUSIC, SURRENDER, RESTART, BACK_TO_EDITOR, ABORT_MISSION, SAVE_MAP, PLAY_MAP, EXIT_EDITOR
|
Buttons: RESUME, LOAD_GAME, SAVE_GAME, SETTINGS, MUSIC, SURRENDER, RESTART, BACK_TO_EDITOR, ABORT_MISSION, SAVE_MAP, PLAY_MAP, EXIT_EDITOR
|
||||||
ButtonStride: 0, 40
|
ButtonStride: 0, 40
|
||||||
@@ -8,17 +8,17 @@ Container@INGAME_MENU:
|
|||||||
Background@BORDER:
|
Background@BORDER:
|
||||||
X: 0 - 15
|
X: 0 - 15
|
||||||
Y: 0 - 15
|
Y: 0 - 15
|
||||||
Width: WINDOW_RIGHT + 30
|
Width: WINDOW_WIDTH + 30
|
||||||
Height: WINDOW_BOTTOM + 30
|
Height: WINDOW_HEIGHT + 30
|
||||||
Background: mainmenu-border
|
Background: mainmenu-border
|
||||||
Image@LOGO:
|
Image@LOGO:
|
||||||
X: WINDOW_RIGHT - 296
|
X: WINDOW_WIDTH - 296
|
||||||
Y: 30
|
Y: 30
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: logo
|
ImageName: logo
|
||||||
Label@VERSION_LABEL:
|
Label@VERSION_LABEL:
|
||||||
Logic: VersionLabelLogic
|
Logic: VersionLabelLogic
|
||||||
X: WINDOW_RIGHT - 296
|
X: WINDOW_WIDTH - 296
|
||||||
Y: 296 - 19
|
Y: 296 - 19
|
||||||
Width: 296 - 20
|
Width: 296 - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -27,13 +27,13 @@ Container@INGAME_MENU:
|
|||||||
Contrast: True
|
Contrast: True
|
||||||
Container@PANEL_ROOT:
|
Container@PANEL_ROOT:
|
||||||
Background@MENU_BUTTONS:
|
Background@MENU_BUTTONS:
|
||||||
X: 13 + (WINDOW_RIGHT - 522) / 4 - WIDTH / 2
|
X: 13 + (WINDOW_WIDTH - 522) / 4 - WIDTH / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 120
|
Height: 120
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL_TITLE:
|
Label@LABEL_TITLE:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 30
|
Height: 30
|
||||||
@@ -41,7 +41,7 @@ Container@INGAME_MENU:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BUTTON_TEMPLATE:
|
Button@BUTTON_TEMPLATE:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ Container@PERF_WIDGETS:
|
|||||||
Logic: PerfDebugLogic
|
Logic: PerfDebugLogic
|
||||||
Children:
|
Children:
|
||||||
Label@PERF_TEXT:
|
Label@PERF_TEXT:
|
||||||
X: WINDOW_RIGHT - 200
|
X: WINDOW_WIDTH - 200
|
||||||
Y: WINDOW_BOTTOM - 69
|
Y: WINDOW_HEIGHT - 69
|
||||||
Width: 170
|
Width: 170
|
||||||
Height: 40
|
Height: 40
|
||||||
Contrast: true
|
Contrast: true
|
||||||
@@ -11,7 +11,7 @@ Container@PERF_WIDGETS:
|
|||||||
ClickThrough: true
|
ClickThrough: true
|
||||||
Background: dialog4
|
Background: dialog4
|
||||||
X: 10
|
X: 10
|
||||||
Y: WINDOW_BOTTOM - HEIGHT - 156
|
Y: WINDOW_HEIGHT - HEIGHT - 156
|
||||||
Width: 210
|
Width: 210
|
||||||
Height: 210
|
Height: 210
|
||||||
Children:
|
Children:
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Container@TRANSIENTS_PANEL:
|
Container@TRANSIENTS_PANEL:
|
||||||
X: 5
|
X: 5
|
||||||
Y: WINDOW_BOTTOM - HEIGHT - 55
|
Y: WINDOW_HEIGHT - HEIGHT - 55
|
||||||
Width: 550
|
Width: 550
|
||||||
Height: 80
|
Height: 80
|
||||||
Logic: IngameTransientNotificationsLogic
|
Logic: IngameTransientNotificationsLogic
|
||||||
Children:
|
Children:
|
||||||
TextNotificationsDisplay@TRANSIENTS_DISPLAY:
|
TextNotificationsDisplay@TRANSIENTS_DISPLAY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
DisplayDurationMs: 4000
|
DisplayDurationMs: 4000
|
||||||
LogLength: 5
|
LogLength: 5
|
||||||
HideOverflow: False
|
HideOverflow: False
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ Container@INGAME_ROOT:
|
|||||||
LogicTicker@DISCONNECT_WATCHER:
|
LogicTicker@DISCONNECT_WATCHER:
|
||||||
Logic: DisconnectWatcherLogic
|
Logic: DisconnectWatcherLogic
|
||||||
Label@MISSION_TEXT:
|
Label@MISSION_TEXT:
|
||||||
X: WINDOW_RIGHT / 2 - 256
|
X: WINDOW_WIDTH / 2 - 256
|
||||||
Y: 23
|
Y: 23
|
||||||
Width: 512
|
Width: 512
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -36,11 +36,11 @@ Container@INGAME_ROOT:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Contrast: true
|
Contrast: true
|
||||||
WorldInteractionController@INTERACTION_CONTROLLER:
|
WorldInteractionController@INTERACTION_CONTROLLER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
ViewportController:
|
ViewportController:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
ZoomInKey: ZoomIn
|
ZoomInKey: ZoomIn
|
||||||
ZoomOutKey: ZoomOut
|
ZoomOutKey: ZoomOut
|
||||||
@@ -56,7 +56,7 @@ Container@INGAME_ROOT:
|
|||||||
BookmarkRestoreKeyPrefix: MapBookmarkRestore
|
BookmarkRestoreKeyPrefix: MapBookmarkRestore
|
||||||
BookmarkKeyCount: 4
|
BookmarkKeyCount: 4
|
||||||
StrategicProgress@STRATEGIC_PROGRESS:
|
StrategicProgress@STRATEGIC_PROGRESS:
|
||||||
X: WINDOW_RIGHT / 2
|
X: WINDOW_WIDTH / 2
|
||||||
Y: 40
|
Y: 40
|
||||||
Container@PLAYER_ROOT:
|
Container@PLAYER_ROOT:
|
||||||
Container@PERF_ROOT:
|
Container@PERF_ROOT:
|
||||||
|
|||||||
@@ -1,44 +1,44 @@
|
|||||||
Background@KICK_CLIENT_DIALOG:
|
Background@KICK_CLIENT_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Logic: KickClientLogic
|
Logic: KickClientLogic
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@TEXTA:
|
Label@TEXTA:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-client-dialog-texta
|
Text: label-kick-client-dialog-texta
|
||||||
Label@TEXTB:
|
Label@TEXTB:
|
||||||
Y: 86
|
Y: 86
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-client-dialog-textb
|
Text: label-kick-client-dialog-textb
|
||||||
Checkbox@PREVENT_REJOINING_CHECKBOX:
|
Checkbox@PREVENT_REJOINING_CHECKBOX:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 120
|
Y: 120
|
||||||
Width: 150
|
Width: 150
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-kick-client-dialog-prevent-rejoining
|
Text: checkbox-kick-client-dialog-prevent-rejoining
|
||||||
Button@OK_BUTTON:
|
Button@OK_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 + 75
|
X: (PARENT_WIDTH - WIDTH) / 2 + 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-kick-client-dialog
|
Text: button-kick-client-dialog
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 - 75
|
X: (PARENT_WIDTH - WIDTH) / 2 - 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -46,33 +46,33 @@ Background@KICK_CLIENT_DIALOG:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
|
|
||||||
Background@KICK_SPECTATORS_DIALOG:
|
Background@KICK_SPECTATORS_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Logic: KickSpectatorsLogic
|
Logic: KickSpectatorsLogic
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-spectators-dialog-title
|
Text: label-kick-spectators-dialog-title
|
||||||
Label@TEXT:
|
Label@TEXT:
|
||||||
Y: 86
|
Y: 86
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@OK_BUTTON:
|
Button@OK_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 + 75
|
X: (PARENT_WIDTH - WIDTH) / 2 + 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-kick-spectators-dialog-ok
|
Text: button-kick-spectators-dialog-ok
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 - 75
|
X: (PARENT_WIDTH - WIDTH) / 2 - 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -80,38 +80,38 @@ Background@KICK_SPECTATORS_DIALOG:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
|
|
||||||
Background@FORCE_START_DIALOG:
|
Background@FORCE_START_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 41
|
Y: 41
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-force-start-dialog-title
|
Text: label-force-start-dialog-title
|
||||||
Label@TEXTA:
|
Label@TEXTA:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-force-start-dialog-texta
|
Text: label-force-start-dialog-texta
|
||||||
Label@TEXTB:
|
Label@TEXTB:
|
||||||
Y: 86
|
Y: 86
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-force-start-dialog-textb
|
Text: label-force-start-dialog-textb
|
||||||
Container@KICK_WARNING:
|
Container@KICK_WARNING:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@KICK_WARNING_A:
|
Label@KICK_WARNING_A:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 107
|
Y: 107
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -119,20 +119,20 @@ Background@FORCE_START_DIALOG:
|
|||||||
Label@KICK_WARNING_B:
|
Label@KICK_WARNING_B:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 124
|
Y: 124
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-kick-warning-b
|
Text: label-kick-warning-b
|
||||||
Button@OK_BUTTON:
|
Button@OK_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 + 75
|
X: (PARENT_WIDTH - WIDTH) / 2 + 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-force-start-dialog-start
|
Text: button-force-start-dialog-start
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2 - 75
|
X: (PARENT_WIDTH - WIDTH) / 2 - 75
|
||||||
Y: 155
|
Y: 155
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|||||||
@@ -1,78 +1,78 @@
|
|||||||
Container@MAP_PREVIEW:
|
Container@MAP_PREVIEW:
|
||||||
Logic: MapPreviewLogic
|
Logic: MapPreviewLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@MAP_LARGE:
|
Container@MAP_LARGE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 174
|
Height: 174
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
MapPreview@MAP_PREVIEW:
|
MapPreview@MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@MAP_TITLE:
|
LabelWithTooltip@MAP_TITLE:
|
||||||
Y: 173
|
Y: 173
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@MAP_SMALL:
|
Container@MAP_SMALL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 142
|
Height: 142
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
MapPreview@MAP_PREVIEW:
|
MapPreview@MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@MAP_TITLE:
|
LabelWithTooltip@MAP_TITLE:
|
||||||
Y: 143
|
Y: 143
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@MAP_AVAILABLE:
|
Container@MAP_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_TYPE:
|
Label@MAP_TYPE:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Label@MAP_AUTHOR:
|
Label@MAP_AUTHOR:
|
||||||
Y: 201
|
Y: 201
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@MAP_INCOMPATIBLE:
|
Container@MAP_INCOMPATIBLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_STATUS_A:
|
Label@MAP_STATUS_A:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -80,18 +80,18 @@ Container@MAP_PREVIEW:
|
|||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Label@MAP_STATUS_B:
|
Label@MAP_STATUS_B:
|
||||||
Y: 201
|
Y: 201
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-incompatible-status-b
|
Text: label-map-incompatible-status-b
|
||||||
Container@MAP_VALIDATING:
|
Container@MAP_VALIDATING:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_STATUS_VALIDATING:
|
Label@MAP_STATUS_VALIDATING:
|
||||||
Y: 174
|
Y: 174
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -99,113 +99,113 @@ Container@MAP_PREVIEW:
|
|||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
ProgressBar@MAP_VALIDATING_BAR:
|
ProgressBar@MAP_VALIDATING_BAR:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Indeterminate: True
|
Indeterminate: True
|
||||||
Container@MAP_DOWNLOAD_AVAILABLE:
|
Container@MAP_DOWNLOAD_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_TYPE:
|
Label@MAP_TYPE:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Label@MAP_AUTHOR:
|
Label@MAP_AUTHOR:
|
||||||
Y: 171
|
Y: 171
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Button@MAP_INSTALL:
|
Button@MAP_INSTALL:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: button-map-download-available-install
|
Text: button-map-download-available-install
|
||||||
Button@MAP_UPDATE:
|
Button@MAP_UPDATE:
|
||||||
Y: 195
|
Y: 195
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: button-map-preview-update
|
Text: button-map-preview-update
|
||||||
Container@MAP_UPDATE_DOWNLOAD_AVAILABLE:
|
Container@MAP_UPDATE_DOWNLOAD_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Button@MAP_INSTALL:
|
Button@MAP_INSTALL:
|
||||||
Y: 166
|
Y: 166
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: button-map-update-download-available-install
|
Text: button-map-update-download-available-install
|
||||||
Label@MAP_SEARCHING:
|
Label@MAP_SEARCHING:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-preview-searching
|
Text: label-map-preview-searching
|
||||||
IgnoreMouseOver: true
|
IgnoreMouseOver: true
|
||||||
Container@MAP_UNAVAILABLE:
|
Container@MAP_UNAVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@a:
|
Label@a:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-unavailable-a
|
Text: label-map-unavailable-a
|
||||||
Label@b:
|
Label@b:
|
||||||
Y: 171
|
Y: 171
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-unavailable-b
|
Text: label-map-unavailable-b
|
||||||
Label@MAP_ERROR:
|
Label@MAP_ERROR:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-preview-error
|
Text: label-map-preview-error
|
||||||
Container@MAP_DOWNLOADING:
|
Container@MAP_DOWNLOADING:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_STATUS_DOWNLOADING:
|
Label@MAP_STATUS_DOWNLOADING:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
ProgressBar@MAP_PROGRESSBAR:
|
ProgressBar@MAP_PROGRESSBAR:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Indeterminate: True
|
Indeterminate: True
|
||||||
Button@MAP_RETRY:
|
Button@MAP_RETRY:
|
||||||
Y: 194
|
Y: 194
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MAP_UPDATE_AVAILABLE:
|
Container@MAP_UPDATE_AVAILABLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@a:
|
Label@a:
|
||||||
Y: 158
|
Y: 158
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-map-update-available-a
|
Text: label-map-update-available-a
|
||||||
Label@b:
|
Label@b:
|
||||||
Y: 171
|
Y: 171
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@LOBBY_MUSIC_BIN:
|
Container@LOBBY_MUSIC_BIN:
|
||||||
Logic: MusicPlayerLogic
|
Logic: MusicPlayerLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
LogicTicker@SONG_WATCHER:
|
LogicTicker@SONG_WATCHER:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@MUSIC:
|
Label@MUSIC:
|
||||||
Width: 268
|
Width: 268
|
||||||
@@ -21,7 +21,7 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Text: label-container-title
|
Text: label-container-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@LENGTH:
|
Label@LENGTH:
|
||||||
X: PARENT_RIGHT - 80
|
X: PARENT_WIDTH - 80
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 50
|
Width: 50
|
||||||
Text: label-music-controls-length
|
Text: label-music-controls-length
|
||||||
@@ -30,7 +30,7 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Background@CONTROLS:
|
Background@CONTROLS:
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Width: 268
|
Width: 268
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MUTE_LABEL:
|
Label@MUTE_LABEL:
|
||||||
X: 45
|
X: 45
|
||||||
@@ -40,17 +40,17 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Font: Small
|
Font: Small
|
||||||
Label@TITLE_LABEL:
|
Label@TITLE_LABEL:
|
||||||
Y: 46
|
Y: 46
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@TIME_LABEL:
|
Label@TIME_LABEL:
|
||||||
Y: 66
|
Y: 66
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@BUTTONS:
|
Container@BUTTONS:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: 131
|
Width: 131
|
||||||
Children:
|
Children:
|
||||||
@@ -117,7 +117,7 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-music-controls-shuffle
|
Text: checkbox-music-controls-shuffle
|
||||||
Checkbox@REPEAT:
|
Checkbox@REPEAT:
|
||||||
X: PARENT_RIGHT - 15 - WIDTH
|
X: PARENT_WIDTH - 15 - WIDTH
|
||||||
Y: 150
|
Y: 150
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: 20
|
Height: 20
|
||||||
@@ -132,16 +132,16 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
ExponentialSlider@MUSIC_SLIDER:
|
ExponentialSlider@MUSIC_SLIDER:
|
||||||
X: 70
|
X: 70
|
||||||
Y: 186
|
Y: 186
|
||||||
Width: PARENT_RIGHT - 80
|
Width: PARENT_WIDTH - 80
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
ScrollPanel@MUSIC_LIST:
|
ScrollPanel@MUSIC_LIST:
|
||||||
X: 268
|
X: 268
|
||||||
Width: PARENT_RIGHT - 268
|
Width: PARENT_WIDTH - 268
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@MUSIC_TEMPLATE:
|
ScrollItem@MUSIC_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -149,36 +149,36 @@ Container@LOBBY_MUSIC_BIN:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@LENGTH:
|
Label@LENGTH:
|
||||||
X: PARENT_RIGHT - 60
|
X: PARENT_WIDTH - 60
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Right
|
Align: Right
|
||||||
Container@NO_MUSIC_LABEL:
|
Container@NO_MUSIC_LABEL:
|
||||||
X: 268
|
X: 268
|
||||||
Width: PARENT_RIGHT - 268
|
Width: PARENT_WIDTH - 268
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 76
|
Y: 76
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-title
|
Text: label-no-music-title
|
||||||
Label@DESCA:
|
Label@DESCA:
|
||||||
Y: 96
|
Y: 96
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-a
|
Text: label-no-music-desc-a
|
||||||
Label@DESCB:
|
Label@DESCB:
|
||||||
Y: 116
|
Y: 116
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-b
|
Text: label-no-music-desc-b
|
||||||
|
|||||||
@@ -1,84 +1,84 @@
|
|||||||
Container@LOBBY_OPTIONS_BIN:
|
Container@LOBBY_OPTIONS_BIN:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-lobby-options-bin-title
|
Text: label-lobby-options-bin-title
|
||||||
ScrollPanel:
|
ScrollPanel:
|
||||||
Logic: LobbyOptionsLogic
|
Logic: LobbyOptionsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@LOBBY_OPTIONS:
|
Container@LOBBY_OPTIONS:
|
||||||
Y: 10
|
Y: 10
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_ROW_TEMPLATE:
|
Container@CHECKBOX_ROW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Checkbox@A:
|
Checkbox@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@B:
|
Checkbox@B:
|
||||||
X: PARENT_RIGHT / 3 + 10
|
X: PARENT_WIDTH / 3 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@C:
|
Checkbox@C:
|
||||||
X: (PARENT_RIGHT / 3) * 2 + 10
|
X: (PARENT_WIDTH / 3) * 2 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Container@DROPDOWN_ROW_TEMPLATE:
|
Container@DROPDOWN_ROW_TEMPLATE:
|
||||||
Height: 60
|
Height: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@A_DESC:
|
LabelForInput@A_DESC:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: A
|
For: A
|
||||||
DropDownButton@A:
|
DropDownButton@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@B_DESC:
|
LabelForInput@B_DESC:
|
||||||
X: PARENT_RIGHT / 3 + 10
|
X: PARENT_WIDTH / 3 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: B
|
For: B
|
||||||
DropDownButton@B:
|
DropDownButton@B:
|
||||||
X: PARENT_RIGHT / 3 + 10
|
X: PARENT_WIDTH / 3 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@C_DESC:
|
LabelForInput@C_DESC:
|
||||||
X: (PARENT_RIGHT / 3) * 2 + 10
|
X: (PARENT_WIDTH / 3) * 2 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: C
|
For: C
|
||||||
DropDownButton@C:
|
DropDownButton@C:
|
||||||
X: (PARENT_RIGHT / 3) * 2 + 10
|
X: (PARENT_WIDTH / 3) * 2 + 10
|
||||||
Width: PARENT_RIGHT / 3 - 20
|
Width: PARENT_WIDTH / 3 - 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Container@LOBBY_PLAYER_BIN:
|
Container@LOBBY_PLAYER_BIN:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL_LOBBY_NAME:
|
Label@LABEL_LOBBY_NAME:
|
||||||
Width: 180
|
Width: 180
|
||||||
@@ -57,8 +57,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@LOBBY_PLAYERS:
|
ScrollPanel@LOBBY_PLAYERS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
@@ -77,8 +77,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -121,8 +121,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
DropDownButton@FACTION:
|
DropDownButton@FACTION:
|
||||||
X: 270
|
X: 270
|
||||||
Width: 140
|
Width: 140
|
||||||
@@ -186,8 +186,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -328,8 +328,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -391,8 +391,8 @@ Container@LOBBY_PLAYER_BIN:
|
|||||||
ColorBlock@LATENCY_COLOR:
|
ColorBlock@LATENCY_COLOR:
|
||||||
X: 2
|
X: 2
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 4
|
Width: PARENT_WIDTH - 4
|
||||||
Height: PARENT_BOTTOM - 4
|
Height: PARENT_HEIGHT - 4
|
||||||
ClientTooltipRegion@LATENCY_REGION:
|
ClientTooltipRegion@LATENCY_REGION:
|
||||||
Width: 11
|
Width: 11
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -475,7 +475,7 @@ ScrollPanel@FACTION_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -483,11 +483,11 @@ ScrollPanel@FACTION_DROPDOWN_TEMPLATE:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 10
|
Height: 10
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
Container@LOBBY_SERVERS_BIN:
|
Container@LOBBY_SERVERS_BIN:
|
||||||
Logic: ServerListLogic
|
Logic: ServerListLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
Y: 0 - 24
|
Y: 0 - 24
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
Label@NAME:
|
Label@NAME:
|
||||||
X: 5
|
X: 5
|
||||||
@@ -34,50 +34,50 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
LogicTicker@NOTICE_WATCHER:
|
LogicTicker@NOTICE_WATCHER:
|
||||||
Background@NOTICE_CONTAINER:
|
Background@NOTICE_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@OUTDATED_VERSION_LABEL:
|
Label@OUTDATED_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-notice-container-outdated-version
|
Text: label-notice-container-outdated-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@UNKNOWN_VERSION_LABEL:
|
Label@UNKNOWN_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-notice-container-unknown-version
|
Text: label-notice-container-unknown-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@PLAYTEST_AVAILABLE_LABEL:
|
Label@PLAYTEST_AVAILABLE_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-notice-container-playtest-available
|
Text: label-notice-container-playtest-available
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
ScrollPanel@SERVER_LIST:
|
ScrollPanel@SERVER_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER_TEMPLATE:
|
ScrollItem@HEADER_TEMPLATE:
|
||||||
X: 2
|
X: 2
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 20
|
Height: 20
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@SERVER_TEMPLATE:
|
ScrollItem@SERVER_TEMPLATE:
|
||||||
X: 2
|
X: 2
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
Children:
|
Children:
|
||||||
@@ -120,21 +120,21 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@PROGRESS_LABEL:
|
Label@PROGRESS_LABEL:
|
||||||
Y: (PARENT_BOTTOM - HEIGHT) / 2
|
Y: (PARENT_HEIGHT - HEIGHT) / 2
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Visible: false
|
Visible: false
|
||||||
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
||||||
Y: PARENT_BOTTOM + 5
|
Y: PARENT_HEIGHT + 5
|
||||||
Width: 154
|
Width: 154
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-lobby-servers-bin-filters
|
Text: dropdownbutton-lobby-servers-bin-filters
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@RELOAD_BUTTON:
|
Button@RELOAD_BUTTON:
|
||||||
X: 159
|
X: 159
|
||||||
Y: PARENT_BOTTOM + 5
|
Y: PARENT_HEIGHT + 5
|
||||||
Width: 26
|
Width: 26
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
@@ -149,24 +149,24 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
Children:
|
Children:
|
||||||
LogicTicker@ANIMATION:
|
LogicTicker@ANIMATION:
|
||||||
Container@SELECTED_SERVER:
|
Container@SELECTED_SERVER:
|
||||||
X: PARENT_RIGHT + 11
|
X: PARENT_WIDTH + 11
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 280
|
Height: 280
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 174
|
Height: 174
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
MapPreview@SELECTED_MAP_PREVIEW:
|
MapPreview@SELECTED_MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@SELECTED_MAP:
|
LabelWithTooltip@SELECTED_MAP:
|
||||||
Y: 173
|
Y: 173
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -174,25 +174,25 @@ Container@LOBBY_SERVERS_BIN:
|
|||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SELECTED_IP:
|
Label@SELECTED_IP:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_STATUS:
|
Label@SELECTED_STATUS:
|
||||||
Y: 204
|
Y: 204
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_MOD_VERSION:
|
Label@SELECTED_MOD_VERSION:
|
||||||
Y: 217
|
Y: 217
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_PLAYERS:
|
Label@SELECTED_PLAYERS:
|
||||||
Y: 230
|
Y: 230
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -7,19 +7,19 @@ Background@SERVER_LOBBY:
|
|||||||
System: SYSTEM_LINE_TEMPLATE
|
System: SYSTEM_LINE_TEMPLATE
|
||||||
Mission: CHAT_LINE_TEMPLATE
|
Mission: CHAT_LINE_TEMPLATE
|
||||||
Feedback: TRANSIENT_LINE_TEMPLATE
|
Feedback: TRANSIENT_LINE_TEMPLATE
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
Children:
|
Children:
|
||||||
Label@SERVER_NAME:
|
Label@SERVER_NAME:
|
||||||
Y: 16
|
Y: 16
|
||||||
Align: Center
|
Align: Center
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MAP_PREVIEW_ROOT:
|
Container@MAP_PREVIEW_ROOT:
|
||||||
X: PARENT_RIGHT - 20 - WIDTH
|
X: PARENT_WIDTH - 20 - WIDTH
|
||||||
Y: 67
|
Y: 67
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 250
|
Height: 250
|
||||||
@@ -100,7 +100,7 @@ Background@SERVER_LOBBY:
|
|||||||
Width: 675
|
Width: 675
|
||||||
Height: 219
|
Height: 219
|
||||||
Button@CHANGEMAP_BUTTON:
|
Button@CHANGEMAP_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 291
|
Y: 291
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -108,17 +108,17 @@ Background@SERVER_LOBBY:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Container@LOBBYCHAT:
|
Container@LOBBYCHAT:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 259
|
Height: 259
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@CHAT_DISPLAY:
|
ScrollPanel@CHAT_DISPLAY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
TopBottomSpacing: 2
|
TopBottomSpacing: 2
|
||||||
ItemSpacing: 2
|
ItemSpacing: 2
|
||||||
Button@CHAT_MODE:
|
Button@CHAT_MODE:
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: 50
|
Width: 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-lobbychat-chat-mode.label
|
Text: button-lobbychat-chat-mode.label
|
||||||
@@ -128,19 +128,19 @@ Background@SERVER_LOBBY:
|
|||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TextField@CHAT_TEXTFIELD:
|
TextField@CHAT_TEXTFIELD:
|
||||||
X: 55
|
X: 55
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: PARENT_RIGHT - 260 - 55
|
Width: PARENT_WIDTH - 260 - 55
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@START_GAME_BUTTON:
|
Button@START_GAME_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 150
|
X: PARENT_WIDTH - WIDTH - 150
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-server-lobby-start-game
|
Text: button-server-lobby-start-game
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DISCONNECT_BUTTON:
|
Button@DISCONNECT_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-server-lobby-disconnect
|
Text: button-server-lobby-disconnect
|
||||||
|
|||||||
@@ -1,26 +1,26 @@
|
|||||||
Background@MAINMENU_INTRODUCTION_PROMPT:
|
Background@MAINMENU_INTRODUCTION_PROMPT:
|
||||||
Logic: IntroductionPromptLogic
|
Logic: IntroductionPromptLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 700
|
Width: 700
|
||||||
Height: 525
|
Height: 525
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 20
|
Y: 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mainmenu-introduction-prompt-title
|
Text: label-mainmenu-introduction-prompt-title
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 50
|
Y: 50
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mainmenu-introduction-prompt-desc-a
|
Text: label-mainmenu-introduction-prompt-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 68
|
Y: 68
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Regular
|
Font: Regular
|
||||||
@@ -29,8 +29,8 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM - 155
|
Height: PARENT_HEIGHT - 155
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
@@ -38,41 +38,41 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
Children:
|
Children:
|
||||||
Background@PROFILE_SECTION_HEADER:
|
Background@PROFILE_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-profile-section-header
|
Text: label-profile-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@PLAYER_CONTAINER:
|
Container@PLAYER_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@PLAYER:
|
Label@PLAYER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-player-container
|
Text: label-player-container
|
||||||
TextField@PLAYERNAME:
|
TextField@PLAYERNAME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
MaxLength: 16
|
MaxLength: 16
|
||||||
Text: Name
|
Text: Name
|
||||||
Container@PLAYERCOLOR_CONTAINER:
|
Container@PLAYERCOLOR_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@COLOR:
|
Label@COLOR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-playercolor-container-color
|
Text: label-playercolor-container-color
|
||||||
DropDownButton@PLAYERCOLOR:
|
DropDownButton@PLAYERCOLOR:
|
||||||
@@ -85,166 +85,166 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@INPUT_SECTION_HEADER:
|
Background@INPUT_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-input-section-header
|
Text: label-input-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MOUSE_CONTROL_CONTAINER:
|
Container@MOUSE_CONTROL_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MOUSE_CONTROL_LABEL:
|
Label@MOUSE_CONTROL_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-mouse-control-container
|
Text: label-mouse-control-container
|
||||||
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-selection
|
Text: label-mouse-control-desc-classic-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-commands
|
Text: label-mouse-control-desc-classic-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-buildings
|
Text: label-mouse-control-desc-classic-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-support
|
Text: label-mouse-control-desc-classic-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom
|
Text: label-mouse-control-desc-classic-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom-modifier
|
Text: label-mouse-control-desc-classic-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-right
|
Text: label-mouse-control-desc-classic-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-middle
|
Text: label-mouse-control-desc-classic-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-edgescroll
|
Text: label-mouse-control-desc-classic-edgescroll
|
||||||
Container@MOUSE_CONTROL_DESC_MODERN:
|
Container@MOUSE_CONTROL_DESC_MODERN:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-selection
|
Text: label-mouse-control-desc-modern-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-commands
|
Text: label-mouse-control-desc-modern-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-buildings
|
Text: label-mouse-control-desc-modern-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-support
|
Text: label-mouse-control-desc-modern-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom
|
Text: label-mouse-control-desc-modern-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom-modifier
|
Text: label-mouse-control-desc-modern-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-right
|
Text: label-mouse-control-desc-modern-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-middle
|
Text: label-mouse-control-desc-modern-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-edgescroll
|
Text: label-mouse-control-desc-modern-edgescroll
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@EDGESCROLL_CHECKBOX:
|
Checkbox@EDGESCROLL_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-edgescroll-container
|
Text: checkbox-edgescroll-container
|
||||||
@@ -252,63 +252,63 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Background@DISPLAY_SECTION_HEADER:
|
Background@DISPLAY_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-display-section-header
|
Text: label-display-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@BATTLEFIELD_CAMERA:
|
Label@BATTLEFIELD_CAMERA:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-battlefield-camera-dropdown
|
Text: label-battlefield-camera-dropdown
|
||||||
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@UI_SCALE:
|
Label@UI_SCALE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-ui-scale-dropdown
|
Text: label-ui-scale-dropdown
|
||||||
DropDownButton@UI_SCALE_DROPDOWN:
|
DropDownButton@UI_SCALE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CURSORDOUBLE_CHECKBOX:
|
Checkbox@CURSORDOUBLE_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-cursordouble-container
|
Text: checkbox-cursordouble-container
|
||||||
Button@CONTINUE_BUTTON:
|
Button@CONTINUE_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-continue
|
Text: button-continue
|
||||||
@@ -317,13 +317,13 @@ Background@MAINMENU_INTRODUCTION_PROMPT:
|
|||||||
|
|
||||||
Background@MAINMENU_SYSTEM_INFO_PROMPT:
|
Background@MAINMENU_SYSTEM_INFO_PROMPT:
|
||||||
Logic: SystemInfoPromptLogic
|
Logic: SystemInfoPromptLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 600
|
Width: 600
|
||||||
Height: 430
|
Height: 430
|
||||||
Children:
|
Children:
|
||||||
Label@PROMPT_TITLE:
|
Label@PROMPT_TITLE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 20
|
Y: 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -332,21 +332,21 @@ Background@MAINMENU_SYSTEM_INFO_PROMPT:
|
|||||||
Label@PROMPT_TEXT_A:
|
Label@PROMPT_TEXT_A:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 16
|
Height: 16
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mainmenu-system-info-prompt-text-a
|
Text: label-mainmenu-system-info-prompt-text-a
|
||||||
Label@PROMPT_TEXT_B:
|
Label@PROMPT_TEXT_B:
|
||||||
X: 15
|
X: 15
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT - 30
|
Width: PARENT_WIDTH - 30
|
||||||
Height: 16
|
Height: 16
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-mainmenu-system-info-prompt-text-b
|
Text: label-mainmenu-system-info-prompt-text-b
|
||||||
ScrollPanel@SYSINFO_DATA:
|
ScrollPanel@SYSINFO_DATA:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 98
|
Y: 98
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 355 - 98 - 10
|
Height: 355 - 98 - 10
|
||||||
TopBottomSpacing: 4
|
TopBottomSpacing: 4
|
||||||
ItemSpacing: 4
|
ItemSpacing: 4
|
||||||
@@ -364,8 +364,8 @@ Background@MAINMENU_SYSTEM_INFO_PROMPT:
|
|||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-mainmenu-system-info-prompt-sysinfo
|
Text: checkbox-mainmenu-system-info-prompt-sysinfo
|
||||||
Button@CONTINUE_BUTTON:
|
Button@CONTINUE_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-continue
|
Text: button-continue
|
||||||
|
|||||||
@@ -13,16 +13,16 @@ Container@MAINMENU:
|
|||||||
Background: mainmenu-border
|
Background: mainmenu-border
|
||||||
X: 0 - 15
|
X: 0 - 15
|
||||||
Y: 0 - 15
|
Y: 0 - 15
|
||||||
Width: WINDOW_RIGHT + 30
|
Width: WINDOW_WIDTH + 30
|
||||||
Height: WINDOW_BOTTOM + 30
|
Height: WINDOW_HEIGHT + 30
|
||||||
Image@LOGO:
|
Image@LOGO:
|
||||||
X: WINDOW_RIGHT - 296
|
X: WINDOW_WIDTH - 296
|
||||||
Y: 30
|
Y: 30
|
||||||
ImageCollection: logos
|
ImageCollection: logos
|
||||||
ImageName: logo
|
ImageName: logo
|
||||||
Label@VERSION_LABEL:
|
Label@VERSION_LABEL:
|
||||||
Logic: VersionLabelLogic
|
Logic: VersionLabelLogic
|
||||||
X: WINDOW_RIGHT - 296
|
X: WINDOW_WIDTH - 296
|
||||||
Y: 296 - 20
|
Y: 296 - 20
|
||||||
Width: 296 - 20
|
Width: 296 - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -30,14 +30,14 @@ Container@MAINMENU:
|
|||||||
Font: Regular
|
Font: Regular
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Container@MENUS:
|
Container@MENUS:
|
||||||
X: 13 + (WINDOW_RIGHT - 522) / 4 - WIDTH / 2
|
X: 13 + (WINDOW_WIDTH - 522) / 4 - WIDTH / 2
|
||||||
Y: WINDOW_BOTTOM / 2 - HEIGHT / 2
|
Y: WINDOW_HEIGHT / 2 - HEIGHT / 2
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 320
|
Height: 320
|
||||||
Children:
|
Children:
|
||||||
Background@MAIN_MENU:
|
Background@MAIN_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAINMENU_LABEL_TITLE:
|
Label@MAINMENU_LABEL_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
@@ -48,50 +48,50 @@ Container@MAINMENU:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@SINGLEPLAYER_BUTTON:
|
Button@SINGLEPLAYER_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: label-singleplayer-title
|
Text: label-singleplayer-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@MULTIPLAYER_BUTTON:
|
Button@MULTIPLAYER_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: label-multiplayer-title
|
Text: label-multiplayer-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@SETTINGS_BUTTON:
|
Button@SETTINGS_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 140
|
Y: 140
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-settings-title
|
Text: button-settings-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@EXTRAS_BUTTON:
|
Button@EXTRAS_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 180
|
Y: 180
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-extras-title
|
Text: button-extras-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CONTENT_BUTTON:
|
Button@CONTENT_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 220
|
Y: 220
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-main-menu-content
|
Text: button-main-menu-content
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@QUIT_BUTTON:
|
Button@QUIT_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 260
|
Y: 260
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-quit
|
Text: button-quit
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@SINGLEPLAYER_MENU:
|
Background@SINGLEPLAYER_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@SINGLEPLAYER_MENU_TITLE:
|
Label@SINGLEPLAYER_MENU_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
@@ -102,28 +102,28 @@ Container@MAINMENU:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@SKIRMISH_BUTTON:
|
Button@SKIRMISH_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-singleplayer-menu-skirmish
|
Text: button-singleplayer-menu-skirmish
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@MISSIONS_BUTTON:
|
Button@MISSIONS_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: label-missions-title
|
Text: label-missions-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@LOAD_BUTTON:
|
Button@LOAD_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 140
|
Y: 140
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-singleplayer-menu-load
|
Text: button-singleplayer-menu-load
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Key: escape
|
Key: escape
|
||||||
Y: 260
|
Y: 260
|
||||||
Width: 140
|
Width: 140
|
||||||
@@ -131,8 +131,8 @@ Container@MAINMENU:
|
|||||||
Text: button-back
|
Text: button-back
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@EXTRAS_MENU:
|
Background@EXTRAS_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@EXTRAS_MENU_TITLE:
|
Label@EXTRAS_MENU_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
@@ -143,42 +143,42 @@ Container@MAINMENU:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@REPLAYS_BUTTON:
|
Button@REPLAYS_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-extras-menu-replays
|
Text: button-extras-menu-replays
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@MUSIC_BUTTON:
|
Button@MUSIC_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: label-music-title
|
Text: label-music-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@MAP_EDITOR_BUTTON:
|
Button@MAP_EDITOR_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 140
|
Y: 140
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: label-map-editor-title
|
Text: label-map-editor-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@ASSETBROWSER_BUTTON:
|
Button@ASSETBROWSER_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 180
|
Y: 180
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-extras-menu-assetbrowser
|
Text: button-extras-menu-assetbrowser
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CREDITS_BUTTON:
|
Button@CREDITS_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 220
|
Y: 220
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: label-credits-title
|
Text: label-credits-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Key: escape
|
Key: escape
|
||||||
Y: 260
|
Y: 260
|
||||||
Width: 140
|
Width: 140
|
||||||
@@ -186,8 +186,8 @@ Container@MAINMENU:
|
|||||||
Text: button-back
|
Text: button-back
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Background@MAP_EDITOR_MENU:
|
Background@MAP_EDITOR_MENU:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@MAP_EDITOR_MENU_TITLE:
|
Label@MAP_EDITOR_MENU_TITLE:
|
||||||
X: 0
|
X: 0
|
||||||
@@ -198,21 +198,21 @@ Container@MAINMENU:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@NEW_MAP_BUTTON:
|
Button@NEW_MAP_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-map-editor-new-map
|
Text: button-map-editor-new-map
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@LOAD_MAP_BUTTON:
|
Button@LOAD_MAP_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Y: 100
|
Y: 100
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: button-map-editor-load-map
|
Text: button-map-editor-load-map
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT / 2 - WIDTH / 2
|
X: PARENT_WIDTH / 2 - WIDTH / 2
|
||||||
Key: escape
|
Key: escape
|
||||||
Y: 260
|
Y: 260
|
||||||
Width: 140
|
Width: 140
|
||||||
@@ -224,15 +224,15 @@ Container@MAINMENU:
|
|||||||
Children:
|
Children:
|
||||||
Label@PERF_TEXT:
|
Label@PERF_TEXT:
|
||||||
X: 30
|
X: 30
|
||||||
Y: WINDOW_BOTTOM - 70
|
Y: WINDOW_HEIGHT - 70
|
||||||
Width: 170
|
Width: 170
|
||||||
Height: 40
|
Height: 40
|
||||||
Contrast: true
|
Contrast: true
|
||||||
Background@GRAPH_BG:
|
Background@GRAPH_BG:
|
||||||
ClickThrough: true
|
ClickThrough: true
|
||||||
Background: dialog4
|
Background: dialog4
|
||||||
X: WINDOW_RIGHT - 240
|
X: WINDOW_WIDTH - 240
|
||||||
Y: WINDOW_BOTTOM - 240
|
Y: WINDOW_HEIGHT - 240
|
||||||
Width: 210
|
Width: 210
|
||||||
Height: 210
|
Height: 210
|
||||||
Children:
|
Children:
|
||||||
@@ -242,7 +242,7 @@ Container@MAINMENU:
|
|||||||
Width: 200
|
Width: 200
|
||||||
Height: 200
|
Height: 200
|
||||||
Background@NEWS_BG:
|
Background@NEWS_BG:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: 430
|
Width: 430
|
||||||
Height: 55
|
Height: 55
|
||||||
@@ -256,19 +256,19 @@ Container@MAINMENU:
|
|||||||
Text: dropdownbutton-news-bg-button
|
Text: dropdownbutton-news-bg-button
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@UPDATE_NOTICE:
|
Container@UPDATE_NOTICE:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: 95
|
Y: 95
|
||||||
Width: 128
|
Width: 128
|
||||||
Children:
|
Children:
|
||||||
Label@A:
|
Label@A:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Shadow: true
|
Shadow: true
|
||||||
Text: label-update-notice-a
|
Text: label-update-notice-a
|
||||||
Label@B:
|
Label@B:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Shadow: true
|
Shadow: true
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Background@MAPCHOOSER_PANEL:
|
Background@MAPCHOOSER_PANEL:
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Logic: MapChooserLogic
|
Logic: MapChooserLogic
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
@@ -8,7 +8,7 @@ Background@MAPCHOOSER_PANEL:
|
|||||||
Label@MAPCHOOSER_TITLE:
|
Label@MAPCHOOSER_TITLE:
|
||||||
Y: 17
|
Y: 17
|
||||||
Align: Center
|
Align: Center
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-mapchooser-panel-title
|
Text: label-mapchooser-panel-title
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -34,32 +34,32 @@ Background@MAPCHOOSER_PANEL:
|
|||||||
Text: button-mapchooser-panel-user-maps-tab
|
Text: button-mapchooser-panel-user-maps-tab
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MAP_TAB_PANES:
|
Container@MAP_TAB_PANES:
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 438
|
Height: 438
|
||||||
X: 20
|
X: 20
|
||||||
Y: 77
|
Y: 77
|
||||||
Children:
|
Children:
|
||||||
Container@SYSTEM_MAPS_TAB:
|
Container@SYSTEM_MAPS_TAB:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MAP_LIST:
|
ScrollPanel@MAP_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@REMOTE_MAPS_TAB:
|
Container@REMOTE_MAPS_TAB:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MAP_LIST:
|
ScrollPanel@MAP_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Container@USER_MAPS_TAB:
|
Container@USER_MAPS_TAB:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MAP_LIST:
|
ScrollPanel@MAP_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
ScrollItem@MAP_TEMPLATE:
|
ScrollItem@MAP_TEMPLATE:
|
||||||
Width: 208
|
Width: 208
|
||||||
Height: 266
|
Height: 266
|
||||||
@@ -68,7 +68,7 @@ Background@MAPCHOOSER_PANEL:
|
|||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
Children:
|
Children:
|
||||||
MapPreview@PREVIEW:
|
MapPreview@PREVIEW:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: 202
|
Width: 202
|
||||||
Height: 202
|
Height: 202
|
||||||
@@ -76,40 +76,40 @@ Background@MAPCHOOSER_PANEL:
|
|||||||
IgnoreMouseInput: true
|
IgnoreMouseInput: true
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 39
|
Y: PARENT_HEIGHT - HEIGHT - 39
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 24
|
Height: 24
|
||||||
Align: Center
|
Align: Center
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@DETAILS:
|
Label@DETAILS:
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 12
|
Height: 12
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 30
|
Y: PARENT_HEIGHT - HEIGHT - 30
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
LabelWithTooltip@AUTHOR:
|
LabelWithTooltip@AUTHOR:
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 12
|
Height: 12
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 18
|
Y: PARENT_HEIGHT - HEIGHT - 18
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SIZE:
|
Label@SIZE:
|
||||||
Width: PARENT_RIGHT - 8
|
Width: PARENT_WIDTH - 8
|
||||||
Height: 12
|
Height: 12
|
||||||
X: 4
|
X: 4
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 6
|
Y: PARENT_HEIGHT - HEIGHT - 6
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Container@FILTER_ORDER_CONTROLS:
|
Container@FILTER_ORDER_CONTROLS:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 80
|
Y: PARENT_HEIGHT - 80
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@FILTER_DESC:
|
Label@FILTER_DESC:
|
||||||
Width: 40
|
Width: 40
|
||||||
@@ -133,55 +133,55 @@ Background@MAPCHOOSER_PANEL:
|
|||||||
Width: 200
|
Width: 200
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@ORDERBY_LABEL:
|
Label@ORDERBY_LABEL:
|
||||||
X: PARENT_RIGHT - WIDTH - 200 - 5
|
X: PARENT_WIDTH - WIDTH - 200 - 5
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 24
|
Height: 24
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Right
|
Align: Right
|
||||||
Text: label-filter-order-controls-orderby
|
Text: label-filter-order-controls-orderby
|
||||||
DropDownButton@ORDERBY:
|
DropDownButton@ORDERBY:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Width: 200
|
Width: 200
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@RANDOMMAP_BUTTON:
|
Button@RANDOMMAP_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-mapchooser-panel-randommap
|
Text: button-mapchooser-panel-randommap
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DELETE_MAP_BUTTON:
|
Button@DELETE_MAP_BUTTON:
|
||||||
X: 160
|
X: 160
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-mapchooser-panel-delete-map
|
Text: button-mapchooser-panel-delete-map
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DELETE_ALL_MAPS_BUTTON:
|
Button@DELETE_ALL_MAPS_BUTTON:
|
||||||
X: 300
|
X: 300
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-mapchooser-panel-delete-all-maps
|
Text: button-mapchooser-panel-delete-all-maps
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@REMOTE_MAP_LABEL:
|
Label@REMOTE_MAP_LABEL:
|
||||||
X: 140
|
X: 140
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: PARENT_RIGHT - 410
|
Width: PARENT_WIDTH - 410
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BUTTON_OK:
|
Button@BUTTON_OK:
|
||||||
X: PARENT_RIGHT - 270
|
X: PARENT_WIDTH - 270
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-mapchooser-panel-ok
|
Text: button-mapchooser-panel-ok
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: return
|
Key: return
|
||||||
Button@BUTTON_CANCEL:
|
Button@BUTTON_CANCEL:
|
||||||
X: PARENT_RIGHT - 140
|
X: PARENT_WIDTH - 140
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Background@MISSIONBROWSER_PANEL:
|
Background@MISSIONBROWSER_PANEL:
|
||||||
Logic: MissionBrowserLogic
|
Logic: MissionBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 700
|
Width: 700
|
||||||
Height: 500
|
Height: 500
|
||||||
Children:
|
Children:
|
||||||
Label@MISSIONBROWSER_TITLE:
|
Label@MISSIONBROWSER_TITLE:
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-missions-title
|
Text: label-missions-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -16,29 +16,29 @@ Background@MISSIONBROWSER_PANEL:
|
|||||||
X: 20
|
X: 20
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: 288
|
Width: 288
|
||||||
Height: PARENT_BOTTOM - 110
|
Height: PARENT_HEIGHT - 110
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
@@ -46,99 +46,99 @@ Background@MISSIONBROWSER_PANEL:
|
|||||||
X: 318
|
X: 318
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: 362
|
Width: 362
|
||||||
Height: PARENT_BOTTOM - 110
|
Height: PARENT_HEIGHT - 110
|
||||||
Children:
|
Children:
|
||||||
Background@MISSION_BG:
|
Background@MISSION_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 202
|
Height: 202
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
MapPreview@MISSION_PREVIEW:
|
MapPreview@MISSION_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
IgnoreMouseOver: True
|
IgnoreMouseOver: True
|
||||||
IgnoreMouseInput: True
|
IgnoreMouseInput: True
|
||||||
ShowSpawnPoints: False
|
ShowSpawnPoints: False
|
||||||
Container@MISSION_TABS:
|
Container@MISSION_TABS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: PARENT_BOTTOM - 31
|
Y: PARENT_HEIGHT - 31
|
||||||
Children:
|
Children:
|
||||||
Button@MISSIONINFO_TAB:
|
Button@MISSIONINFO_TAB:
|
||||||
Width: PARENT_RIGHT / 2
|
Width: PARENT_WIDTH / 2
|
||||||
Height: 31
|
Height: 31
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: button-missionbrowser-panel-mission-info
|
Text: button-missionbrowser-panel-mission-info
|
||||||
Button@OPTIONS_TAB:
|
Button@OPTIONS_TAB:
|
||||||
X: PARENT_RIGHT / 2
|
X: PARENT_WIDTH / 2
|
||||||
Width: PARENT_RIGHT / 2
|
Width: PARENT_WIDTH / 2
|
||||||
Height: 31
|
Height: 31
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: button-missionbrowser-panel-mission-options
|
Text: button-missionbrowser-panel-mission-options
|
||||||
Container@MISSION_DETAIL:
|
Container@MISSION_DETAIL:
|
||||||
Y: 212
|
Y: 212
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 212
|
Height: PARENT_HEIGHT - 212
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@MISSION_DESCRIPTION_PANEL:
|
ScrollPanel@MISSION_DESCRIPTION_PANEL:
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Label@MISSION_DESCRIPTION:
|
Label@MISSION_DESCRIPTION:
|
||||||
X: 4
|
X: 4
|
||||||
Width: PARENT_RIGHT - 32
|
Width: PARENT_WIDTH - 32
|
||||||
VAlign: Top
|
VAlign: Top
|
||||||
Font: Small
|
Font: Small
|
||||||
ScrollPanel@MISSION_OPTIONS:
|
ScrollPanel@MISSION_OPTIONS:
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Container@CHECKBOX_ROW_TEMPLATE:
|
Container@CHECKBOX_ROW_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Checkbox@A:
|
Checkbox@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 25
|
Width: PARENT_WIDTH / 2 - 25
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Checkbox@B:
|
Checkbox@B:
|
||||||
X: PARENT_RIGHT / 2 + 5
|
X: PARENT_WIDTH / 2 + 5
|
||||||
Width: PARENT_RIGHT / 2 - 25
|
Width: PARENT_WIDTH / 2 - 25
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Container@DROPDOWN_ROW_TEMPLATE:
|
Container@DROPDOWN_ROW_TEMPLATE:
|
||||||
Height: 60
|
Height: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@A_DESC:
|
LabelForInput@A_DESC:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: A
|
For: A
|
||||||
DropDownButton@A:
|
DropDownButton@A:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
PanelRoot: MISSION_DROPDOWN_PANEL_ROOT
|
PanelRoot: MISSION_DROPDOWN_PANEL_ROOT
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelForInput@B_DESC:
|
LabelForInput@B_DESC:
|
||||||
X: PARENT_RIGHT / 2 + 5
|
X: PARENT_WIDTH / 2 + 5
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Height: 20
|
Height: 20
|
||||||
Visible: False
|
Visible: False
|
||||||
For: B
|
For: B
|
||||||
DropDownButton@B:
|
DropDownButton@B:
|
||||||
X: PARENT_RIGHT / 2 + 5
|
X: PARENT_WIDTH / 2 + 5
|
||||||
Width: PARENT_RIGHT / 2 - 35
|
Width: PARENT_WIDTH / 2 - 35
|
||||||
Y: 25
|
Y: 25
|
||||||
Height: 25
|
Height: 25
|
||||||
Visible: False
|
Visible: False
|
||||||
@@ -146,42 +146,42 @@ Background@MISSIONBROWSER_PANEL:
|
|||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
Button@START_BRIEFING_VIDEO_BUTTON:
|
Button@START_BRIEFING_VIDEO_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 130
|
Width: 130
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-missionbrowser-panel-start-briefing-video
|
Text: button-missionbrowser-panel-start-briefing-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@STOP_BRIEFING_VIDEO_BUTTON:
|
Button@STOP_BRIEFING_VIDEO_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 130
|
Width: 130
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-missionbrowser-panel-stop-briefing-video
|
Text: button-missionbrowser-panel-stop-briefing-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@START_INFO_VIDEO_BUTTON:
|
Button@START_INFO_VIDEO_BUTTON:
|
||||||
X: 160
|
X: 160
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 130
|
Width: 130
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-missionbrowser-panel-start-info-video
|
Text: button-missionbrowser-panel-start-info-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@STOP_INFO_VIDEO_BUTTON:
|
Button@STOP_INFO_VIDEO_BUTTON:
|
||||||
X: 160
|
X: 160
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 130
|
Width: 130
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-missionbrowser-panel-stop-info-video
|
Text: button-missionbrowser-panel-stop-info-video
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@STARTGAME_BUTTON:
|
Button@STARTGAME_BUTTON:
|
||||||
X: PARENT_RIGHT - 140 - 130
|
X: PARENT_WIDTH - 140 - 130
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-missionbrowser-panel-play
|
Text: button-missionbrowser-panel-play
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT - 140
|
X: PARENT_WIDTH - 140
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
@@ -190,26 +190,26 @@ Background@MISSIONBROWSER_PANEL:
|
|||||||
Background@MISSION_BIN:
|
Background@MISSION_BIN:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM - 110
|
Height: PARENT_HEIGHT - 110
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
VideoPlayer@MISSION_VIDEO:
|
VideoPlayer@MISSION_VIDEO:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
Container@MISSION_DROPDOWN_PANEL_ROOT:
|
Container@MISSION_DROPDOWN_PANEL_ROOT:
|
||||||
TooltipContainer@TOOLTIP_CONTAINER:
|
TooltipContainer@TOOLTIP_CONTAINER:
|
||||||
|
|
||||||
Background@FULLSCREEN_PLAYER:
|
Background@FULLSCREEN_PLAYER:
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
Background: dialog5
|
Background: dialog5
|
||||||
Visible: False
|
Visible: False
|
||||||
Children:
|
Children:
|
||||||
VideoPlayer@PLAYER:
|
VideoPlayer@PLAYER:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: WINDOW_RIGHT
|
Width: WINDOW_WIDTH
|
||||||
Height: WINDOW_BOTTOM
|
Height: WINDOW_HEIGHT
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Background@MULTIPLAYER_PANEL:
|
Background@MULTIPLAYER_PANEL:
|
||||||
Logic: MultiplayerLogic
|
Logic: MultiplayerLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-multiplayer-title
|
Text: label-multiplayer-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -15,8 +15,8 @@ Background@MULTIPLAYER_PANEL:
|
|||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 43
|
Y: 43
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@NAME:
|
Label@NAME:
|
||||||
X: 5
|
X: 5
|
||||||
@@ -53,21 +53,21 @@ Background@MULTIPLAYER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Label@OUTDATED_VERSION_LABEL:
|
Label@OUTDATED_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-notice-container-outdated-version
|
Text: label-notice-container-outdated-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@UNKNOWN_VERSION_LABEL:
|
Label@UNKNOWN_VERSION_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-notice-container-unknown-version
|
Text: label-notice-container-unknown-version
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Label@PLAYTEST_AVAILABLE_LABEL:
|
Label@PLAYTEST_AVAILABLE_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-notice-container-playtest-available
|
Text: label-notice-container-playtest-available
|
||||||
@@ -76,24 +76,24 @@ Background@MULTIPLAYER_PANEL:
|
|||||||
X: 20
|
X: 20
|
||||||
Y: 67
|
Y: 67
|
||||||
Width: 675
|
Width: 675
|
||||||
Height: PARENT_BOTTOM - 122
|
Height: PARENT_HEIGHT - 122
|
||||||
TopBottomSpacing: 2
|
TopBottomSpacing: 2
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER_TEMPLATE:
|
ScrollItem@HEADER_TEMPLATE:
|
||||||
X: 2
|
X: 2
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 20
|
Height: 20
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@SERVER_TEMPLATE:
|
ScrollItem@SERVER_TEMPLATE:
|
||||||
X: 2
|
X: 2
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
EnableChildMouseOver: True
|
EnableChildMouseOver: True
|
||||||
Children:
|
Children:
|
||||||
@@ -137,32 +137,32 @@ Background@MULTIPLAYER_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Label@PROGRESS_LABEL:
|
Label@PROGRESS_LABEL:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 67 + (PARENT_BOTTOM - 119 - HEIGHT) / 2
|
Y: 67 + (PARENT_HEIGHT - 119 - HEIGHT) / 2
|
||||||
Width: 675
|
Width: 675
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Visible: false
|
Visible: false
|
||||||
Container@SELECTED_SERVER:
|
Container@SELECTED_SERVER:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 67
|
Y: 67
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 280
|
Height: 280
|
||||||
Children:
|
Children:
|
||||||
Background@MAP_BG:
|
Background@MAP_BG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 174
|
Height: 174
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
MapPreview@SELECTED_MAP_PREVIEW:
|
MapPreview@SELECTED_MAP_PREVIEW:
|
||||||
X: 1
|
X: 1
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT - 2
|
Width: PARENT_WIDTH - 2
|
||||||
Height: PARENT_BOTTOM - 2
|
Height: PARENT_HEIGHT - 2
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
LabelWithTooltip@SELECTED_MAP:
|
LabelWithTooltip@SELECTED_MAP:
|
||||||
Y: 173
|
Y: 173
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -170,49 +170,49 @@ Background@MULTIPLAYER_PANEL:
|
|||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@SELECTED_IP:
|
Label@SELECTED_IP:
|
||||||
Y: 188
|
Y: 188
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_STATUS:
|
Label@SELECTED_STATUS:
|
||||||
Y: 204
|
Y: 204
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_MOD_VERSION:
|
Label@SELECTED_MOD_VERSION:
|
||||||
Y: 217
|
Y: 217
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@SELECTED_PLAYERS:
|
Label@SELECTED_PLAYERS:
|
||||||
Y: 230
|
Y: 230
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@CLIENT_LIST_CONTAINER:
|
Container@CLIENT_LIST_CONTAINER:
|
||||||
Y: 240
|
Y: 240
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 166
|
Height: 166
|
||||||
Button@JOIN_BUTTON:
|
Button@JOIN_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
Y: 255
|
Y: 255
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-selected-server-join
|
Text: button-selected-server-join
|
||||||
Font: Bold
|
Font: Bold
|
||||||
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
DropDownButton@FILTERS_DROPDOWNBUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 158
|
Width: 158
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-multiplayer-panel-filters
|
Text: dropdownbutton-multiplayer-panel-filters
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@RELOAD_BUTTON:
|
Button@RELOAD_BUTTON:
|
||||||
X: 182
|
X: 182
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 26
|
Width: 26
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
@@ -228,29 +228,29 @@ Background@MULTIPLAYER_PANEL:
|
|||||||
LogicTicker@ANIMATION:
|
LogicTicker@ANIMATION:
|
||||||
Label@PLAYER_COUNT:
|
Label@PLAYER_COUNT:
|
||||||
X: 254
|
X: 254
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 190
|
Width: 190
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@DIRECTCONNECT_BUTTON:
|
Button@DIRECTCONNECT_BUTTON:
|
||||||
X: 490
|
X: 490
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-multiplayer-panel-directconnect
|
Text: button-multiplayer-panel-directconnect
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CREATE_BUTTON:
|
Button@CREATE_BUTTON:
|
||||||
X: 595
|
X: 595
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-multiplayer-panel-create
|
Text: button-multiplayer-panel-create
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 20
|
Y: PARENT_HEIGHT - HEIGHT - 20
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 159
|
Height: 159
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -13,11 +13,11 @@ ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -31,23 +31,23 @@ ScrollPanel@MULTIPLAYER_CLIENT_LIST:
|
|||||||
Visible: False
|
Visible: False
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 40
|
X: 40
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
Label@NOFLAG_LABEL:
|
Label@NOFLAG_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
|
|
||||||
ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 130
|
Height: 130
|
||||||
Children:
|
Children:
|
||||||
Checkbox@WAITING_FOR_PLAYERS:
|
Checkbox@WAITING_FOR_PLAYERS:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-waiting-for-players
|
Text: checkbox-multiplayer-filter-panel-waiting-for-players
|
||||||
TextColor: 32CD32
|
TextColor: 32CD32
|
||||||
@@ -55,14 +55,14 @@ ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
|||||||
Checkbox@EMPTY:
|
Checkbox@EMPTY:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-empty
|
Text: checkbox-multiplayer-filter-panel-empty
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Checkbox@PASSWORD_PROTECTED:
|
Checkbox@PASSWORD_PROTECTED:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 55
|
Y: 55
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-password-protected
|
Text: checkbox-multiplayer-filter-panel-password-protected
|
||||||
TextColor: FF0000
|
TextColor: FF0000
|
||||||
@@ -70,7 +70,7 @@ ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
|||||||
Checkbox@ALREADY_STARTED:
|
Checkbox@ALREADY_STARTED:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 80
|
Y: 80
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-already-started
|
Text: checkbox-multiplayer-filter-panel-already-started
|
||||||
TextColor: FFA500
|
TextColor: FFA500
|
||||||
@@ -78,7 +78,7 @@ ScrollPanel@MULTIPLAYER_FILTER_PANEL:
|
|||||||
Checkbox@INCOMPATIBLE_VERSION:
|
Checkbox@INCOMPATIBLE_VERSION:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 105
|
Y: 105
|
||||||
Width: PARENT_RIGHT - 29
|
Width: PARENT_WIDTH - 29
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-multiplayer-filter-panel-incompatible-version
|
Text: checkbox-multiplayer-filter-panel-incompatible-version
|
||||||
TextColor: BEBEBE
|
TextColor: BEBEBE
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Background@MULTIPLAYER_CREATESERVER_PANEL:
|
Background@MULTIPLAYER_CREATESERVER_PANEL:
|
||||||
Logic: ServerCreationLogic
|
Logic: ServerCreationLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 530
|
Width: 530
|
||||||
Height: 315
|
Height: 315
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-multiplayer-createserver-panel-title
|
Text: label-multiplayer-createserver-panel-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -86,8 +86,8 @@ Background@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Container@NOTICES_LAN:
|
Container@NOTICES_LAN:
|
||||||
X: 25
|
X: 25
|
||||||
Y: 176
|
Y: 176
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@ADVERTISING:
|
Label@ADVERTISING:
|
||||||
Width: 305
|
Width: 305
|
||||||
@@ -120,8 +120,8 @@ Background@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Container@NOTICES_NO_UPNP:
|
Container@NOTICES_NO_UPNP:
|
||||||
X: 25
|
X: 25
|
||||||
Y: 176
|
Y: 176
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@ADVERTISING:
|
Label@ADVERTISING:
|
||||||
Width: 305
|
Width: 305
|
||||||
@@ -169,8 +169,8 @@ Background@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Container@NOTICES_UPNP:
|
Container@NOTICES_UPNP:
|
||||||
X: 25
|
X: 25
|
||||||
Y: 176
|
Y: 176
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@ADVERTISING:
|
Label@ADVERTISING:
|
||||||
Width: 305
|
Width: 305
|
||||||
@@ -200,20 +200,20 @@ Background@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Align: Left
|
Align: Left
|
||||||
Text: label-notices-upnp-settings-a
|
Text: label-notices-upnp-settings-a
|
||||||
Container@MAP_PREVIEW_ROOT:
|
Container@MAP_PREVIEW_ROOT:
|
||||||
X: PARENT_RIGHT - 194
|
X: PARENT_WIDTH - 194
|
||||||
Y: 45
|
Y: 45
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 250
|
Height: 250
|
||||||
Button@MAP_BUTTON:
|
Button@MAP_BUTTON:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-multiplayer-createserver-panel-change-map
|
Text: button-multiplayer-createserver-panel-change-map
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
@@ -221,8 +221,8 @@ Background@MULTIPLAYER_CREATESERVER_PANEL:
|
|||||||
Key: escape
|
Key: escape
|
||||||
Button@CREATE_BUTTON:
|
Button@CREATE_BUTTON:
|
||||||
Key: return
|
Key: return
|
||||||
X: PARENT_RIGHT - 2 * WIDTH - 30
|
X: PARENT_WIDTH - 2 * WIDTH - 30
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-multiplayer-createserver-panel-create
|
Text: button-multiplayer-createserver-panel-create
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Background@DIRECTCONNECT_PANEL:
|
Background@DIRECTCONNECT_PANEL:
|
||||||
Logic: DirectConnectLogic
|
Logic: DirectConnectLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 450
|
Width: 450
|
||||||
Height: 160
|
Height: 160
|
||||||
Children:
|
Children:
|
||||||
@@ -41,16 +41,16 @@ Background@DIRECTCONNECT_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Type: Integer
|
Type: Integer
|
||||||
Button@JOIN_BUTTON:
|
Button@JOIN_BUTTON:
|
||||||
X: PARENT_RIGHT - 430
|
X: PARENT_WIDTH - 430
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-directconnect-panel-join
|
Text: button-directconnect-panel-join
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: return
|
Key: return
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-cancel
|
Text: button-cancel
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Background@MUSIC_PANEL:
|
Background@MUSIC_PANEL:
|
||||||
Logic: MusicPlayerLogic
|
Logic: MusicPlayerLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 410
|
Width: 410
|
||||||
Height: 500
|
Height: 500
|
||||||
Children:
|
Children:
|
||||||
@@ -9,11 +9,11 @@ Background@MUSIC_PANEL:
|
|||||||
ScrollPanel@MUSIC_LIST:
|
ScrollPanel@MUSIC_LIST:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 45
|
Y: 45
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: PARENT_BOTTOM - 175
|
Height: PARENT_HEIGHT - 175
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@MUSIC_TEMPLATE:
|
ScrollItem@MUSIC_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -22,19 +22,19 @@ Background@MUSIC_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: MUSIC_TOOLTIP_CONTAINER
|
TooltipContainer: MUSIC_TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Label@LENGTH:
|
Label@LENGTH:
|
||||||
Width: 50
|
Width: 50
|
||||||
X: PARENT_RIGHT - 60
|
X: PARENT_WIDTH - 60
|
||||||
Align: Right
|
Align: Right
|
||||||
Height: 25
|
Height: 25
|
||||||
Container@LABEL_CONTAINER:
|
Container@LABEL_CONTAINER:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: 100
|
Width: 100
|
||||||
@@ -43,7 +43,7 @@ Background@MUSIC_PANEL:
|
|||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Label@TYPE:
|
Label@TYPE:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Width: 95
|
Width: 95
|
||||||
Text: label-music-controls-length
|
Text: label-music-controls-length
|
||||||
@@ -51,8 +51,8 @@ Background@MUSIC_PANEL:
|
|||||||
Font: Bold
|
Font: Bold
|
||||||
Container@BUTTONS:
|
Container@BUTTONS:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 85
|
Y: PARENT_HEIGHT - HEIGHT - 85
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Children:
|
Children:
|
||||||
Button@BUTTON_PREV:
|
Button@BUTTON_PREV:
|
||||||
Width: 26
|
Width: 26
|
||||||
@@ -110,58 +110,58 @@ Background@MUSIC_PANEL:
|
|||||||
ImageCollection: music
|
ImageCollection: music
|
||||||
ImageName: next
|
ImageName: next
|
||||||
ExponentialSlider@MUSIC_SLIDER:
|
ExponentialSlider@MUSIC_SLIDER:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Y: 3
|
Y: 3
|
||||||
Width: PARENT_RIGHT - 145
|
Width: PARENT_WIDTH - 145
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Label@TIME_LABEL:
|
Label@TIME_LABEL:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 95 - 3
|
Y: PARENT_HEIGHT - HEIGHT - 95 - 3
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Checkbox@SHUFFLE:
|
Checkbox@SHUFFLE:
|
||||||
X: 20
|
X: 20
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 95
|
Y: PARENT_HEIGHT - HEIGHT - 95
|
||||||
Width: 85
|
Width: 85
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-music-controls-shuffle
|
Text: checkbox-music-controls-shuffle
|
||||||
Checkbox@REPEAT:
|
Checkbox@REPEAT:
|
||||||
X: PARENT_RIGHT - 15 - WIDTH
|
X: PARENT_WIDTH - 15 - WIDTH
|
||||||
Y: PARENT_BOTTOM - HEIGHT - 95
|
Y: PARENT_HEIGHT - HEIGHT - 95
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: checkbox-music-controls-loop
|
Text: checkbox-music-controls-loop
|
||||||
Container@NO_MUSIC_LABEL:
|
Container@NO_MUSIC_LABEL:
|
||||||
X: 20
|
X: 20
|
||||||
Y: (PARENT_BOTTOM - HEIGHT - 95) / 2
|
Y: (PARENT_HEIGHT - HEIGHT - 95) / 2
|
||||||
Width: PARENT_RIGHT - 40
|
Width: PARENT_WIDTH - 40
|
||||||
Height: 75
|
Height: 75
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-title
|
Text: label-no-music-title
|
||||||
Label@DESCA:
|
Label@DESCA:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-a
|
Text: label-no-music-desc-a
|
||||||
Label@DESCB:
|
Label@DESCB:
|
||||||
Y: 40
|
Y: 40
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-music-desc-b
|
Text: label-no-music-desc-b
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
@@ -169,7 +169,7 @@ Background@MUSIC_PANEL:
|
|||||||
Key: escape
|
Key: escape
|
||||||
Label@MUTE_LABEL:
|
Label@MUTE_LABEL:
|
||||||
X: 25
|
X: 25
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 300
|
Width: 300
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Small
|
Font: Small
|
||||||
|
|||||||
@@ -4,114 +4,114 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
Height: 100
|
Height: 100
|
||||||
Children:
|
Children:
|
||||||
Background@PROFILE_HEADER:
|
Background@PROFILE_HEADER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 50
|
Height: 50
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@PROFILE_NAME:
|
Label@PROFILE_NAME:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: MediumBold
|
Font: MediumBold
|
||||||
Label@PROFILE_RANK:
|
Label@PROFILE_RANK:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 24
|
Y: 24
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Button@DESTROY_KEY:
|
Button@DESTROY_KEY:
|
||||||
X: PARENT_RIGHT - 70
|
X: PARENT_WIDTH - 70
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: 60
|
Width: 60
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-profile-header-logout
|
Text: button-profile-header-logout
|
||||||
Background@BADGES_CONTAINER:
|
Background@BADGES_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Y: 48
|
Y: 48
|
||||||
Visible: false
|
Visible: false
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Background@GENERATE_KEYS:
|
Background@GENERATE_KEYS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 5
|
Y: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generate-keys-desc-a
|
Text: label-generate-keys-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 21
|
Y: 21
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generate-keys-desc-b
|
Text: label-generate-keys-desc-b
|
||||||
Label@DESC_C:
|
Label@DESC_C:
|
||||||
Y: 37
|
Y: 37
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generate-keys-desc-c
|
Text: label-generate-keys-desc-c
|
||||||
Button@GENERATE_KEY:
|
Button@GENERATE_KEY:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: 240
|
Width: 240
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-generate-keys-key
|
Text: button-generate-keys-key
|
||||||
Background@GENERATING_KEYS:
|
Background@GENERATING_KEYS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 13
|
Y: 13
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generating-keys-desc-a
|
Text: label-generating-keys-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 29
|
Y: 29
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-generating-keys-desc-b
|
Text: label-generating-keys-desc-b
|
||||||
ProgressBar:
|
ProgressBar:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: 240
|
Width: 240
|
||||||
Height: 20
|
Height: 20
|
||||||
Indeterminate: true
|
Indeterminate: true
|
||||||
Background@REGISTER_FINGERPRINT:
|
Background@REGISTER_FINGERPRINT:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-register-fingerprint-desc-a
|
Text: label-register-fingerprint-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 18
|
Y: 18
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-register-fingerprint-desc-b
|
Text: label-register-fingerprint-desc-b
|
||||||
Label@DESC_C:
|
Label@DESC_C:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -131,45 +131,45 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-continue
|
Text: button-continue
|
||||||
Background@CHECKING_FINGERPRINT:
|
Background@CHECKING_FINGERPRINT:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 13
|
Y: 13
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-checking-fingerprint-desc-a
|
Text: label-checking-fingerprint-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 29
|
Y: 29
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-checking-fingerprint-desc-b
|
Text: label-checking-fingerprint-desc-b
|
||||||
ProgressBar:
|
ProgressBar:
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
X: (PARENT_WIDTH - WIDTH) / 2
|
||||||
Y: 70
|
Y: 70
|
||||||
Width: 240
|
Width: 240
|
||||||
Height: 20
|
Height: 20
|
||||||
Indeterminate: true
|
Indeterminate: true
|
||||||
Background@FINGERPRINT_NOT_FOUND:
|
Background@FINGERPRINT_NOT_FOUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 13
|
Y: 13
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-fingerprint-not-found-desc-a
|
Text: label-fingerprint-not-found-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 29
|
Y: 29
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -182,20 +182,20 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Text: button-back
|
Text: button-back
|
||||||
Background@CONNECTION_ERROR:
|
Background@CONNECTION_ERROR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Background: dialog2
|
Background: dialog2
|
||||||
Children:
|
Children:
|
||||||
Label@DESC_A:
|
Label@DESC_A:
|
||||||
Y: 13
|
Y: 13
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-connection-error-desc-a
|
Text: label-connection-error-desc-a
|
||||||
Label@DESC_B:
|
Label@DESC_B:
|
||||||
Y: 29
|
Y: 29
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Small
|
Font: Small
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -210,11 +210,11 @@ Container@LOCAL_PROFILE_PANEL:
|
|||||||
|
|
||||||
Container@PLAYER_PROFILE_BADGES_INSERT:
|
Container@PLAYER_PROFILE_BADGES_INSERT:
|
||||||
Logic: PlayerProfileBadgesLogic
|
Logic: PlayerProfileBadgesLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 110
|
Height: 110
|
||||||
Children:
|
Children:
|
||||||
Container@BADGE_TEMPLATE:
|
Container@BADGE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Badge@ICON:
|
Badge@ICON:
|
||||||
@@ -225,6 +225,6 @@ Container@PLAYER_PROFILE_BADGES_INSERT:
|
|||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 36
|
X: 36
|
||||||
Y: 2
|
Y: 2
|
||||||
Width: PARENT_RIGHT - 60
|
Width: PARENT_WIDTH - 60
|
||||||
Height: 24
|
Height: 24
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
Background@REPLAYBROWSER_PANEL:
|
Background@REPLAYBROWSER_PANEL:
|
||||||
Logic: ReplayBrowserLogic
|
Logic: ReplayBrowserLogic
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
Children:
|
Children:
|
||||||
Label@TITLE:
|
Label@TITLE:
|
||||||
Y: 16
|
Y: 16
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-replaybrowser-panel-title
|
Text: label-replaybrowser-panel-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -16,7 +16,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
X: 20
|
X: 20
|
||||||
Y: 37
|
Y: 37
|
||||||
Width: 280
|
Width: 280
|
||||||
Height: PARENT_BOTTOM - 75
|
Height: PARENT_HEIGHT - 75
|
||||||
Children:
|
Children:
|
||||||
Container@FILTERS:
|
Container@FILTERS:
|
||||||
Width: 280
|
Width: 280
|
||||||
@@ -25,7 +25,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
Label@FILTERS_TITLE:
|
Label@FILTERS_TITLE:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -40,7 +40,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_GAMETYPE_DROPDOWNBUTTON:
|
DropDownButton@FLT_GAMETYPE_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_DATE_DESC:
|
Label@FLT_DATE_DESC:
|
||||||
@@ -53,7 +53,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_DATE_DROPDOWNBUTTON:
|
DropDownButton@FLT_DATE_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_DURATION_DESC:
|
Label@FLT_DURATION_DESC:
|
||||||
@@ -66,7 +66,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_DURATION_DROPDOWNBUTTON:
|
DropDownButton@FLT_DURATION_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 90
|
Y: 90
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_MAPNAME_DESC:
|
Label@FLT_MAPNAME_DESC:
|
||||||
@@ -79,7 +79,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_MAPNAME_DROPDOWNBUTTON:
|
DropDownButton@FLT_MAPNAME_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 120
|
Y: 120
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_PLAYER_DESC:
|
Label@FLT_PLAYER_DESC:
|
||||||
@@ -92,7 +92,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_PLAYER_DROPDOWNBUTTON:
|
DropDownButton@FLT_PLAYER_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 150
|
Y: 150
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-flt-player
|
Text: dropdownbutton-filters-flt-player
|
||||||
Label@FLT_OUTCOME_DESC:
|
Label@FLT_OUTCOME_DESC:
|
||||||
@@ -105,7 +105,7 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_OUTCOME_DROPDOWNBUTTON:
|
DropDownButton@FLT_OUTCOME_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 180
|
Y: 180
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Label@FLT_FACTION_DESC:
|
Label@FLT_FACTION_DESC:
|
||||||
@@ -118,45 +118,45 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
DropDownButton@FLT_FACTION_DROPDOWNBUTTON:
|
DropDownButton@FLT_FACTION_DROPDOWNBUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 210
|
Y: 210
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: dropdownbutton-filters-any
|
Text: dropdownbutton-filters-any
|
||||||
Button@FLT_RESET_BUTTON:
|
Button@FLT_RESET_BUTTON:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 250
|
Y: 250
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-filters-flt-reset
|
Text: button-filters-flt-reset
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@MANAGEMENT:
|
Container@MANAGEMENT:
|
||||||
X: 85
|
X: 85
|
||||||
Y: 395
|
Y: 395
|
||||||
Width: PARENT_RIGHT - 85
|
Width: PARENT_WIDTH - 85
|
||||||
Children:
|
Children:
|
||||||
Label@MANAGE_TITLE:
|
Label@MANAGE_TITLE:
|
||||||
Y: 1
|
Y: 1
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-management-manage-title
|
Text: label-management-manage-title
|
||||||
Button@MNG_RENSEL_BUTTON:
|
Button@MNG_RENSEL_BUTTON:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-management-mng-rensel
|
Text: button-management-mng-rensel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: F2
|
Key: F2
|
||||||
Button@MNG_DELSEL_BUTTON:
|
Button@MNG_DELSEL_BUTTON:
|
||||||
Y: 60
|
Y: 60
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-management-mng-delsel
|
Text: button-management-mng-delsel
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: Delete
|
Key: Delete
|
||||||
Button@MNG_DELALL_BUTTON:
|
Button@MNG_DELALL_BUTTON:
|
||||||
Y: 90
|
Y: 90
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-management-mng-delall
|
Text: button-management-mng-delall
|
||||||
Font: Bold
|
Font: Bold
|
||||||
@@ -164,11 +164,11 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
X: 311
|
X: 311
|
||||||
Y: 37
|
Y: 37
|
||||||
Width: 384
|
Width: 384
|
||||||
Height: PARENT_BOTTOM - 37 - 55
|
Height: PARENT_HEIGHT - 37 - 55
|
||||||
Children:
|
Children:
|
||||||
Label@REPLAYBROWSER_LABEL_TITLE:
|
Label@REPLAYBROWSER_LABEL_TITLE:
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: label-replay-list-container-replaybrowser-title
|
Text: label-replay-list-container-replaybrowser-title
|
||||||
Align: Center
|
Align: Center
|
||||||
@@ -176,12 +176,12 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
ScrollPanel@REPLAY_LIST:
|
ScrollPanel@REPLAY_LIST:
|
||||||
X: 0
|
X: 0
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 30
|
Height: PARENT_HEIGHT - 30
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@REPLAY_TEMPLATE:
|
ScrollItem@REPLAY_TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Visible: false
|
Visible: false
|
||||||
@@ -189,36 +189,36 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
LabelWithTooltip@TITLE:
|
LabelWithTooltip@TITLE:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Container@MAP_PREVIEW_ROOT:
|
Container@MAP_PREVIEW_ROOT:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 67
|
Y: 67
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: 250
|
Height: 250
|
||||||
Container@REPLAY_INFO:
|
Container@REPLAY_INFO:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 267
|
Y: 267
|
||||||
Width: 174
|
Width: 174
|
||||||
Height: PARENT_BOTTOM - 267 - 45
|
Height: PARENT_HEIGHT - 267 - 45
|
||||||
Children:
|
Children:
|
||||||
Label@DURATION:
|
Label@DURATION:
|
||||||
Y: 19
|
Y: 19
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 15
|
Height: 15
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollPanel@PLAYER_LIST:
|
ScrollPanel@PLAYER_LIST:
|
||||||
Y: 40
|
Y: 40
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 50
|
Height: PARENT_HEIGHT - 50
|
||||||
IgnoreChildMouseOver: true
|
IgnoreChildMouseOver: true
|
||||||
Children:
|
Children:
|
||||||
ScrollItem@HEADER:
|
ScrollItem@HEADER:
|
||||||
Background: scrollheader
|
Background: scrollheader
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 13
|
Height: 13
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -226,11 +226,11 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Align: Center
|
Align: Center
|
||||||
ScrollItem@TEMPLATE:
|
ScrollItem@TEMPLATE:
|
||||||
Width: PARENT_RIGHT - 27
|
Width: PARENT_WIDTH - 27
|
||||||
Height: 25
|
Height: 25
|
||||||
X: 2
|
X: 2
|
||||||
Y: 0
|
Y: 0
|
||||||
@@ -243,24 +243,24 @@ Background@REPLAYBROWSER_PANEL:
|
|||||||
Height: 16
|
Height: 16
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
X: 40
|
X: 40
|
||||||
Width: PARENT_RIGHT - 50
|
Width: PARENT_WIDTH - 50
|
||||||
Height: 25
|
Height: 25
|
||||||
Shadow: True
|
Shadow: True
|
||||||
Label@NOFLAG_LABEL:
|
Label@NOFLAG_LABEL:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Button@WATCH_BUTTON:
|
Button@WATCH_BUTTON:
|
||||||
X: PARENT_RIGHT - 140 - 130
|
X: PARENT_WIDTH - 140 - 130
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-replaybrowser-panel-watch
|
Text: button-replaybrowser-panel-watch
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: return
|
Key: return
|
||||||
Button@CANCEL_BUTTON:
|
Button@CANCEL_BUTTON:
|
||||||
X: PARENT_RIGHT - 140
|
X: PARENT_WIDTH - 140
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
|
|||||||
@@ -1,97 +1,97 @@
|
|||||||
Container@ADVANCED_PANEL:
|
Container@ADVANCED_PANEL:
|
||||||
Logic: AdvancedSettingsLogic
|
Logic: AdvancedSettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@NETWORK_SECTION_HEADER:
|
Background@NETWORK_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-network-section-header
|
Text: label-network-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@NAT_DISCOVERY_CONTAINER:
|
Container@NAT_DISCOVERY_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@NAT_DISCOVERY:
|
Checkbox@NAT_DISCOVERY:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-nat-discovery-container
|
Text: checkbox-nat-discovery-container
|
||||||
Container@FETCH_NEWS_CHECKBOX_CONTAINER:
|
Container@FETCH_NEWS_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@FETCH_NEWS_CHECKBOX:
|
Checkbox@FETCH_NEWS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-fetch-news-container
|
Text: checkbox-fetch-news-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@PERFGRAPH_CHECKBOX_CONTAINER:
|
Container@PERFGRAPH_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PERFGRAPH_CHECKBOX:
|
Checkbox@PERFGRAPH_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-perfgraph-container
|
Text: checkbox-perfgraph-container
|
||||||
Container@CHECK_VERSION_CHECKBOX_CONTAINER:
|
Container@CHECK_VERSION_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CHECK_VERSION_CHECKBOX:
|
Checkbox@CHECK_VERSION_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-check-version-container
|
Text: checkbox-check-version-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@PERFTEXT_CHECKBOX_CONTAINER:
|
Container@PERFTEXT_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PERFTEXT_CHECKBOX:
|
Checkbox@PERFTEXT_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-perftext-container
|
Text: checkbox-perftext-container
|
||||||
Container@SENDSYSINFO_CHECKBOX_CONTAINER:
|
Container@SENDSYSINFO_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@SENDSYSINFO_CHECKBOX:
|
Checkbox@SENDSYSINFO_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-sendsysinfo-container
|
Text: checkbox-sendsysinfo-container
|
||||||
Label@SENDSYSINFO_DESC:
|
Label@SENDSYSINFO_DESC:
|
||||||
Y: 15
|
Y: 15
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 30
|
Height: 30
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
WordWrap: True
|
WordWrap: True
|
||||||
@@ -99,99 +99,99 @@ Container@ADVANCED_PANEL:
|
|||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@DEBUG_SECTION_HEADER:
|
Background@DEBUG_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-debug-section-header
|
Text: label-debug-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 40
|
Height: 40
|
||||||
Children:
|
Children:
|
||||||
Container@DEBUG_HIDDEN_CONTAINER:
|
Container@DEBUG_HIDDEN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Children:
|
Children:
|
||||||
Label@A:
|
Label@A:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-debug-hidden-container-a
|
Text: label-debug-hidden-container-a
|
||||||
Align: Center
|
Align: Center
|
||||||
Label@B:
|
Label@B:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-debug-hidden-container-b
|
Text: label-debug-hidden-container-b
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@BOTDEBUG_CHECKBOX_CONTAINER:
|
Container@BOTDEBUG_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@BOTDEBUG_CHECKBOX:
|
Checkbox@BOTDEBUG_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-botdebug-container
|
Text: checkbox-botdebug-container
|
||||||
Container@CHECKBOTSYNC_CHECKBOX_CONTAINER:
|
Container@CHECKBOTSYNC_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CHECKBOTSYNC_CHECKBOX:
|
Checkbox@CHECKBOTSYNC_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-checkbotsync-container
|
Text: checkbox-checkbotsync-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@LUADEBUG_CHECKBOX_CONTAINER:
|
Container@LUADEBUG_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@LUADEBUG_CHECKBOX:
|
Checkbox@LUADEBUG_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-luadebug-container
|
Text: checkbox-luadebug-container
|
||||||
Container@CHECKUNSYNCED_CHECKBOX_CONTAINER:
|
Container@CHECKUNSYNCED_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CHECKUNSYNCED_CHECKBOX:
|
Checkbox@CHECKUNSYNCED_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-checkunsynced-container
|
Text: checkbox-checkunsynced-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@REPLAY_COMMANDS_CHECKBOX_CONTAINER:
|
Container@REPLAY_COMMANDS_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@REPLAY_COMMANDS_CHECKBOX:
|
Checkbox@REPLAY_COMMANDS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-replay-commands-container
|
Text: checkbox-replay-commands-container
|
||||||
Container@PERFLOGGING_CHECKBOX_CONTAINER:
|
Container@PERFLOGGING_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PERFLOGGING_CHECKBOX:
|
Checkbox@PERFLOGGING_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-perflogging-container
|
Text: checkbox-perflogging-container
|
||||||
|
|||||||
@@ -1,144 +1,144 @@
|
|||||||
Container@AUDIO_PANEL:
|
Container@AUDIO_PANEL:
|
||||||
Logic: AudioSettingsLogic
|
Logic: AudioSettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@AUDIO_SECTION_HEADER:
|
Background@AUDIO_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-audio-section-header
|
Text: label-audio-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@NO_AUDIO_DEVICE_CONTAINER:
|
Container@NO_AUDIO_DEVICE_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Children:
|
Children:
|
||||||
Label@NO_AUDIO_DEVICE:
|
Label@NO_AUDIO_DEVICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-no-audio-device-container
|
Text: label-no-audio-device-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@CASH_TICKS_CONTAINER:
|
Container@CASH_TICKS_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CASH_TICKS:
|
Checkbox@CASH_TICKS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-cash-ticks-container
|
Text: checkbox-cash-ticks-container
|
||||||
Container@MUTE_SOUND_CONTAINER:
|
Container@MUTE_SOUND_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@MUTE_SOUND:
|
Checkbox@MUTE_SOUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-mute-sound-container
|
Text: checkbox-mute-sound-container
|
||||||
Container@SOUND_VOLUME_CONTAINER:
|
Container@SOUND_VOLUME_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@SOUND_LABEL:
|
Label@SOUND_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-sound-volume-container
|
Text: label-sound-volume-container
|
||||||
ExponentialSlider@SOUND_VOLUME:
|
ExponentialSlider@SOUND_VOLUME:
|
||||||
Y: 30
|
Y: 30
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MUTE_BACKGROUND_MUSIC_CONTAINER:
|
Container@MUTE_BACKGROUND_MUSIC_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@MUTE_BACKGROUND_MUSIC:
|
Checkbox@MUTE_BACKGROUND_MUSIC:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-mute-background-music-container.label
|
Text: checkbox-mute-background-music-container.label
|
||||||
TooltipText: checkbox-mute-background-music-container.tooltip
|
TooltipText: checkbox-mute-background-music-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@MUSIC_VOLUME_CONTAINER:
|
Container@MUSIC_VOLUME_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MUSIC_LABEL:
|
Label@MUSIC_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-music-title-volume-container
|
Text: label-music-title-volume-container
|
||||||
ExponentialSlider@MUSIC_VOLUME:
|
ExponentialSlider@MUSIC_VOLUME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@AUDIO_DEVICE_CONTAINER:
|
Container@AUDIO_DEVICE_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@AUDIO_DEVICE_LABEL:
|
Label@AUDIO_DEVICE_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-audio-device-container
|
Text: label-audio-device-container
|
||||||
DropDownButton@AUDIO_DEVICE:
|
DropDownButton@AUDIO_DEVICE:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Container@VIDEO_VOLUME_CONTAINER:
|
Container@VIDEO_VOLUME_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@VIDEO_LABEL:
|
Label@VIDEO_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-video-volume-container
|
Text: label-video-volume-container
|
||||||
ExponentialSlider@VIDEO_VOLUME:
|
ExponentialSlider@VIDEO_VOLUME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@RESTART_REQUIRED_CONTAINER:
|
Container@RESTART_REQUIRED_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 10
|
Width: PARENT_WIDTH - 10
|
||||||
Children:
|
Children:
|
||||||
Label@AUDIO_RESTART_REQUIRED_DESC:
|
Label@AUDIO_RESTART_REQUIRED_DESC:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Align: Center
|
Align: Center
|
||||||
|
|||||||
@@ -1,53 +1,53 @@
|
|||||||
Container@DISPLAY_PANEL:
|
Container@DISPLAY_PANEL:
|
||||||
Logic: DisplaySettingsLogic
|
Logic: DisplaySettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@PROFILE_SECTION_HEADER:
|
Background@PROFILE_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-profile-section-header
|
Text: label-profile-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@PLAYER_CONTAINER:
|
Container@PLAYER_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@PLAYER:
|
LabelForInput@PLAYER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-player-container
|
Text: label-player-container
|
||||||
For: PLAYERNAME
|
For: PLAYERNAME
|
||||||
TextField@PLAYERNAME:
|
TextField@PLAYERNAME:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
MaxLength: 16
|
MaxLength: 16
|
||||||
Text: Name
|
Text: Name
|
||||||
Container@PLAYERCOLOR_CONTAINER:
|
Container@PLAYERCOLOR_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@COLOR:
|
LabelForInput@COLOR:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-playercolor-container-color
|
Text: label-playercolor-container-color
|
||||||
For: PLAYERCOLOR
|
For: PLAYERCOLOR
|
||||||
@@ -61,193 +61,193 @@ Container@DISPLAY_PANEL:
|
|||||||
ColorBlock@COLORBLOCK:
|
ColorBlock@COLORBLOCK:
|
||||||
X: 5
|
X: 5
|
||||||
Y: 6
|
Y: 6
|
||||||
Width: PARENT_RIGHT - 35
|
Width: PARENT_WIDTH - 35
|
||||||
Height: PARENT_BOTTOM - 12
|
Height: PARENT_HEIGHT - 12
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@DISPLAY_SECTION_HEADER:
|
Background@DISPLAY_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-display-section-header
|
Text: label-display-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
Container@BATTLEFIELD_CAMERA_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@BATTLEFIELD_CAMERA:
|
Label@BATTLEFIELD_CAMERA:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-battlefield-camera-dropdown
|
Text: label-battlefield-camera-dropdown
|
||||||
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
DropDownButton@BATTLEFIELD_CAMERA_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@TARGET_LINES_DROPDOWN_CONTAINER:
|
Container@TARGET_LINES_DROPDOWN_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@TARGET_LINES:
|
Label@TARGET_LINES:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-target-lines-dropdown-container
|
Text: label-target-lines-dropdown-container
|
||||||
DropDownButton@TARGET_LINES_DROPDOWN:
|
DropDownButton@TARGET_LINES_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
Container@UI_SCALE_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelForInput@UI_SCALE:
|
LabelForInput@UI_SCALE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-ui-scale-dropdown
|
Text: label-ui-scale-dropdown
|
||||||
For: UI_SCALE_DROPDOWN
|
For: UI_SCALE_DROPDOWN
|
||||||
DropDownButton@UI_SCALE_DROPDOWN:
|
DropDownButton@UI_SCALE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@STATUS_BAR_DROPDOWN_CONTAINER:
|
Container@STATUS_BAR_DROPDOWN_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@STATUS_BARS:
|
Label@STATUS_BARS:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-status-bar-dropdown-container-bars
|
Text: label-status-bar-dropdown-container-bars
|
||||||
DropDownButton@STATUS_BAR_DROPDOWN:
|
DropDownButton@STATUS_BAR_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
Container@CURSORDOUBLE_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@CURSORDOUBLE_CHECKBOX:
|
Checkbox@CURSORDOUBLE_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-cursordouble-container
|
Text: checkbox-cursordouble-container
|
||||||
Container@PLAYER_STANCE_COLORS_CHECKBOX_CONTAINER:
|
Container@PLAYER_STANCE_COLORS_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PLAYER_STANCE_COLORS_CHECKBOX:
|
Checkbox@PLAYER_STANCE_COLORS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-player-stance-colors-container.label
|
Text: checkbox-player-stance-colors-container.label
|
||||||
TooltipText: checkbox-player-stance-colors-container.tooltip
|
TooltipText: checkbox-player-stance-colors-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@UI_FEEDBACK_CHECKBOX_CONTAINER:
|
Container@UI_FEEDBACK_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 10
|
Width: PARENT_WIDTH / 2 - 10
|
||||||
Children:
|
Children:
|
||||||
Checkbox@UI_FEEDBACK_CHECKBOX:
|
Checkbox@UI_FEEDBACK_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-ui-feedback-container.label
|
Text: checkbox-ui-feedback-container.label
|
||||||
TooltipText: checkbox-ui-feedback-container.tooltip
|
TooltipText: checkbox-ui-feedback-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@TRANSIENTS_CHECKBOX_CONTAINER:
|
Container@TRANSIENTS_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@TRANSIENTS_CHECKBOX:
|
Checkbox@TRANSIENTS_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-transients-container.label
|
Text: checkbox-transients-container.label
|
||||||
TooltipText: checkbox-transients-container.tooltip
|
TooltipText: checkbox-transients-container.tooltip
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@PAUSE_SHELLMAP_CHECKBOX_CONTAINER:
|
Container@PAUSE_SHELLMAP_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 10
|
Width: PARENT_WIDTH / 2 - 10
|
||||||
Children:
|
Children:
|
||||||
Checkbox@PAUSE_SHELLMAP_CHECKBOX:
|
Checkbox@PAUSE_SHELLMAP_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-pause-shellmap-container
|
Text: checkbox-pause-shellmap-container
|
||||||
Container@HIDE_REPLAY_CHAT_CHECKBOX_CONTAINER:
|
Container@HIDE_REPLAY_CHAT_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 10
|
Width: PARENT_WIDTH / 2 - 10
|
||||||
Children:
|
Children:
|
||||||
Checkbox@HIDE_REPLAY_CHAT_CHECKBOX:
|
Checkbox@HIDE_REPLAY_CHAT_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-hide-replay-chat-container
|
Text: checkbox-hide-replay-chat-container
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Background@VIDEO_SECTION_HEADER:
|
Background@VIDEO_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-video-section-header
|
Text: label-video-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@VIDEO_MODE_DROPDOWN_CONTAINER:
|
Container@VIDEO_MODE_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@VIDEO_MODE:
|
Label@VIDEO_MODE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-video-mode-dropdown-container
|
Text: label-video-mode-dropdown-container
|
||||||
DropDownButton@MODE_DROPDOWN:
|
DropDownButton@MODE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: dropdownbutton-video-mode-dropdown-container
|
Text: dropdownbutton-video-mode-dropdown-container
|
||||||
Container@WINDOW_RESOLUTION_CONTAINER:
|
Container@WINDOW_RESOLUTION_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@WINDOW_SIZE:
|
Label@WINDOW_SIZE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-window-resolution-container-size
|
Text: label-window-resolution-container-size
|
||||||
TextField@WINDOW_WIDTH:
|
TextField@WINDOW_WIDTH:
|
||||||
@@ -272,88 +272,88 @@ Container@DISPLAY_PANEL:
|
|||||||
MaxLength: 5
|
MaxLength: 5
|
||||||
Type: Integer
|
Type: Integer
|
||||||
Container@DISPLAY_SELECTION_CONTAINER:
|
Container@DISPLAY_SELECTION_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@DISPLAY_SELECTION_LABEL:
|
Label@DISPLAY_SELECTION_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-display-selection-container
|
Text: label-display-selection-container
|
||||||
DropDownButton@DISPLAY_SELECTION_DROPDOWN:
|
DropDownButton@DISPLAY_SELECTION_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: dropdownbutton-display-selection-container-dropdown
|
Text: dropdownbutton-display-selection-container-dropdown
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@FRAME_LIMIT_CHECKBOX_CONTAINER:
|
Container@FRAME_LIMIT_CHECKBOX_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@FRAME_LIMIT_CHECKBOX:
|
Checkbox@FRAME_LIMIT_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@FRAME_LIMIT_SLIDER_CONTAINER:
|
Container@FRAME_LIMIT_SLIDER_CONTAINER:
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Slider@FRAME_LIMIT_SLIDER:
|
Slider@FRAME_LIMIT_SLIDER:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 20
|
Ticks: 20
|
||||||
MinimumValue: 50
|
MinimumValue: 50
|
||||||
MaximumValue: 240
|
MaximumValue: 240
|
||||||
Container@VSYNC_CHECKBOX_CONTAINER:
|
Container@VSYNC_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@VSYNC_CHECKBOX:
|
Checkbox@VSYNC_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-vsync-container
|
Text: checkbox-vsync-container
|
||||||
Container@FRAME_LIMIT_GAMESPEED_CHECKBOX_CONTAINER:
|
Container@FRAME_LIMIT_GAMESPEED_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@FRAME_LIMIT_GAMESPEED_CHECKBOX:
|
Checkbox@FRAME_LIMIT_GAMESPEED_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-frame-limit-gamespeed-container
|
Text: checkbox-frame-limit-gamespeed-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@GL_PROFILE_DROPDOWN_CONTAINER:
|
Container@GL_PROFILE_DROPDOWN_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@GL_PROFILE:
|
Label@GL_PROFILE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-gl-profile-dropdown-container
|
Text: label-gl-profile-dropdown-container
|
||||||
DropDownButton@GL_PROFILE_DROPDOWN:
|
DropDownButton@GL_PROFILE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 30
|
Height: 30
|
||||||
Children:
|
Children:
|
||||||
Container@RESTART_REQUIRED_CONTAINER:
|
Container@RESTART_REQUIRED_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT - 20
|
Width: PARENT_WIDTH - 20
|
||||||
Children:
|
Children:
|
||||||
Label@VIDEO_RESTART_REQUIRED_DESC:
|
Label@VIDEO_RESTART_REQUIRED_DESC:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Text: label-restart-required-container-video-desc
|
Text: label-restart-required-container-video-desc
|
||||||
|
|||||||
@@ -23,8 +23,8 @@ Container@HOTKEYS_PANEL:
|
|||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Editor Commands:
|
Editor Commands:
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@FILTER_INPUT_LABEL:
|
Label@FILTER_INPUT_LABEL:
|
||||||
Width: 103
|
Width: 103
|
||||||
@@ -36,72 +36,72 @@ Container@HOTKEYS_PANEL:
|
|||||||
Width: 180
|
Width: 180
|
||||||
Height: 25
|
Height: 25
|
||||||
Label@CONTEXT_DROPDOWN_LABEL:
|
Label@CONTEXT_DROPDOWN_LABEL:
|
||||||
X: PARENT_RIGHT - WIDTH - 195 - 5
|
X: PARENT_WIDTH - WIDTH - 195 - 5
|
||||||
Width: 100
|
Width: 100
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Text: label-hotkeys-panel-context-dropdown
|
Text: label-hotkeys-panel-context-dropdown
|
||||||
Align: Right
|
Align: Right
|
||||||
DropDownButton@CONTEXT_DROPDOWN:
|
DropDownButton@CONTEXT_DROPDOWN:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Width: 195
|
Width: 195
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
ScrollPanel@HOTKEY_LIST:
|
ScrollPanel@HOTKEY_LIST:
|
||||||
Y: 35
|
Y: 35
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM - 65 - 35
|
Height: PARENT_HEIGHT - 65 - 35
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 5
|
ItemSpacing: 5
|
||||||
Children:
|
Children:
|
||||||
Container@HEADER:
|
Container@HEADER:
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 18
|
Height: 18
|
||||||
Children:
|
Children:
|
||||||
Background@BACKGROUND:
|
Background@BACKGROUND:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 13
|
Height: 13
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Container@TEMPLATE:
|
Container@TEMPLATE:
|
||||||
Width: (PARENT_RIGHT - 24) / 2 - 10
|
Width: (PARENT_WIDTH - 24) / 2 - 10
|
||||||
Height: 30
|
Height: 30
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@FUNCTION:
|
Label@FUNCTION:
|
||||||
Y: 0 - 1
|
Y: 0 - 1
|
||||||
Width: PARENT_RIGHT - 120 - 5
|
Width: PARENT_WIDTH - 120 - 5
|
||||||
Height: 25
|
Height: 25
|
||||||
Align: Right
|
Align: Right
|
||||||
Button@HOTKEY:
|
Button@HOTKEY:
|
||||||
X: PARENT_RIGHT - WIDTH
|
X: PARENT_WIDTH - WIDTH
|
||||||
Width: 120
|
Width: 120
|
||||||
Height: 25
|
Height: 25
|
||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
Container@HOTKEY_EMPTY_LIST:
|
Container@HOTKEY_EMPTY_LIST:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Visible: false
|
Visible: false
|
||||||
Children:
|
Children:
|
||||||
Label@HOTKEY_EMPTY_LIST_MESSAGE:
|
Label@HOTKEY_EMPTY_LIST_MESSAGE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-hotkey-empty-list-message
|
Text: label-hotkey-empty-list-message
|
||||||
Background@HOTKEY_REMAP_BGND:
|
Background@HOTKEY_REMAP_BGND:
|
||||||
Y: PARENT_BOTTOM - HEIGHT
|
Y: PARENT_HEIGHT - HEIGHT
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 65
|
Height: 65
|
||||||
Background: dialog3
|
Background: dialog3
|
||||||
Children:
|
Children:
|
||||||
Container@HOTKEY_REMAP_DIALOG:
|
Container@HOTKEY_REMAP_DIALOG:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Label@HOTKEY_LABEL:
|
Label@HOTKEY_LABEL:
|
||||||
X: 15
|
X: 15
|
||||||
@@ -122,27 +122,27 @@ Container@HOTKEYS_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Label@ORIGINAL_NOTICE:
|
Label@ORIGINAL_NOTICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Label@DUPLICATE_NOTICE:
|
Label@DUPLICATE_NOTICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Label@READONLY_NOTICE:
|
Label@READONLY_NOTICE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: Tiny
|
Font: Tiny
|
||||||
Text: label-notices-readonly-notice
|
Text: label-notices-readonly-notice
|
||||||
Button@OVERRIDE_HOTKEY_BUTTON:
|
Button@OVERRIDE_HOTKEY_BUTTON:
|
||||||
X: PARENT_RIGHT - 3 * WIDTH - 30
|
X: PARENT_WIDTH - 3 * WIDTH - 30
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 70
|
Width: 70
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-hotkey-remap-dialog-override
|
Text: button-hotkey-remap-dialog-override
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@CLEAR_HOTKEY_BUTTON:
|
Button@CLEAR_HOTKEY_BUTTON:
|
||||||
X: PARENT_RIGHT - 2 * WIDTH - 30
|
X: PARENT_WIDTH - 2 * WIDTH - 30
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 65
|
Width: 65
|
||||||
Height: 25
|
Height: 25
|
||||||
@@ -152,7 +152,7 @@ Container@HOTKEYS_PANEL:
|
|||||||
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
TooltipContainer: SETTINGS_TOOLTIP_CONTAINER
|
||||||
TooltipTemplate: SIMPLE_TOOLTIP
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
Button@RESET_HOTKEY_BUTTON:
|
Button@RESET_HOTKEY_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
X: PARENT_WIDTH - WIDTH - 20
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: 65
|
Width: 65
|
||||||
Height: 25
|
Height: 25
|
||||||
|
|||||||
@@ -1,286 +1,286 @@
|
|||||||
Container@INPUT_PANEL:
|
Container@INPUT_PANEL:
|
||||||
Logic: InputSettingsLogic
|
Logic: InputSettingsLogic
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
ScrollPanel@SETTINGS_SCROLLPANEL:
|
ScrollPanel@SETTINGS_SCROLLPANEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
CollapseHiddenChildren: True
|
CollapseHiddenChildren: True
|
||||||
TopBottomSpacing: 5
|
TopBottomSpacing: 5
|
||||||
ItemSpacing: 10
|
ItemSpacing: 10
|
||||||
Children:
|
Children:
|
||||||
Background@INPUT_SECTION_HEADER:
|
Background@INPUT_SECTION_HEADER:
|
||||||
X: 5
|
X: 5
|
||||||
Width: PARENT_RIGHT - 24 - 10
|
Width: PARENT_WIDTH - 24 - 10
|
||||||
Height: 13
|
Height: 13
|
||||||
Background: separator
|
Background: separator
|
||||||
ClickThrough: True
|
ClickThrough: True
|
||||||
Children:
|
Children:
|
||||||
Label@LABEL:
|
Label@LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Font: TinyBold
|
Font: TinyBold
|
||||||
Align: Center
|
Align: Center
|
||||||
Text: label-input-section-header
|
Text: label-input-section-header
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MOUSE_CONTROL_CONTAINER:
|
Container@MOUSE_CONTROL_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MOUSE_CONTROL_LABEL:
|
Label@MOUSE_CONTROL_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-mouse-control-container
|
Text: label-mouse-control-container
|
||||||
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
DropDownButton@MOUSE_CONTROL_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@ZOOM_MODIFIER_CONTAINER:
|
Container@ZOOM_MODIFIER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@ZOOM_MODIFIER_LABEL:
|
Label@ZOOM_MODIFIER_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-zoom-modifier-container
|
Text: label-zoom-modifier-container
|
||||||
DropDownButton@ZOOM_MODIFIER:
|
DropDownButton@ZOOM_MODIFIER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
Container@MOUSE_CONTROL_DESC_CLASSIC:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 55
|
Y: 55
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-selection
|
Text: label-mouse-control-desc-classic-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-commands
|
Text: label-mouse-control-desc-classic-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-buildings
|
Text: label-mouse-control-desc-classic-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-support
|
Text: label-mouse-control-desc-classic-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom
|
Text: label-mouse-control-desc-classic-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-zoom-modifier
|
Text: label-mouse-control-desc-classic-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-right
|
Text: label-mouse-control-desc-classic-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-scroll-middle
|
Text: label-mouse-control-desc-classic-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-classic-edgescroll
|
Text: label-mouse-control-desc-classic-edgescroll
|
||||||
Container@MOUSE_CONTROL_DESC_MODERN:
|
Container@MOUSE_CONTROL_DESC_MODERN:
|
||||||
X: 10
|
X: 10
|
||||||
Y: 55
|
Y: 55
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
LabelWithHighlight@DESC_SELECTION:
|
LabelWithHighlight@DESC_SELECTION:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-selection
|
Text: label-mouse-control-desc-modern-selection
|
||||||
LabelWithHighlight@DESC_COMMANDS:
|
LabelWithHighlight@DESC_COMMANDS:
|
||||||
Y: 17
|
Y: 17
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-commands
|
Text: label-mouse-control-desc-modern-commands
|
||||||
LabelWithHighlight@DESC_BUILDINGS:
|
LabelWithHighlight@DESC_BUILDINGS:
|
||||||
Y: 34
|
Y: 34
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-buildings
|
Text: label-mouse-control-desc-modern-buildings
|
||||||
LabelWithHighlight@DESC_SUPPORT:
|
LabelWithHighlight@DESC_SUPPORT:
|
||||||
Y: 51
|
Y: 51
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-support
|
Text: label-mouse-control-desc-modern-support
|
||||||
LabelWithHighlight@DESC_ZOOM:
|
LabelWithHighlight@DESC_ZOOM:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom
|
Text: label-mouse-control-desc-modern-zoom
|
||||||
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
LabelWithHighlight@DESC_ZOOM_MODIFIER:
|
||||||
Y: 68
|
Y: 68
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-zoom-modifier
|
Text: label-mouse-control-desc-modern-zoom-modifier
|
||||||
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
LabelWithHighlight@DESC_SCROLL_RIGHT:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-right
|
Text: label-mouse-control-desc-modern-scroll-right
|
||||||
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
LabelWithHighlight@DESC_SCROLL_MIDDLE:
|
||||||
Y: 85
|
Y: 85
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-scroll-middle
|
Text: label-mouse-control-desc-modern-scroll-middle
|
||||||
Label@DESC_EDGESCROLL:
|
Label@DESC_EDGESCROLL:
|
||||||
X: 9
|
X: 9
|
||||||
Y: 102
|
Y: 102
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Font: Small
|
Font: Small
|
||||||
Text: label-mouse-control-desc-modern-edgescroll
|
Text: label-mouse-control-desc-modern-edgescroll
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
Container@EDGESCROLL_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@EDGESCROLL_CHECKBOX:
|
Checkbox@EDGESCROLL_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-edgescroll-container
|
Text: checkbox-edgescroll-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@ALTERNATE_SCROLL_CHECKBOX_CONTAINER:
|
Container@ALTERNATE_SCROLL_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@ALTERNATE_SCROLL_CHECKBOX:
|
Checkbox@ALTERNATE_SCROLL_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-alternate-scroll-container
|
Text: checkbox-alternate-scroll-container
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 20
|
Height: 20
|
||||||
Children:
|
Children:
|
||||||
Container@LOCKMOUSE_CHECKBOX_CONTAINER:
|
Container@LOCKMOUSE_CHECKBOX_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Checkbox@LOCKMOUSE_CHECKBOX:
|
Checkbox@LOCKMOUSE_CHECKBOX:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: checkbox-lockmouse-container
|
Text: checkbox-lockmouse-container
|
||||||
Container@SPACER:
|
Container@SPACER:
|
||||||
Height: 30
|
Height: 30
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@MOUSE_SCROLL_TYPE_CONTAINER:
|
Container@MOUSE_SCROLL_TYPE_CONTAINER:
|
||||||
X: 10
|
X: 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@MOUSE_SCROLL_TYPE_LABEL:
|
Label@MOUSE_SCROLL_TYPE_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Text: label-mouse-scroll-type-container
|
Text: label-mouse-scroll-type-container
|
||||||
DropDownButton@MOUSE_SCROLL_TYPE_DROPDOWN:
|
DropDownButton@MOUSE_SCROLL_TYPE_DROPDOWN:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Font: Regular
|
Font: Regular
|
||||||
Container@SCROLLSPEED_SLIDER_CONTAINER:
|
Container@SCROLLSPEED_SLIDER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@SCROLL_SPEED_LABEL:
|
Label@SCROLL_SPEED_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-scrollspeed-slider-container-scroll-speed
|
Text: label-scrollspeed-slider-container-scroll-speed
|
||||||
Slider@SCROLLSPEED_SLIDER:
|
Slider@SCROLLSPEED_SLIDER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
MinimumValue: 10
|
MinimumValue: 10
|
||||||
MaximumValue: 50
|
MaximumValue: 50
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@ZOOMSPEED_SLIDER_CONTAINER:
|
Container@ZOOMSPEED_SLIDER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@ZOOM_SPEED_LABEL:
|
Label@ZOOM_SPEED_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-zoomspeed-slider-container-zoom-speed
|
Text: label-zoomspeed-slider-container-zoom-speed
|
||||||
ExponentialSlider@ZOOMSPEED_SLIDER:
|
ExponentialSlider@ZOOMSPEED_SLIDER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
MinimumValue: 0.01
|
MinimumValue: 0.01
|
||||||
MaximumValue: 0.4
|
MaximumValue: 0.4
|
||||||
Container@ROW:
|
Container@ROW:
|
||||||
Width: PARENT_RIGHT - 24
|
Width: PARENT_WIDTH - 24
|
||||||
Height: 50
|
Height: 50
|
||||||
Children:
|
Children:
|
||||||
Container@UI_SCROLLSPEED_SLIDER_CONTAINER:
|
Container@UI_SCROLLSPEED_SLIDER_CONTAINER:
|
||||||
X: PARENT_RIGHT / 2 + 10
|
X: PARENT_WIDTH / 2 + 10
|
||||||
Width: PARENT_RIGHT / 2 - 20
|
Width: PARENT_WIDTH / 2 - 20
|
||||||
Children:
|
Children:
|
||||||
Label@UI_SCROLL_SPEED_LABEL:
|
Label@UI_SCROLL_SPEED_LABEL:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Text: label-ui-scrollspeed-slider-container-scroll-speed
|
Text: label-ui-scrollspeed-slider-container-scroll-speed
|
||||||
Slider@UI_SCROLLSPEED_SLIDER:
|
Slider@UI_SCROLLSPEED_SLIDER:
|
||||||
Y: 25
|
Y: 25
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 20
|
Height: 20
|
||||||
Ticks: 7
|
Ticks: 7
|
||||||
MinimumValue: 1
|
MinimumValue: 1
|
||||||
|
|||||||
@@ -7,29 +7,29 @@ Background@SETTINGS_PANEL:
|
|||||||
INPUT_PANEL: Input
|
INPUT_PANEL: Input
|
||||||
HOTKEYS_PANEL: Hotkeys
|
HOTKEYS_PANEL: Hotkeys
|
||||||
ADVANCED_PANEL: Advanced
|
ADVANCED_PANEL: Advanced
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
X: (WINDOW_WIDTH - WIDTH) / 2
|
||||||
Y: (WINDOW_BOTTOM - HEIGHT) / 2
|
Y: (WINDOW_HEIGHT - HEIGHT) / 2
|
||||||
Width: 900
|
Width: 900
|
||||||
Height: 600
|
Height: 600
|
||||||
Children:
|
Children:
|
||||||
Label@SETTINGS_LABEL_TITLE:
|
Label@SETTINGS_LABEL_TITLE:
|
||||||
Y: 20
|
Y: 20
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-settings-title
|
Text: button-settings-title
|
||||||
Align: Center
|
Align: Center
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@RESET_BUTTON:
|
Button@RESET_BUTTON:
|
||||||
X: 20 + 10 + WIDTH
|
X: 20 + 10 + WIDTH
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-settings-panel-reset
|
Text: button-settings-panel-reset
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@BACK_BUTTON:
|
||||||
Key: escape
|
Key: escape
|
||||||
X: PARENT_RIGHT - 180
|
X: PARENT_WIDTH - 180
|
||||||
Y: PARENT_BOTTOM - 45
|
Y: PARENT_HEIGHT - 45
|
||||||
Width: 160
|
Width: 160
|
||||||
Height: 25
|
Height: 25
|
||||||
Text: button-back
|
Text: button-back
|
||||||
@@ -37,7 +37,7 @@ Background@SETTINGS_PANEL:
|
|||||||
Container@SETTINGS_TAB_CONTAINER:
|
Container@SETTINGS_TAB_CONTAINER:
|
||||||
X: 20
|
X: 20
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 25
|
Height: 25
|
||||||
Children:
|
Children:
|
||||||
Button@BUTTON_TEMPLATE:
|
Button@BUTTON_TEMPLATE:
|
||||||
@@ -45,12 +45,12 @@ Background@SETTINGS_PANEL:
|
|||||||
Height: 25
|
Height: 25
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Container@PANEL_CONTAINER:
|
Container@PANEL_CONTAINER:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: PARENT_BOTTOM
|
Height: PARENT_HEIGHT
|
||||||
Children:
|
Children:
|
||||||
Container@PANEL_TEMPLATE:
|
Container@PANEL_TEMPLATE:
|
||||||
X: 190
|
X: 190
|
||||||
Y: 50
|
Y: 50
|
||||||
Width: PARENT_RIGHT - 190 - 20
|
Width: PARENT_WIDTH - 190 - 20
|
||||||
Height: PARENT_BOTTOM - 105
|
Height: PARENT_HEIGHT - 105
|
||||||
TooltipContainer@SETTINGS_TOOLTIP_CONTAINER:
|
TooltipContainer@SETTINGS_TOOLTIP_CONTAINER:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Container@CHAT_LINE_TEMPLATE:
|
Container@CHAT_LINE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Children:
|
Children:
|
||||||
Label@TIME:
|
Label@TIME:
|
||||||
@@ -18,7 +18,7 @@ Container@CHAT_LINE_TEMPLATE:
|
|||||||
Shadow: True
|
Shadow: True
|
||||||
|
|
||||||
Container@SYSTEM_LINE_TEMPLATE:
|
Container@SYSTEM_LINE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Children:
|
Children:
|
||||||
Label@TIME:
|
Label@TIME:
|
||||||
@@ -39,7 +39,7 @@ Container@SYSTEM_LINE_TEMPLATE:
|
|||||||
TextColor: FFFF00
|
TextColor: FFFF00
|
||||||
|
|
||||||
Container@TRANSIENT_LINE_TEMPLATE:
|
Container@TRANSIENT_LINE_TEMPLATE:
|
||||||
Width: PARENT_RIGHT
|
Width: PARENT_WIDTH
|
||||||
Height: 16
|
Height: 16
|
||||||
Children:
|
Children:
|
||||||
Label@TIME:
|
Label@TIME:
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user