38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<layout>
|
|
<include src="t_tab_title.xml" />
|
|
<include src="../t_group_box.xml" />
|
|
|
|
<template name="SettingsGroupBox">
|
|
<rectangle macro="group_box" id="${id}" flex_grow="1">
|
|
<GroupBoxTitle translation="${translation}" src_builtin="${icon}" />
|
|
</rectangle>
|
|
</template>
|
|
|
|
<template name="CheckBoxSetting">
|
|
<CheckBox id="${id}" text="${text}" translation="${translation}" checked="${checked}" tooltip="${tooltip}" />
|
|
</template>
|
|
|
|
<template name="SliderSetting">
|
|
<label text="${text}" translation="${translation}" />
|
|
<Slider id="${id}" width="250" height="24" min_value="${min}" max_value="${max}" step="${step}" value="${value}" tooltip="${tooltip}" />
|
|
</template>
|
|
|
|
<template name="SelectSetting">
|
|
<label text="${text}" translation="${translation}" tooltip="${tooltip}" />
|
|
<RadioGroup id="${id}" />
|
|
</template>
|
|
|
|
<template name="SelectOption">
|
|
<RadioBox text="${text}" translation="${translation}" value="${value}" tooltip="${tooltip}" />
|
|
</template>
|
|
|
|
<template name="DangerButton">
|
|
<Button id="${id}" color="#AA3333" height="32" width="100%" sprite_src_builtin="${icon}" translation="${translation}" tooltip="${translation}_HELP" />
|
|
</template>
|
|
|
|
<elements>
|
|
<TabTitle translation="SETTINGS" icon="dashboard/settings.svg" />
|
|
<div flex_wrap="wrap" justify_content="stretch" gap="4" id="settings_root" />
|
|
</elements>
|
|
</layout>
|