aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/assets/firmament/gui/config/macros/editor_wheel.xml
blob: e4dc2b4d55bce9cf61abd22ec13a06dcb0aa42d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8" ?>
<Root xmlns="http://notenoughupdates.org/moulconfig" xmlns:firm="http://firmament.nea.moe/moulconfig"
>
	<Center>
		<Panel background="VANILLA" insets="10">
			<Column>
				<Row>
					<firm:Button onClick="@back">
						<Text text="←"/>
					</firm:Button>
					<Text text="Editing wheel macro"/>
				</Row>
				<Row>
					<Text text="Key (Hold):"/>
					<Align horizontal="RIGHT">
						<firm:Fixed width="160">
							<Indirect value="@button"/>
						</firm:Fixed>
					</Align>
				</Row>
				<Row>
					<Text text="Menu Options:"/>
					<Align horizontal="RIGHT">
						<firm:Button onClick="@addOption">
							<Text text="+"/>
						</firm:Button>
					</Align>
				</Row>
				<Array data="@editableCommands">
					<Row>
						<Text text="/"/>
						<TextField value="@text" width="160"/>
						<Align horizontal="RIGHT">
							<firm:Button onClick="@delete">
								<Text text="Delete"/>
							</firm:Button>
						</Align>
					</Row>
				</Array>
			</Column>
		</Panel>
	</Center>
</Root>