SCED/xml/ReleaseNotes.xml
2023-04-16 23:10:23 +02:00

66 lines
1.6 KiB
XML

<Defaults>
<!-- table entries -->
<Text class="releaseNote"
fontSize="16"/>
<Row class="releaseNote"
preferredHeight="50"/>
<Cell class="releaseNote"
color="#333333"/>
</Defaults>
<TableLayout id="releaseNotes"
active="false"
color="#000000"
outlineSize="2 2"
outline="grey"
showAnimation="Grow"
hideAnimation="Shrink"
animationDuration="0.2"
rectAlignment="MiddleCenter"
height="300"
width="450">
<!-- Header -->
<Row preferredHeight="50">
<Cell>
<Panel padding="10 0 0 0">
<Text id="versionHeader"
font="font_teutonic-arkham"
fontSize="30"
alignment="MiddleCenter">Release Notes for </Text>
</Panel>
</Cell>
</Row>
<!-- Scrollable part with release notes -->
<Row preferredHeight="200">
<Cell>
<VerticalScrollView horizontalScrollbarVisibility="AutohideAndExpandViewport">
<!-- this part will be updated via script -->
<TableLayout id="releaseNoteWrapper"
autoCalculateHeight="1"
cellPadding="10 15 5 5">
<Row class="releaseNote">
<Cell class="releaseNote">
<Text class="releaseNote">Placeholder</Text>
</Cell>
</Row>
</TableLayout>
</VerticalScrollView>
</Cell>
</Row>
<!-- Buttons: "Close" -->
<Row preferredHeight="50">
<Cell>
<HorizontalLayout minHeight="55"
flexibleHeight="0"
padding="10 10 5 10"
spacing="100">
<Button class="bottomButtons"
onClick="onClick_releaseNotes">Close</Button>
</HorizontalLayout>
</Cell>
</Row>
</TableLayout>