SCED/xml/UpdateNotification.xml

45 lines
1.2 KiB
XML
Raw Normal View History

<!-- Default formatting inherented from OptionPanel! -->
2023-04-14 11:34:02 -04:00
<TableLayout id="updateNotification"
active="false"
color="#000000"
outlineSize="2 2"
outline="grey"
showAnimation="SlideIn_Top"
hideAnimation="SlideOut_Top"
animationDuration="0.2"
rectAlignment="UpperLeft"
offsetXY="60 -5"
height="100"
width="500">
2023-04-14 11:34:02 -04:00
<!-- Header -->
2023-04-14 11:52:08 -04:00
<Row preferredHeight="50">
2023-04-14 11:34:02 -04:00
<Cell>
<Panel padding="10 0 0 0">
<Text id="notificationHeader"
2023-04-14 11:34:02 -04:00
font="font_teutonic-arkham"
fontSize="30"
alignment="MiddleCenter">New version available: </Text>
2023-04-14 11:34:02 -04:00
</Panel>
</Cell>
</Row>
<!-- Buttons: "Don't show again", "Details" and "Close" -->
2023-04-14 11:34:02 -04:00
<Row preferredHeight="50">
<Cell>
<HorizontalLayout minHeight="55"
flexibleHeight="0"
padding="10 10 5 10"
spacing="10">
2023-04-14 11:34:02 -04:00
<Button class="bottomButtons"
onClick="onClick_notification(dontNotify)">Don't show again</Button>
<Button class="bottomButtons"
onClick="onClick_notification(details)">Show details</Button>
2023-04-14 11:34:02 -04:00
<Button class="bottomButtons"
onClick="onClick_notification(close)">Close</Button>
</HorizontalLayout>
</Cell>
</Row>
</TableLayout>