49 lines
1.8 KiB
XML
49 lines
1.8 KiB
XML
<layout>
|
|
<include src="t_tab_title.xml" />
|
|
<include src="../t_group_box.xml" />
|
|
<include src="../t_dropdown_button.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" tooltip="${translation}_HELP" padding="4" gap="8" >
|
|
<sprite src_builtin="${icon}" height="24" width="24" />
|
|
<label align="left" translation="${translation}" weight="bold" min_width="200" />
|
|
</Button>
|
|
</template>
|
|
|
|
<template name="AutoStartApp">
|
|
<Button id="${id}" color="#AA3333" height="32" tooltip="${translation}_HELP" padding="4" gap="8" >
|
|
<sprite src_builtin="${icon}" height="24" width="24" />
|
|
<label align="left" translation="${translation}" weight="bold" min_width="200" />
|
|
</Button>
|
|
</template>
|
|
|
|
<elements>
|
|
<TabTitle translation="SETTINGS" icon="dashboard/settings.svg" />
|
|
<div flex_wrap="wrap" justify_content="stretch" gap="4" id="settings_root" />
|
|
</elements>
|
|
</layout>
|