2022-12-15 21:14:38 -05:00
<!-- Default formatting -->
<Defaults >
2024-07-01 06:08:58 -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"/>
2022-12-15 21:14:38 -05:00
<Panel rotation= "0 0 180" />
2024-07-01 06:08:58 -04:00
<Panel class= "window"
width="1500"
height="1500"
color="white"
outline="white"
outlineSize="10 10"/>
2022-12-15 21:14:38 -05:00
<Row dontUseTableRowBackground= "true" />
2024-07-01 06:08:58 -04:00
<Row class= "header"
color="#707070"/>
<Row class= "option"
preferredHeight="200"
color="#9e9e9e"/>
2022-12-15 21:14:38 -05:00
2022-12-19 10:39:16 -05:00
<!-- row heights: 70 x lines + 50 -->
2024-07-01 06:08:58 -04:00
<Row class= "description"
color="#cfcfcf"/>
2022-12-15 21:14:38 -05:00
2024-07-01 06:08:58 -04:00
<Button class= "optionToggle"
rectAlignment="MiddleRight"
offsetXY="-30 0"
colors="#FFFFFF|#dfdfdf"
height="160"
width="288"
ignoreLayout="True"
fontSize="60"/>
2022-12-15 21:14:38 -05:00
</Defaults>
<!-- Option window -->
2024-07-01 06:08:58 -04:00
<Panel id= "options"
class="window"
offsetXY="-580 200"
scale="0.5 0.5"
active="false"
showAnimation="FadeIn"
hideAnimation="FadeOut">
2022-12-19 10:39:16 -05:00
<TableLayout cellPadding= "25 25 15 15" >
2022-12-15 21:14:38 -05:00
<!-- 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-01 06:08:58 -04:00
<Button class= "optionToggle"
id="importTrauma"
onClick="optionButtonClick(importTrauma)"
image="option_on"/>
2022-12-15 21:14:38 -05:00
</Cell>
</Row>
2024-07-01 06:08:58 -04:00
<Row class= "description"
preferredHeight="330">
2022-12-15 21:14:38 -05:00
<Cell >
2022-12-19 10:39:16 -05:00
<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>
2022-12-15 21:14:38 -05:00
</Cell>
</Row>
<!-- Option -->
<Row class= "option" >
<Cell >
<Text class= "h2" > Tidy playermats</Text>
2024-07-01 06:08:58 -04:00
<Button class= "optionToggle"
id="tidyPlayermats"
onClick="optionButtonClick(tidyPlayermats)"
image="option_on"/>
2022-12-15 21:14:38 -05:00
</Cell>
</Row>
2024-07-01 06:08:58 -04:00
<Row class= "description"
preferredHeight="190">
2022-12-15 21:14:38 -05: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-01 06:08:58 -04:00
<Button class= "optionToggle"
id="removeDrawnLines"
onClick="optionButtonClick(removeDrawnLines)"
image="option_off"/>
2022-12-15 21:14:38 -05:00
</Cell>
</Row>
2024-07-01 06:08:58 -04:00
<Row class= "description"
preferredHeight="120">
2022-12-15 21:14:38 -05:00
<Cell >
<Text class= "p" > Controls whether all drawn lines should be removed.</Text>
</Cell>
</Row>
</TableLayout>
2022-12-21 08:29:28 -05:00
</Panel>