70 lines
2.5 KiB
XML
70 lines
2.5 KiB
XML
<!-- Default formatting -->
|
|
<Defaults>
|
|
<Text color="black" alignment="MiddleLeft"/>
|
|
<Text class="h1" fontSize="115" font="font_teutonic-arkham"/>
|
|
<Text class="h2" fontSize="80" font="font_teutonic-arkham"/>
|
|
<Text class="p" fontSize="40" alignment="UpperLeft"/>
|
|
|
|
<Panel rotation="0 0 180"/>
|
|
<Panel class="window" width="1000" height="1000" color="black" outline="white" outlineSize="8 8"/>
|
|
|
|
<Row dontUseTableRowBackground="true"/>
|
|
<Row class="header" color="#707070"/>
|
|
<Row class="option" preferredHeight="130" color="#9e9e9e"/>
|
|
|
|
<!-- heights: 45 x lines + 40 -->
|
|
<Row class="description" color="#cfcfcf"/>
|
|
|
|
<Button class="optionToggle" rectAlignment="MiddleRight" offsetXY="-20 0" colors="#FFFFFF|#dfdfdf" height="108" width="225" ignoreLayout="True" fontSize="60"/>
|
|
</Defaults>
|
|
|
|
<!-- Option window -->
|
|
<Panel id="options" class="window" offsetXY="-460 0" scale="0.5 0.5" active="false" showAnimation="FadeIn" hideAnimation="FadeOut">
|
|
<TableLayout cellPadding="15 15 5 5">
|
|
<!-- Header -->
|
|
<Row class="header">
|
|
<Cell>
|
|
<Text class="h1">Clean up Helper - Options</Text>
|
|
</Cell>
|
|
</Row>
|
|
|
|
<!-- Option -->
|
|
<Row class="option">
|
|
<Cell>
|
|
<Text class="h2">Import trauma</Text>
|
|
<Button id="importTrauma" onClick="optionButtonClick(importTrauma)" class="optionToggle" image="option_on"/>
|
|
</Cell>
|
|
</Row>
|
|
<Row class="description" preferredHeight="220">
|
|
<Cell>
|
|
<Text class="p">Controls whether trauma values should be imported from the campaign log (if possible).
Enter players in the campaign log in this order:
White, Orange, Green, Red.</Text>
|
|
</Cell>
|
|
</Row>
|
|
|
|
<!-- Option -->
|
|
<Row class="option">
|
|
<Cell>
|
|
<Text class="h2">Tidy playermats</Text>
|
|
<Button id="tidyPlayermats" onClick="optionButtonClick(tidyPlayermats)" class="optionToggle" image="option_on"/>
|
|
</Cell>
|
|
</Row>
|
|
<Row class="description" preferredHeight="130">
|
|
<Cell>
|
|
<Text class="p">Controls whether the playermats should get tidied (removal of all cards and tokens).</Text>
|
|
</Cell>
|
|
</Row>
|
|
|
|
<!-- Option -->
|
|
<Row class="option">
|
|
<Cell>
|
|
<Text class="h2">Remove drawn lines</Text>
|
|
<Button id="removeDrawnLines" onClick="optionButtonClick(removeDrawnLines)" class="optionToggle" image="option_off"/>
|
|
</Cell>
|
|
</Row>
|
|
<Row class="description" preferredHeight="85">
|
|
<Cell>
|
|
<Text class="p">Controls whether all drawn lines should be removed.</Text>
|
|
</Cell>
|
|
</Row>
|
|
</TableLayout>
|
|
</Panel> |