mirror of https://github.com/wayvr-org/wayvr.git
36 lines
1.5 KiB
XML
36 lines
1.5 KiB
XML
<layout>
|
|
<include src="../t_group_box.xml" />
|
|
|
|
<!-- used at runtime [!!!] -->
|
|
<include src="../t_dropdown_button.xml" />
|
|
|
|
<!-- id, min, max, step, value, value2, tooltip -->
|
|
<template name="ThresholdSlider">
|
|
<Slider id="${id}" width="200" height="24" min_value="${min}" max_value="${max}" step="${step}" value="${value}" value2="${value2}" tooltip="${tooltip}" />
|
|
</template>
|
|
|
|
<!-- id, translation -->
|
|
<template name="ActionRow">
|
|
<rectangle macro="group_box" id="${id}">
|
|
<!-- top row -->
|
|
<div flex_direction="row" gap="8" align_items="center">
|
|
<sprite src_builtin="dashboard/controller.svg" width="24" height="24"/>
|
|
<label translation="${translation}" color="~color_accent" weight="bold" size="14" />
|
|
</div>
|
|
<!-- filled-in at runtime -->
|
|
</rectangle>
|
|
</template>
|
|
|
|
<elements>
|
|
<div flex_direction="column" gap="8" width="100%">
|
|
<div flex_direction="column" gap="8" align_items="center" overflow_y="scroll" width="100%" padding="16">
|
|
<div id="list_parent" flex_direction="column" gap="6" width="100%"></div>
|
|
</div>
|
|
<rectangle color="#000000cc" flex_direction="row" gap="8" justify_content="end" padding="8">
|
|
<Button id="btn_cancel" sprite_src_builtin="dashboard/cancel.svg" min_width="100" height="32" translation="APP_SETTINGS.CANCEL" />
|
|
<Button id="btn_save" sprite_src_builtin="dashboard/check.svg" min_width="100" height="32" translation="APP_SETTINGS.SAVE" />
|
|
</rectangle>
|
|
</div>
|
|
</elements>
|
|
</layout>
|