71 lines
1.5 KiB
XML
71 lines
1.5 KiB
XML
|
<Defaults>
|
||
|
<Text font="font_teutonic-arkham"
|
||
|
alignment="MiddleCenter"
|
||
|
rectAlignment="MiddleCenter"/>
|
||
|
<Panel class="showHide"
|
||
|
color="black"
|
||
|
height="30"
|
||
|
width="30"
|
||
|
rectAlignment="MiddleRight"
|
||
|
offsetXY="0 72"
|
||
|
outlineSize="2 2"
|
||
|
outline="#303030"/>
|
||
|
</Defaults>
|
||
|
|
||
|
<!-- hide button for the Bless / Curse Manager -->
|
||
|
<Panel class="showHide"
|
||
|
active="false"
|
||
|
id="hideBlurse">
|
||
|
<Button onClick="showHideBlurse"
|
||
|
color="White"
|
||
|
image="caret"/>
|
||
|
</Panel>
|
||
|
|
||
|
<!-- show button for the Bless / Curse Manager -->
|
||
|
<Panel class="showHide"
|
||
|
active="true"
|
||
|
id="showBlurse">
|
||
|
<Button onClick="showHideBlurse"
|
||
|
color="White"
|
||
|
image="arrow-down"/>
|
||
|
</Panel>
|
||
|
|
||
|
<!-- window to control bless / curse tokens in chaos bag -->
|
||
|
<!-- height = row heights + 2x outline + spacing -->
|
||
|
<TableLayout id="blessCurseManager"
|
||
|
color="black"
|
||
|
active="false"
|
||
|
height="110"
|
||
|
width="150"
|
||
|
rectAlignment="MiddleRight"
|
||
|
raycastTarget="true"
|
||
|
cellSpacing="5"
|
||
|
outlineSize="2 2"
|
||
|
outline="#303030">
|
||
|
<!-- token counts -->
|
||
|
<Row preferredHeight="31">
|
||
|
<Cell>
|
||
|
<Text id="countBless"
|
||
|
fontSize="25"
|
||
|
text="0 + 0"/>
|
||
|
</Cell>
|
||
|
<Cell>
|
||
|
<Text id="countCurse"
|
||
|
fontSize="25"
|
||
|
text="0 + 0"/>
|
||
|
</Cell>
|
||
|
</Row>
|
||
|
<!-- token buttons -->
|
||
|
<Row preferredHeight="70">
|
||
|
<Cell>
|
||
|
<Button image="token-bless"
|
||
|
id="imageBless"
|
||
|
onClick="5933fb/xmlClick"/>
|
||
|
</Cell>
|
||
|
<Cell>
|
||
|
<Button image="token-curse"
|
||
|
id="imageCurse"
|
||
|
onClick="5933fb/xmlClick"/>
|
||
|
</Cell>
|
||
|
</Row>
|
||
|
</TableLayout>
|