118 lines
3.1 KiB
XML
118 lines
3.1 KiB
XML
<!-- Default formatting -->
|
|
<Defaults>
|
|
<!-- general Stuff -->
|
|
<Text color="white"
|
|
fontSize="18"/>
|
|
<Button tooltipPosition="Left"
|
|
color="clear"/>
|
|
|
|
<!-- Window -->
|
|
<HorizontalLayout class="headerLayout"
|
|
height="75"
|
|
padding="5"/>
|
|
<Button class="headerButton"
|
|
minWidth="50"
|
|
preferredWidth="50"
|
|
flexibleWidth="0"
|
|
color="clear"/>
|
|
<Text class="headerText"
|
|
minWidth="200"
|
|
flexibleWidth="100"
|
|
fontSize="32"
|
|
font="font_teutonic-arkham"/>
|
|
</Defaults>
|
|
|
|
<!-- Buttons at the bottom right (height: n * 35 + (n-1) * 2) -->
|
|
<VerticalLayout visibility="Admin"
|
|
color="#000000"
|
|
outlineSize="1 1"
|
|
outline="#303030"
|
|
rectAlignment="LowerRight"
|
|
width="35"
|
|
height="146"
|
|
offsetXY="-1 120"
|
|
spacing="2">
|
|
<Button icon="cthulhu"
|
|
tooltip="Campaigns"
|
|
onClick="onClick_toggleUi(Campaigns)"/>
|
|
<Button icon="dark-cult"
|
|
tooltip="Standalone Scenarios"
|
|
onClick="onClick_toggleUi(Standalone Scenarios)"/>
|
|
<Button icon="devourer"
|
|
tooltip="Community Content"
|
|
onClick="onClick_toggleUi(Community Content)"/>
|
|
<Button icon="option-gear"
|
|
tooltip="Options"
|
|
onClick="onClick_toggleUi(Options)"/>
|
|
</VerticalLayout>
|
|
|
|
<!-- Navigation Overlay button (not visibly to Grey and Black) -->
|
|
<Panel visibility="White|Brown|Red|Orange|Yellow|Green|Teal|Blue|Purple|Pink"
|
|
color="#000000"
|
|
outlineSize="1 1"
|
|
outline="#303030"
|
|
rectAlignment="LowerRight"
|
|
width="35"
|
|
height="35"
|
|
offsetXY="-1 65">
|
|
<Button icon="NavigationOverlayIcon"
|
|
tooltip="Navigation Overlay"
|
|
onClick="onClick_toggleUi(Navigation Overlay)"/>
|
|
</Panel>
|
|
|
|
<!-- Basic UI that will be replaced based on title -->
|
|
<VerticalLayout id="load_ui"
|
|
visibility="Admin"
|
|
color="black"
|
|
active="false"
|
|
width="700"
|
|
height="780"
|
|
outlineSize="1 1"
|
|
outline="#303030">
|
|
<HorizontalLayout class="headerLayout">
|
|
<Button class="headerButton"
|
|
icon="refresh"
|
|
tooltip="Refresh List"
|
|
tooltipPosition="Right"
|
|
onClick="onClick_refreshList"/>
|
|
<Text id="title"
|
|
class="headerText">Loadable Items</Text>
|
|
<Button class="headerButton"
|
|
icon="close"
|
|
tooltip="Close"
|
|
onClick="onClick_toggleUi(Hidden)"/>
|
|
</HorizontalLayout>
|
|
<VerticalScrollView color="transparent"
|
|
minHeight="100"
|
|
flexibleHeight="100">
|
|
<Panel id="ui_update_height"
|
|
height="24">
|
|
<VerticalLayout id="ui_update_point"
|
|
padding="10">
|
|
<Text>Please refresh to see available items.</Text>
|
|
</VerticalLayout>
|
|
</Panel>
|
|
</VerticalScrollView>
|
|
<Panel color="rgb(0,0,0)"
|
|
minHeight="50"
|
|
preferredHeight="50"
|
|
flexibleHeight="0">
|
|
<Button id="load_button"
|
|
active="false"
|
|
onClick="onClick_load">Load:</Button>
|
|
<HorizontalLayout id="progress_display">
|
|
<ProgressBar id="download_progress"
|
|
percentage="0"
|
|
color="#000000"
|
|
fillImageColor="#333333"/>
|
|
<Button onClick="onClick_cancel"
|
|
active="false">Cancel</Button>
|
|
</HorizontalLayout>
|
|
</Panel>
|
|
</VerticalLayout>
|
|
|
|
<Include src="TitleSplash.xml"/>
|
|
<Include src="NavigationOverlay.xml"/>
|
|
<Include src="OptionPanel.xml"/>
|
|
<Include src="UpdateNotification.xml"/>
|