2024-01-06 21:32:29 -05:00
<!-- include accessories/CleanUpHelper.xml -->
2023-03-12 13:01:55 -04:00
<!-- Default formatting -->
<Defaults >
2024-07-27 21:47:52 -04:00
<Text color= "black"
alignment="MiddleLeft"/>
<Text class= "h1"
fontSize="160"
font="font_teutonic-arkham"/>
<Text class= "h2"
fontSize="120"
font="font_teutonic-arkham"/>
<Text class= "p"
fontSize="60"
alignment="UpperLeft"/>
2023-03-12 13:01:55 -04:00
<Panel rotation= "0 0 180" />
2024-07-27 21:47:52 -04:00
<Panel class= "window"
width="1500"
height="1500"
color="white"
outline="white"
outlineSize="10 10"/>
2023-03-12 13:01:55 -04:00
<Row dontUseTableRowBackground= "true" />
2024-07-27 21:47:52 -04:00
<Row class= "header"
color="#707070"/>
<Row class= "option"
preferredHeight="200"
color="#9e9e9e"/>
2023-03-12 13:01:55 -04:00
<!-- row heights: 70 x lines + 50 -->
2024-07-27 21:47:52 -04:00
<Row class= "description"
color="#cfcfcf"/>
2023-03-12 13:01:55 -04:00
2024-07-27 21:47:52 -04:00
<Button class= "optionToggle"
rectAlignment="MiddleRight"
offsetXY="-30 0"
colors="#FFFFFF|#dfdfdf"
height="160"
width="288"
ignoreLayout="True"
fontSize="60"/>
2023-03-12 13:01:55 -04:00
</Defaults>
<!-- Option window -->
2024-07-27 21:47:52 -04:00
<Panel id= "options"
class="window"
offsetXY="-580 200"
scale="0.5 0.5"
active="false"
showAnimation="FadeIn"
hideAnimation="FadeOut">
2023-03-12 13:01:55 -04:00
<TableLayout cellPadding= "25 25 15 15" >
<!-- 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>
2024-07-27 21:47:52 -04:00
<Button class= "optionToggle"
id="importTrauma"
onClick="optionButtonClick(importTrauma)"
image="option_on"/>
2023-03-12 13:01:55 -04:00
</Cell>
</Row>
2024-07-27 21:47:52 -04:00
<Row class= "description"
preferredHeight="330">
2023-03-12 13:01:55 -04:00
<Cell >
<Text class= "p" > Enables importing trauma values from the campaign log (custom content might give wrong values!).
 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>
2024-07-27 21:47:52 -04:00
<Button class= "optionToggle"
id="tidyPlayermats"
onClick="optionButtonClick(tidyPlayermats)"
image="option_on"/>
2023-03-12 13:01:55 -04:00
</Cell>
</Row>
2024-07-27 21:47:52 -04:00
<Row class= "description"
preferredHeight="190">
2023-03-12 13:01:55 -04:00
<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>
2024-07-27 21:47:52 -04:00
<Button class= "optionToggle"
id="removeDrawnLines"
onClick="optionButtonClick(removeDrawnLines)"
image="option_off"/>
2023-03-12 13:01:55 -04:00
</Cell>
</Row>
2024-07-27 21:47:52 -04:00
<Row class= "description"
preferredHeight="120">
2023-03-12 13:01:55 -04:00
<Cell >
<Text class= "p" > Controls whether all drawn lines should be removed.</Text>
</Cell>
</Row>
</TableLayout>
2024-01-06 21:32:29 -05:00
</Panel>
<!-- include accessories/CleanUpHelper.xml -->