121 lines
3.1 KiB
XML
121 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 in the bottom right of the screen -->
|
|
<VerticalLayout visibility="Admin"
|
|
color="#000000"
|
|
outlineSize="1 1"
|
|
outline="#303030"
|
|
rectAlignment="LowerRight"
|
|
width="35"
|
|
height="215"
|
|
offsetXY="-1 60"
|
|
spacing="1">
|
|
<Button icon="cthulhu"
|
|
tooltip="Campaigns"
|
|
onClick="onClick_toggleUi(Campaigns)"/>
|
|
<Button icon="dark-cult"
|
|
tooltip="Standalone Scenarios"
|
|
onClick="onClick_toggleUi(Standalone Scenarios)"/>
|
|
<Button icon="yog-sothoth"
|
|
tooltip="Extras"
|
|
onClick="onClick_toggleUi(Extras)"/>
|
|
<Button icon="elder-sign"
|
|
tooltip="Investigators"
|
|
onClick="onClick_toggleUi(Investigators)"/>
|
|
<Button icon="devourer"
|
|
tooltip="Community Content"
|
|
onClick="onClick_toggleUi(Community Content)"/>
|
|
<Button icon="option-gear"
|
|
tooltip="Options"
|
|
onClick="onClick_toggleUi(Options)"/>
|
|
<!--<Button icon="download" tooltip="ArkhamDB Deck Importer" onClick="onClick_toggleUi(Deck Importer)"/> -->
|
|
</VerticalLayout>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- Title Splash when starting a scenario -->
|
|
<Text id="title_splash"
|
|
fontSize="150"
|
|
font="font_teutonic-arkham"
|
|
outline="black"
|
|
outlineSize="3 -3"
|
|
showAnimation="FadeIn"
|
|
hideAnimation="FadeOut"
|
|
active="false"
|
|
animationDuration="2"
|
|
horizontalOverflow="Wrap">
|
|
</Text>
|
|
|
|
<Include src="OptionPanel.xml"/>
|